This markdown was produced by Betty Khaindi Okumu on 2019-05-19

Introduction

These assignment covers all the tidyverse based topics covered so far.

The data used in Q1-Q10 can be found here https://zindi.africa/competitions/mobile-money-and-financial-inclusion-in-tanzania-challenge/data

Download the training.csv dataset, and the Variable_Codebook.docx document.

1. Read in the dataset


training<-read.csv("training.csv",header = TRUE)

2. Skim through the assignment, and load the libraries that you will require.


##load the libraries
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(ggplot2)
library(tidyr)

3. Recode all the variables that need to be recoded, based on Variable_Codebook document


## write code here
### Hint: instead of gender reading 1, 2, the values should read Male, Female. Remember ifelse(condition, result if condition is True, result if condition is false)

### Q2: Gender
training<-training%>%
          mutate(if_else(Q2==1,"Male","Female"))
training
##        ID  Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8_1 Q8_2 Q8_3 Q8_4 Q8_5 Q8_6 Q8_7 Q8_8
## 1    5086  98  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 2    1258  40  1  1  3  5  1  1    1    0    0    0    0    0    0    0
## 3     331  18  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 4    6729  50  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 5    8671  34  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 6    5462  35  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 7    4886  31  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 8     621  23  2  4  5  5  2  1    0    0    1    0    0    0    0    0
## 9    8302  56  2  3  3  3  2  2    0    1    0    1    0    1    0    0
## 10   4704  37  2  1  3  3  2  1    0    1    0    0    0    0    0    1
## 11   2758  18  2  4  5  5  2  1    0    0    0    0    0    0    0    0
## 12   2536  29  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 13   8863  28  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 14   5469  17  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 15   3543  22  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 16   6554  53  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 17   7769  21  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 18   4226  24  2  4  3  1  1  1    0    1    0    0    0    0    0    0
## 19   6997  38  1  4  2  2  2  2    0    1    0    1    0    0    0    0
## 20    987  30  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 21   5576  27  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 22   2272  42  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 23   8277  44  1  1  1  3  2  2    0    1    0    1    0    0    0    0
## 24   3007  76  2  1  1  1  1  2    0    0    0    1    0    0    0    0
## 25    915  19  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 26   1335  29  2  1  3  5  2  2    0    0    1    0    0    0    0    0
## 27   1251  20  2  4  3  4  2  1    0    0    0    1    0    0    0    0
## 28   5036  26  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 29    599  44  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 30    794  32  2  4  2  5  2  1    0    1    0    0    0    0    0    0
## 31   3158  53  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 32   3959  46  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 33   1241  35  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 34   4986  47  1  2  3  1  1  1    0    1    0    0    0    0    0    0
## 35   4109  20  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 36   8121  86  1  1  1  3  1  2    0    1    0    0    0    0    0    0
## 37   3895  18  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 38   8054  19  1  2  2  3  2  1    0    0    0    1    0    0    0    0
## 39   8023  31  2  1  3  5  2  1    0    1    0    1    0    0    0    0
## 40   6933  30  1  1  2  5  2  2    0    1    0    0    0    0    0    0
## 41   7852  17  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 42   6063  30  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 43    755  37  2  1  6  5  2  1    0    1    0    1    0    0    0    0
## 44   6445  38  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 45   8548  35  1  4  3  4  2  2    0    1    0    0    0    0    0    0
## 46   1549  20  2  2  3  3  2  2    1    0    0    0    0    0    0    0
## 47   6617  29  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 48   8467  35  1  1  3  1  2  1    1    1    0    1    0    0    0    0
## 49   4116  46  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 50   8125  25  1  1  3  4  2  2    0    1    0    0    0    0    0    0
## 51   1044  31  2  1  1  2  2  2    0    1    0    0    0    1    0    0
## 52   2535  21  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 53   8950  39  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 54   6099  23  1  1  2  3  2  1    0    1    0    0    0    0    0    0
## 55   5607  21  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 56   8734  25  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 57   4734  72  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 58   7776  65  2  2  1  1  2  1    0    1    0    0    0    0    0    1
## 59   9367  54  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 60   3423  32  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 61   2878  24  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 62   2356  24  2  4  7  1  2  1    0    0    0    0    0    0    0    0
## 63    229  34  1  1  6  3  1  1    1    0    0    0    0    0    0    0
## 64   3406  46  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 65    771  31  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 66    580  26  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 67   6163  45  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 68   6212  31  1  1  6  1  2  1    0    0    1    0    0    0    0    0
## 69   8574  23  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 70   8278  31  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 71   3919  38  2  1  1  5  2  2    0    0    0    0    0    0    0    0
## 72   8883  45  1  1  6  1  2  1    1    1    0    1    0    0    0    0
## 73   5677  27  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 74   9209  32  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 75   7050  25  1  1  6  1  1  1    0    1    0    1    0    0    0    0
## 76   1531  26  1  2  7  5  1  1    0    0    1    1    0    0    0    0
## 77   7922  30  1  4  3  3  2  2    0    1    0    1    0    0    0    0
## 78   4397  18  1  4  1  3  2  1    0    1    0    1    0    0    0    0
## 79   3170  28  1  2  3  4  2  1    0    1    0    1    0    0    0    0
## 80   6376  35  2  1  5  1  2  2    0    0    0    0    0    0    0    0
## 81   5472  50  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 82   9138  30  2  2  3  3  2  1    0    1    0    1    0    0    0    0
## 83   6020  48  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 84   8658  23  2  1  3  4  1  2    0    0    0    1    0    0    0    0
## 85    919  27  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 86   6035  33  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 87   6925  33  1  4  2  5  2  1    0    0    0    0    0    0    0    0
## 88   5146  57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 89   1169  42  1  1  7  1  2  1    1    0    0    0    0    0    0    0
## 90   3449  30  1  1  3  5  2  2    0    1    0    0    0    0    0    0
## 91   5307  30  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 92   1354  29  2  1  4  1  1  1    0    0    1    1    0    0    0    0
## 93    393  25  2  4  3  5  2  1    0    1    0    0    0    0    0    0
## 94    558  48  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 95   1624  29  2  2  3  5  2  2    0    1    0    1    0    0    0    0
## 96    151  44  2  2  3  5  1  1    0    1    0    0    0    0    0    0
## 97   1515  40  1  1  1  3  2  2    0    0    0    1    0    0    0    0
## 98   9233  21  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 99   5230  47  1  1  2  1  2  2    0    1    0    0    0    0    0    1
## 100   862  39  1  2  3  3  2  1    0    1    0    1    0    0    0    0
## 101  3874  51  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 102  8078  26  2  3  3  4  2  1    0    1    0    1    0    0    0    0
## 103  3920  21  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 104  9188  48  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 105  4551  29  2  1  3  4  1  2    0    1    0    0    0    0    0    0
## 106  2620  69  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 107  3975  58  2  2  3  5  2  2    0    1    1    0    0    0    0    0
## 108  1209  36  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 109  3696  19  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 110  2134  51  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 111  9410  65  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 112  8259  53  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 113  4922  52  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 114  4934  60  2  3  1  4  2  1    0    1    0    0    0    0    0    0
## 115  5602  34  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 116   124  50  2  3  3  5  2  1    0    0    0    0    0    0    0    0
## 117  7990  20  2  4  6  3  2  2    0    1    0    0    0    0    0    0
## 118  7735  79  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 119  8847  19  1  4  5  4  2  2    1    0    0    0    0    0    0    0
## 120   804  17  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 121  8065  48  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 122  5901  30  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 123  2196  33  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 124   187  30  2  2  3  4  2  1    0    0    1    0    0    0    0    0
## 125  8676  17  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 126  3656  22  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 127  6728  20  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 128  7751  57  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 129  2448  30  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 130  1426  21  2  1  5  5  2  1    0    0    1    0    0    0    0    0
## 131   966  36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 132  5400  30  2  1  6  4  1  1    1    0    0    0    0    0    0    0
## 133  2666  74  2  3  3  1  2  2    0    0    0    0    0    0    0    0
## 134  2155  70  1  3  2  5  2  2    0    0    0    1    0    0    0    0
## 135  1972  21  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 136  2123  50  2  1  2  1  1  1    0    1    0    1    0    0    0    0
## 137  7064  42  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 138  7074  51  1  1  5  1  2  1    0    1    1    0    1    0    0    0
## 139  8424  25  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 140  4487  66  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 141  3829  32  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 142   190  43  1  1  3  1  1  1    1    0    0    0    0    0    1    0
## 143  1509  42  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 144  8971  25  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 145  1695  22  1  4  7  5  1  1    0    0    0    0    0    0    0    0
## 146  1468  30  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 147  6145  21  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 148  2476  44  2  1  7  2  1  1    0    1    0    0    0    0    0    0
## 149  7818  32  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 150  3421  45  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 151  9328  43  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 152  2149  27  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 153    45  21  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 154   800  34  1  1  2  4  1  2    0    0    0    1    0    0    0    0
## 155  2881  71  2  1  3  5  2  1    0    0    0    0    0    0    1    0
## 156  2324  53  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 157  9069  41  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 158  5106  18  2  4  2  4  2  1    0    0    0    0    0    0    0    0
## 159  2839  30  2  2  3  1  2  2    0    0    0    1    0    0    0    0
## 160  9007  43  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 161   528  18  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 162   364  27  1  1  6  4  1  1    0    1    0    1    0    0    0    0
## 163  1826  42  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 164  8094  28  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 165  2292  23  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 166  3953  36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 167  8297  26  1  4  5  4  2  1    1    0    0    0    0    0    0    0
## 168  3351  40  2  2  1  4  2  2    0    1    0    1    0    0    0    0
## 169  1906  16  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 170  1314  44  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 171  4784  49  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 172  2268  21  2  1  2  3  1  2    0    1    0    0    0    0    0    0
## 173  5930  26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 174  3458  40  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 175   638  23  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 176  4996  45  1  1  6  1  1  1    0    0    1    0    0    0    0    0
## 177  3626  17  1  4  2  5  2  1    0    0    0    0    0    0    0    0
## 178  1208  35  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 179  1853  47  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 180  1454  47  2  2  3  1  2  1    0    0    1    1    0    0    0    0
## 181   148  22  2  4  3  5  2  1    1    1    0    0    0    0    0    0
## 182  9155  56  1  1  3  2  2  1    0    1    0    0    0    0    0    0
## 183  5000  20  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 184  8828  30  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 185  7455  30  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 186  1541  82  1  1  1  3  2  2    0    1    0    1    0    0    0    0
## 187  4376  50  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 188  6255  45  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 189  7051  34  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 190  1653  39  1  1  6  2  1  1    0    1    0    0    0    0    0    0
## 191  5883  30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 192  5113  26  2  1  5  1  2  2    0    0    0    0    0    0    0    0
## 193  4405  24  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 194  3924  45  2  4  2  1  1  1    0    1    0    0    0    0    0    0
## 195  6642  19  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 196  8330  21  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 197  2550  47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 198  2937  28  1  1  2  4  1  1    0    1    0    0    0    0    0    0
## 199   141  25  1  1  3  5  2  1    1    1    0    0    0    0    0    0
## 200  3657  64  2  3  2  1  2  2    0    1    1    0    0    0    0    0
## 201  8445  57  1  1  2  3  1  1    0    1    0    0    0    0    0    0
## 202  2996  48  2  1  3  2  2  1    0    1    0    1    0    0    0    0
## 203  7040  66  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 204  4660  23  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 205  8846  55  1  3  3  1  2  1    0    1    0    0    0    0    0    0
## 206  3780  47  1  1  3  3  1  2    0    1    0    0    0    0    0    0
## 207  8155  25  2  1  1  2  2  2    0    0    0    1    0    0    0    0
## 208  3807  22  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 209  3383  37  1  4  2  5  2  2    0    0    0    1    0    0    0    0
## 210  7547  42  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 211   717  50  2  1  2  1  1  1    0    1    0    0    1    0    0    0
## 212   934  43  2  1  7  5  2  1    1    0    0    0    0    0    0    0
## 213  1458  45  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 214  2534  38  2  2  1  5  2  2    0    0    0    1    0    0    0    0
## 215  8102  18  1  4  2  3  2  1    0    1    0    1    0    0    0    0
## 216  2102  25  1  1  2  3  2  1    0    1    0    0    0    0    0    0
## 217  6050  25  2  2  2  5  2  1    0    0    0    0    0    0    0    0
## 218   110  34  1  1  1  4  1  1    0    0    0    1    0    0    0    0
## 219  6151  30  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 220  1629  25  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 221  4434  34  1  1  2  1  1  1    0    1    0    1    0    0    0    0
## 222  7915  36  2  1  2  1  2  2    0    1    1    0    0    0    0    1
## 223  5285  37  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 224   316  70  2  3  2  1  2  2    0    0    0    0    0    0    0    1
## 225  6061  51  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 226  1802  26  1  2  2  1  2  1    0    1    0    1    0    0    0    0
## 227  8761  78  2  2  1  1  2  1    0    1    0    0    0    0    0    0
## 228  9412  59  2  1  1  2  1  1    0    0    0    1    0    0    0    0
## 229  2082  28  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 230  1637  64  2  1  1  1  1  2    0    1    0    1    0    0    0    0
## 231   181  16  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 232  7742  30  1  3  6  3  2  1    0    0    0    1    0    0    0    0
## 233  4277  45  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 234  7527  65  1  2  3  1  1  2    0    1    0    0    0    0    0    1
## 235  1439  41  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 236  4197  30  2  1  3  5  1  1    0    1    1    0    0    0    0    0
## 237  1828  50  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 238  1581  27  1  1  3  3  2  2    0    0    0    1    0    0    0    0
## 239  1878  53  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 240  8408  22  2  1  5  3  2  1    0    0    1    0    0    0    0    0
## 241  4630  47  1  2  3  5  2  1    0    1    0    0    0    0    0    0
## 242  7977  19  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 243  8955  27  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 244  7287  26  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 245   677  33  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 246  7590  55  1  1  4  5  2  1    0    0    0    1    0    0    0    0
## 247  8656  27  2  1  5  4  1  1    0    0    1    0    0    0    0    0
## 248  7726  36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 249  4023  42  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 250  4684  45  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 251  6066  42  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 252  4688  33  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 253  4942  51  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 254  8257  80  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 255  5025  18  1  4  5  3  2  1    0    1    0    0    0    0    0    0
## 256  9181  50  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 257  6316  94  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 258  2109  24  1  2  3  5  2  1    0    1    0    0    0    0    0    0
## 259  3892  25  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 260  2890  51  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 261  4833  23  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 262  8256  16  2  4  4  3  2  2    0    0    0    0    0    0    0    0
## 263   219  22  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 264  8740  53  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 265  6333  30  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 266  1719  20  1  4  3  3  2  1    0    0    0    0    0    0    0    0
## 267  2116  25  1  2  3  1  2  1    0    1    0    1    0    0    0    0
## 268  2002  35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 269  3532  27  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 270  8170  35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 271  1757  26  2  1  1  5  2  1    0    1    0    0    0    0    0    0
## 272  3792  20  1  4  3  5  2  2    0    0    0    1    0    0    0    0
## 273  8243  29  2  4  7  5  1  1    1    0    0    0    0    0    0    0
## 274  4495  65  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 275  7746  17  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 276  1350  24  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 277  8532  48  1  1  3  1  2  1    0    0    0    0    0    0    0    0
## 278  3965  48  1  3  3  1  2  2    0    0    0    1    0    0    0    0
## 279   106  30  1  1  6  5  1  1    0    0    0    1    0    0    0    0
## 280  9131  40  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 281  9134  40  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 282  7188  31  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 283  5979  29  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 284   560  32  1  1  1  1  2  1    0    0    0    1    0    0    0    0
## 285  3602  38  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 286  5013  72  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 287  1063  22  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 288  8664  55  2  2  1  1  1  2    0    1    0    1    0    0    0    0
## 289  7627  32  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 290  3494  27  1  1  3  3  2  1    1    0    0    0    0    0    0    0
## 291  4927  31  2  1  3  5  1  1    0    0    0    1    0    0    0    0
## 292  7100  18  2  4  3  5  2  2    0    0    0    1    0    0    0    0
## 293   682  41  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 294  8375  42  2  2  3  1  2  2    0    0    0    1    0    0    0    0
## 295  8745  61  2  3  1  3  1  2    0    0    0    1    0    0    0    0
## 296  2750  43  2  2  2  3  2  2    0    1    0    0    0    0    0    0
## 297   249  23  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 298  3538  49  2  2  1  1  2  2    0    0    0    1    0    1    0    0
## 299  4403  18  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 300    51  22  2  4  3  5  2  1    0    0    0    0    0    0    0    0
## 301  9274  32  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 302  1298  32  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 303  7140  30  1  1  7  5  2  1    1    1    0    0    0    0    0    0
## 304  6651  45  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 305  6069  17  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 306  6167  42  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 307  7377  48  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 308  7792  42  2  3  1  3  2  2    0    1    0    0    0    0    0    1
## 309  7512  53  1  1  3  1  2  2    0    1    0    0    1    0    0    0
## 310  8395  80  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 311  4390  23  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 312   253  45  1  1  5  4  1  1    0    0    0    1    0    0    0    0
## 313  4616  36  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 314   656  32  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 315  8624  35  1  1  3  1  1  1    0    1    1    0    0    0    0    0
## 316  8903  24  2  1  6  3  2  1    0    1    1    0    0    0    0    0
## 317  7457  43  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 318  7727  49  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 319   796  18  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 320  6344  61  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 321  1520  60  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 322  4500  35  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 323  3837  43  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 324  7468  42  2  1  6  5  1  1    1    1    0    0    0    0    0    0
## 325  2162  16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 326  6555  30  1  1  4  1  2  2    0    1    0    1    0    0    0    0
## 327  5366  23  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 328  2998  85  2  3  2  4  2  2    0    0    0    0    0    0    0    0
## 329  2436  27  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 330  8620  30  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 331   297  26  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 332  9228  21  1  4  3  5  2  2    0    0    0    0    0    0    0    0
## 333   925  20  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 334  7079  39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 335  7421  57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 336  6451  35  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 337  2213  36  1  1  5  1  2  1    1    0    0    0    0    0    0    0
## 338  3545  25  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 339  5129  30  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 340   805  33  2  1  2  5  1  1    0    0    0    1    0    0    0    0
## 341  4257  33  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 342   474  43  1  1  6  3  2  1    0    1    0    0    0    0    0    0
## 343  8416  20  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 344  8826  20  2  1  6  4  2  2    0    0    0    0    0    0    0    0
## 345  7054  26  1  1  6  3  2  1    0    0    0    1    0    0    0    0
## 346  9161  61  2  2  2  3  2  1    0    1    0    0    0    0    0    0
## 347  2539  90  1  3  2  1  1  2    0    0    0    0    0    0    0    0
## 348  4000  80  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 349  9113  85  2  2  2  5  2  2    0    0    0    1    0    0    0    1
## 350  8920  77  2  3  1  1  1  2    0    1    0    0    0    0    0    0
## 351  7395  24  2  4  3  1  2  1    0    1    0    0    0    0    0    0
## 352  9126  34  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 353  6301  26  2  4  7  4  2  1    1    0    0    0    0    0    0    0
## 354  3951  61  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 355  1085  28  1  2  1  4  2  1    0    0    1    1    0    0    0    0
## 356  1623  26  2  1  6  4  1  1    0    0    0    0    0    0    0    0
## 357  2046  62  2  3  1  2  2  2    0    0    0    0    0    0    0    0
## 358  4531  36  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 359  4198  35  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 360  7345  25  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 361  6894  45  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 362  1722  52  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 363  9152  50  1  4  3  1  2  2    0    1    0    1    0    0    0    0
## 364  9315  72  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 365  9024  18  2  4  3  1  2  2    0    1    0    1    0    0    0    0
## 366  8858  48  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 367  1759  46  1  1  3  5  1  1    0    0    0    1    0    0    0    0
## 368  6107  71  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 369  1505  19  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 370  7558  18  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 371  2681  25  2  1  3  1  1  2    0    0    0    0    0    0    0    0
## 372  7660  24  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 373  1494  48  2  1  1  3  2  1    0    0    0    0    0    0    0    0
## 374  7840  24  2  4  3  3  2  1    0    0    1    0    0    0    0    0
## 375  7253  31  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 376  4441  35  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 377  3205  30  1  1  6  3  1  1    1    0    0    0    0    0    0    0
## 378  4448  22  2  1  5  5  2  1    0    0    0    0    0    0    0    0
## 379  7642  33  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 380  7011  35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 381  3188  62  1  1  1  5  2  2    0    1    0    0    0    0    0    0
## 382  1037  32  2  1  4  1  2  1    0    1    0    0    0    0    0    0
## 383  9345  33  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 384  7263  17  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 385  4209  23  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 386  5647  45  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 387  1374  62  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 388  2755  21  2  4  6  5  2  1    0    1    0    0    0    0    0    0
## 389  4592  22  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 390  6709  29  1  2  3  3  2  2    0    0    0    1    0    0    0    0
## 391  2603  52  1  1  3  3  2  1    0    0    0    0    0    0    0    0
## 392  6855  32  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 393  3760  31  1  4  1  1  1  2    0    1    0    0    0    0    0    0
## 394  3016  87  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 395  8779  60  2  1  1  3  2  1    0    1    0    1    0    0    0    0
## 396  8649  20  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 397  9429  30  2  4  1  3  2  2    0    0    0    1    0    0    0    0
## 398  1368  32  2  1  6  1  2  1    0    0    1    0    0    0    0    0
## 399  2394  40  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 400   814  32  2  1  6  1  2  1    0    0    0    0    0    0    0    0
## 401  8090  45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 402  6219  20  2  4  5  5  2  1    0    0    0    1    0    0    0    0
## 403  5533  58  1  1  5  3  1  1    0    0    0    0    0    0    1    0
## 404  2398  45  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 405  3867  26  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 406  7959  40  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 407  3144  50  1  1  6  1  1  1    0    1    0    1    0    0    0    0
## 408  3809  37  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 409  1177  16  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 410  1594  27  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 411  8930  38  2  3  2  5  2  2    0    1    0    0    0    0    0    0
## 412  4103  72  1  3  3  5  2  2    0    0    0    0    0    0    0    0
## 413     2  29  2  1  7  5  2  1    0    0    0    0    0    0    0    0
## 414  3384  16  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 415   200  62  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 416  6237  20  1  4  5  3  2  1    0    0    0    0    0    0    0    0
## 417  6187  55  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 418  5483  48  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 419  5902  21  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 420  1952  43  1  1  3  1  1  1    0    0    1    0    0    0    0    0
## 421   671  51  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 422  3769  28  1  1  3  4  2  1    0    0    0    1    0    0    0    0
## 423    12  46  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 424  7453  57  2  1  1  2  2  1    0    1    0    1    0    0    0    0
## 425  1341  31  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 426  5219  26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 427  2869  39  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 428  8823  45  1  1  1  1  2  1    0    0    0    1    0    0    0    0
## 429  7293  41  1  1  3  1  1  1    0    1    1    0    0    0    0    0
## 430  3882  31  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 431   532  23  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 432   893  19  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 433  1264  26  2  1  2  3  2  1    0    0    0    0    0    0    0    0
## 434  9177  70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 435  8352  19  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 436  7090  50  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 437  8567  20  2  1  5  3  1  1    0    1    0    0    0    0    0    0
## 438   417  36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 439  8350  29  1  4  7  5  1  1    0    1    0    0    0    0    0    0
## 440  6117  42  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 441  8755  26  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 442  6266  34  2  2  5  4  2  1    0    1    1    0    0    0    0    0
## 443  3324  43  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 444  8364  50  2  3  3  1  2  1    0    0    0    0    0    0    0    0
## 445  4647  36  1  2  1  1  2  2    0    1    0    1    0    0    0    0
## 446  7838  47  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 447  5330  50  1  1  6  1  2  2    0    0    0    1    0    0    0    0
## 448  3128  17  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 449  5763  19  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 450  1278  31  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 451  9053  33  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 452  1123  65  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 453  8290  30  2  1  3  5  2  2    0    0    0    1    0    0    0    0
## 454  6121  34  1  1  3  1  1  1    1    1    0    0    0    0    0    0
## 455  6763  42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 456  2847  50  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 457  3279  17  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 458  2930  70  2  3  2  1  1  2    0    0    0    1    0    0    0    0
## 459  1396  21  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 460  9082  65  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 461  1004  42  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 462  4729  32  2  1  3  2  1  1    0    0    1    0    0    0    0    0
## 463  7839  50  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 464  2475  60  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 465  8306  28  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 466  6177  16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 467  8927  70  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 468   675  26  2  2  3  4  2  1    0    0    0    0    0    0    0    0
## 469  1223  65  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 470  8396  35  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 471  7535  35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 472  6941  27  2  3  2  3  2  2    0    1    0    0    0    0    0    0
## 473  1818  49  2  1  3  5  1  1    0    0    0    1    0    0    0    0
## 474  7294  19  1  4  2  5  2  1    0    0    0    1    0    0    0    0
## 475  9019  32  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 476  8265  41  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 477  7647  40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 478  6005  27  2  1  5  5  2  1    0    0    0    0    0    0    0    0
## 479  5780  16  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 480  7030  68  2  1  1  3  2  1    0    1    0    1    0    0    0    0
## 481  5002  22  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 482  4946  76  1  1  6  1  1  1    0    0    0    1    0    0    1    0
## 483  2611  33  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 484  9386  26  1  4  6  5  2  1    1    0    0    0    0    0    0    0
## 485  6485  25  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 486  6458  30  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 487  8176  22  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 488  8594  39  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 489  2504  70  2  3  2  3  1  2    0    0    0    0    0    0    0    0
## 490  3319  35  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 491  5243  23  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 492  7319  48  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 493  4016  72  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 494  4196  25  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 495  9331  48  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 496  2596  26  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 497   782  48  2  3  3  5  1  1    0    1    0    0    0    0    0    0
## 498  6884  66  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 499  2987  16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 500  2576  70  2  2  1  3  2  2    0    0    0    0    0    0    0    1
## 501  1296  26  2  2  3  3  2  2    0    1    0    1    0    0    0    0
## 502  8279  34  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 503  1832  25  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 504  8507  18  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 505  6969  23  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 506  5692  18  2  4  3  1  2  2    0    0    1    0    0    0    0    0
## 507  9240  35  2  1  3  4  1  1    0    1    0    0    0    0    0    0
## 508  6655  33  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 509  5337  35  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 510   980  39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 511  2563  60  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 512  5710  32  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 513  6263  51  2  2  3  1  2  1    0    1    0    0    0    0    0    1
## 514   268  30  2  1  7  5  2  1    1    0    0    0    0    0    0    0
## 515  1067  17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 516  3214  57  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 517  6218  23  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 518  8862  25  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 519  3103  30  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 520  6482  53  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 521  4563  68  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 522   689  31  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 523  3163  40  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 524   296  30  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 525  2910  48  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 526  6238  22  1  1  3  5  1  1    0    0    0    1    0    0    0    0
## 527  5347  35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 528  1963  40  2  1  7  2  2  1    0    0    1    0    0    0    0    0
## 529  6497  60  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 530  8643  43  1  1  3  2  2  2    0    1    0    0    0    0    0    0
## 531  9243  21  1  4  1  3  2  1    0    1    0    0    0    0    0    0
## 532  9154  61  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 533   211  30  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 534  6565  34  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 535  2095  30  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 536  5597  25  1  1  2  3  2  1    0    1    0    1    0    0    0    0
## 537  1830  34  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 538  2083  34  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 539  7098  44  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 540  8134  54  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 541   727  40  2  1  6  1  1  1    1    0    0    0    0    0    0    0
## 542   251  30  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 543  1182  37  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 544  1326  25  1  4  6  4  2  1    1    0    0    0    0    0    0    0
## 545   306  23  2  1  5  4  2  1    0    0    0    1    0    0    0    0
## 546  4804  17  1  4  2  3  2  1    0    0    0    1    0    0    0    0
## 547  4427  18  1  4  2  1  2  2    0    1    0    1    0    0    0    0
## 548  7323  39  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 549    88  26  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 550  3693  30  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 551  7458  32  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 552  7165  40  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 553  6685  21  2  2  5  3  2  2    0    0    0    0    0    0    0    0
## 554   828  46  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 555  8716  22  2  4  3  4  2  1    0    0    0    0    0    0    0    0
## 556   377  20  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 557  9052  48  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 558  6501  79  1  3  2  5  2  2    0    0    0    0    0    0    0    0
## 559  2428  25  1  1  1  1  1  1    0    1    0    1    0    0    0    0
## 560  4333  30  2  1  1  5  2  2    0    1    0    0    0    0    0    1
## 561  1701  42  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 562  5601  19  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 563  1114  47  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 564  7524  55  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 565  4508  24  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 566  2560  35  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 567  2644  20  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 568  5683  25  1  4  7  4  2  1    1    1    0    0    0    0    0    0
## 569  9260  82  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 570  9025  23  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 571  8696  29  2  1  2  2  2  2    0    1    0    1    0    0    0    0
## 572  6888  81  2  3  1  3  2  2    0    0    0    0    0    0    0    0
## 573  5204  50  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 574  8844  45  2  1  3  5  2  2    0    0    0    0    0    0    0    1
## 575  8605  51  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 576  6359  46  2  2  3  1  2  2    0    1    0    1    0    0    0    0
## 577  4163  53  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 578  5958  45  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 579  2060  70  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 580  7000  49  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 581  5277  40  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 582  4713  43  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 583  3332  29  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 584  4274  45  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 585  4168  19  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 586  6553  40  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 587  7469  47  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 588  7089  29  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 589   320  35  2  1  3  4  2  1    0    0    1    0    0    0    0    0
## 590  4211  31  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 591  6847  58  1  1  3  4  2  2    0    0    0    1    0    0    0    0
## 592  4973  43  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 593  2725  28  2  1  6  4  1  1    0    0    0    0    0    0    0    0
## 594  7489  45  2  2  3  5  2  1    0    0    0    1    0    0    0    0
## 595  9265  32  2  1  2  3  2  1    0    0    0    0    0    0    0    0
## 596  8577  20  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 597  6733  27  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 598  2449  80  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 599  5940  49  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 600  2107  20  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 601  2226  47  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 602  5830  60  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 603  8673  72  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 604  4896  30  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 605   709  28  2  1  3  4  2  2    0    1    0    1    0    0    0    0
## 606  6309  26  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 607  5419  28  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 608  7300  35  2  1  3  4  2  2    0    1    0    1    0    0    0    0
## 609  4051  25  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 610    84  57  1  2  6  1  1  1    0    1    0    0    1    0    0    0
## 611  5768  31  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 612  3301  17  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 613  2325  77  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 614  5107  57  1  1  3  1  1  1    1    0    0    0    0    0    0    0
## 615  8348  30  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 616  2659  25  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 617  7501  29  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 618  7440  70  2  3  2  1  2  2    0    1    0    0    0    0    0    1
## 619  3869  32  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 620  9361  35  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 621  4543  75  1  1  1  1  2  1    0    0    0    0    0    0    0    1
## 622  4243  35  2  1  4  2  2  1    1    0    0    0    0    0    0    0
## 623  5755  32  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 624  9376  70  1  3  1  1  2  2    0    1    0    1    0    0    0    0
## 625  9301  55  2  1  6  1  2  1    1    0    0    0    1    0    0    0
## 626  3461  36  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 627  6652  77  2  3  1  1  2  1    0    1    0    0    0    0    0    1
## 628  8697  37  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 629  1304  27  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 630  1644  40  2  2  3  5  1  2    0    1    0    1    0    0    0    0
## 631  7992  54  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 632    70  60  1  1  3  4  1  1    1    0    0    0    0    0    0    0
## 633  4624  29  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 634   630  63  1  1  3  1  2  1    1    0    0    0    0    0    0    0
## 635  1640  42  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 636  6957  49  1  2  3  1  1  1    0    0    0    1    0    0    0    0
## 637  2289  20  2  1  5  3  2  1    0    0    0    0    0    0    0    0
## 638  4306  46  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 639  9032  32  2  4  2  1  2  2    0    1    0    0    0    0    0    0
## 640  2652  37  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 641  8933  30  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 642  3146  62  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 643  7111  38  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 644  5535  41  2  1  3  5  2  1    0    1    0    1    0    0    0    0
## 645  8325  22  2  1  2  5  2  2    0    1    1    0    0    0    0    0
## 646  1897  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 647  2488  35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 648  3984  30  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 649  2751  28  2  1  6  5  2  1    1    0    0    0    0    0    0    0
## 650  3683  35  1  1  2  1  1  1    0    1    0    1    0    0    0    0
## 651  7653  17  2  4  5  3  1  2    0    0    0    0    0    0    0    0
## 652  2554  24  1  4  3  4  2  1    0    0    0    1    0    0    0    0
## 653  7252  17  1  4  5  1  2  2    0    1    0    0    0    0    0    0
## 654  5224  65  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 655  4167  27  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 656  1552  38  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 657  4915  27  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 658  2577  49  1  1  5  4  2  1    0    1    0    0    0    0    0    0
## 659  8829  47  2  3  3  1  2  1    0    1    1    0    0    0    0    0
## 660  3353  33  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 661  2493  39  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 662  9163  70  1  2  2  1  2  2    0    1    0    0    0    0    0    0
## 663  3224  23  1  1  5  5  2  1    0    1    0    0    0    0    0    0
## 664    63  39  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 665  4680  45  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 666  2463  70  2  2  2  2  2  2    0    1    0    0    0    0    0    0
## 667   107  32  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 668  4425  35  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 669  7711  32  1  1  1  4  2  1    0    0    1    0    0    0    0    0
## 670  5600  19  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 671  2256  53  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 672  9448  33  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 673  9304  41  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 674  5275  36  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 675  8323  36  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 676  1649  42  2  1  3  1  1  2    0    1    0    1    0    0    0    0
## 677  8637  58  2  1  3  5  1  1    0    1    0    0    0    0    0    0
## 678  8233  34  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 679  3731  16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 680  6613  75  1  3  1  3  2  2    0    0    0    0    0    0    0    0
## 681  2294  32  2  1  7  3  2  1    1    0    0    0    0    0    0    0
## 682  3277  33  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 683  6157  25  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 684  4974  79  2  3  3  1  2  2    0    0    0    0    0    0    0    1
## 685   158  22  2  4  3  5  2  2    0    1    0    0    0    0    0    0
## 686  2077  61  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 687  1280  77  1  3  2  1  2  1    0    1    0    0    0    0    0    0
## 688  2399  32  2  4  3  1  2  1    0    0    0    1    0    0    0    0
## 689  3676  43  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 690  3381  25  2  2  3  5  2  2    0    1    0    1    0    0    0    0
## 691  7118  21  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 692  2604  41  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 693  6541  29  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 694  1978  43  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 695   173  16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 696  2857  32  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 697  7083  45  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 698  2764  36  2  2  3  5  2  2    0    1    1    0    0    0    0    0
## 699  6800  68  2  3  1  1  2  2    0    1    0    1    0    0    0    1
## 700  1022  38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 701  2769  55  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 702  3343  24  2  1  6  3  2  1    0    0    0    0    0    0    0    0
## 703  8347  33  2  2  7  5  1  1    1    1    0    0    0    0    0    0
## 704  2310  33  1  1  2  1  2  1    0    0    1    1    0    0    0    0
## 705  7028  33  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 706  4402  38  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 707  5110  25  2  1  1  1  2  1    0    0    0    0    0    0    0    0
## 708  2921  62  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 709  4245  47  1  1  3  5  1  2    0    0    0    1    0    0    0    0
## 710  1238  40  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 711   290  39  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 712   450  28  2  1  6  4  2  1    0    0    1    0    0    0    0    0
## 713  3216  38  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 714  7566  40  1  1  1  2  2  1    0    1    0    0    0    0    0    0
## 715  7157  41  1  2  3  1  1  1    0    1    0    1    0    0    0    0
## 716  6304  52  2  1  3  1  1  1    0    1    0    0    1    0    0    0
## 717  5423  49  2  1  6  1  2  1    0    1    0    1    0    0    0    0
## 718   362  52  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 719  4720  37  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 720  6845  19  2  4  5  5  2  1    0    1    0    1    0    0    0    0
## 721  8910  50  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 722  1118  26  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 723  8081  16  2  4  5  5  2  2    0    1    0    0    0    0    0    0
## 724  4621  21  2  4  6  3  2  1    0    1    0    1    0    0    0    0
## 725  2364  42  2  1  3  1  2  1    1    1    0    0    0    0    0    0
## 726  3415  70  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 727  7505  27  1  1  6  1  2  1    0    1    0    1    0    0    0    0
## 728    98  30  2  1  5  5  2  1    0    0    0    1    0    0    0    0
## 729  6264  24  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 730  7131  50  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 731   373  20  1  4  3  5  2  1    1    0    0    0    0    0    0    0
## 732  5864  38  2  4  5  1  1  2    0    1    0    0    0    0    0    0
## 733  6425  68  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 734  3417  16  2  4  2  3  2  2    0    1    0    0    0    0    0    0
## 735  3367  53  1  3  3  1  2  2    0    1    0    1    0    0    0    0
## 736  4315  27  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 737  2197  27  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 738  8480  55  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 739  2826  42  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 740  6816  40  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 741  3737  40  1  2  3  3  2  1    0    1    0    1    0    0    0    0
## 742  4762  40  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 743  3606  30  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 744  1055  30  2  4  3  1  2  1    0    1    0    0    0    0    0    0
## 745  9322  65  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 746  1799  58  1  3  2  1  1  1    0    1    0    0    0    0    0    0
## 747  6132  40  2  2  3  3  2  1    0    1    0    0    0    1    0    0
## 748  7166  24  1  1  2  1  2  1    1    0    0    0    0    0    0    0
## 749  5632  70  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 750  6807  36  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 751  1158  25  1  4  6  3  1  1    1    0    0    0    0    0    0    0
## 752  6449  67  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 753  4897  39  2  1  1  3  2  2    1    1    0    0    0    0    0    0
## 754  5130  27  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 755  7475  26  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 756  4205  42  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 757  4836  20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 758  8800  25  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 759  3073  23  2  1  3  2  2  2    0    0    0    0    0    0    0    0
## 760  6965  30  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 761  2527  21  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 762  7077  65  2  1  1  2  2  2    0    1    0    1    0    0    0    0
## 763  2552  24  2  1  5  5  2  1    0    1    0    0    0    0    0    0
## 764  4529  44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 765  6983  47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 766  4055  24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 767  7181  39  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 768   902  26  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 769  4350  24  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 770  2740  47  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 771  7621  48  1  1  3  1  1  1    0    0    1    1    0    0    0    0
## 772  4878  50  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 773  7518  35  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 774  7122  55  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 775  4199  31  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 776  4602  37  2  3  1  1  2  2    0    0    0    1    0    0    0    1
## 777  2013  35  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 778  5213  50  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 779  4848  43  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 780  8876  36  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 781  2895  40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 782    28  35  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 783  3964  23  2  4  6  5  2  2    0    0    1    0    0    0    0    0
## 784  3706  28  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 785  7762  47  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 786  7504  31  2  1  3  5  1  2    0    1    0    1    0    0    0    0
## 787  7280  29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 788  7849  22  1  1  3  3  2  1    0    1    1    0    0    0    0    0
## 789  5971  34  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 790  5291  20  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 791  8777  40  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 792  3485  25  2  1  7  5  2  1    1    1    0    0    0    0    0    0
## 793  7966  26  1  1  2  4  2  1    0    1    0    0    0    0    0    0
## 794  2888  36  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 795  3640  42  2  4  3  5  2  2    0    1    0    0    0    0    0    1
## 796  9136  56  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 797  1409  52  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 798  4480  18  1  4  3  3  1  1    0    1    0    1    0    0    0    0
## 799  4084  32  2  4  3  1  1  1    0    1    0    1    0    0    0    0
## 800  8505  45  1  1  3  1  2  1    1    0    0    0    0    0    0    0
## 801  7184  19  1  1  3  2  2  2    0    1    0    0    0    0    0    0
## 802  7835  50  1  1  2  1  2  2    0    1    0    0    0    0    0    1
## 803   583  35  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 804  1189  16  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 805  2636  20  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 806  3868  35  2  1  6  4  2  1    0    0    0    1    0    0    0    0
## 807  5635  80  2  3  2  1  1  1    0    0    0    0    0    0    0    0
## 808  1611  34  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 809  7418  17  1  4  3  3  1  2    0    0    0    0    0    0    0    0
## 810  6650  42  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 811  6327  38  2  2  6  5  2  1    0    1    0    0    0    0    0    0
## 812  4284  75  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 813  9296  48  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 814  6030  50  1  1  2  1  2  1    0    1    1    0    0    0    0    0
## 815  5068  70  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 816  2479  30  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 817  7718  28  1  1  6  3  2  2    0    1    0    1    0    0    0    0
## 818   997  51  1  3  5  1  2  2    0    1    0    0    0    0    0    0
## 819  8069  22  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 820  1554  45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 821   559  22  2  2  3  5  2  1    0    0    0    0    0    0    0    0
## 822  2757  18  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 823  3665  43  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 824   505  50  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 825  2464  82  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 826  2239  62  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 827  3663  20  2  4  5  3  2  1    0    0    0    0    0    0    0    0
## 828  8893  48  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 829  3204  48  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 830   694  21  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 831  4754  18  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 832  6090  43  1  1  6  1  2  1    0    1    1    0    0    0    0    0
## 833  4828  60  2  3  1  5  2  2    0    1    0    0    0    0    0    0
## 834  5616  28  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 835  4025  23  2  1  5  2  2  2    0    1    0    0    0    0    0    0
## 836  1425  33  2  1  3  5  1  1    0    0    1    0    0    0    0    0
## 837  4105  21  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 838  5764  39  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 839  5716  18  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 840  2383  39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 841  7281  43  2  3  2  1  2  2    0    0    0    0    0    0    1    0
## 842  1403  30  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 843  6966  45  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 844  4544  38  2  4  1  1  2  2    0    0    0    1    0    0    0    0
## 845  1253  69  2  3  1  2  2  2    0    0    0    0    0    0    0    0
## 846  4356  35  2  1  2  1  2  2    0    0    0    0    0    0    0    0
## 847  7427  34  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 848  9071  26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 849   475  25  2  4  6  5  2  1    0    0    0    1    0    0    0    0
## 850  7859  33  2  1  5  4  2  1    1    0    0    0    0    0    0    0
## 851  8804  27  2  1  2  1  1  2    0    1    0    1    0    0    0    0
## 852  5849  21  1  4  5  1  2  1    0    1    0    0    0    0    0    0
## 853  9129  24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 854   370  16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 855  3436  27  1  4  3  2  2  1    0    0    0    1    0    0    0    0
## 856   958  57  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 857  5229  17  2  4  1  2  2  2    0    1    0    0    0    0    0    0
## 858  3455  82  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 859  5460  25  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 860  3555  19  2  3  3  5  2  1    0    0    1    0    0    0    0    0
## 861  7753  26  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 862  2889  51  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 863  6945  25  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 864  3454  28  2  1  1  3  2  2    0    0    0    1    0    0    0    0
## 865  7869  32  1  1  3  4  2  1    0    0    1    0    0    0    0    0
## 866   763  16  2  4  3  5  2  2    1    0    0    0    0    0    0    0
## 867  4431  47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 868  4287  17  2  4  2  5  2  2    0    0    0    0    0    0    0    0
## 869  5934  27  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 870  7847  72  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 871  6468  39  2  2  3  3  2  1    0    1    0    1    0    0    0    0
## 872  2481  29  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 873  5252  42  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 874  8839  34  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 875  5817  65  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 876  5804  40  2  1  2  5  2  1    0    0    0    0    0    0    0    0
## 877  1255  40  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 878  6486  20  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 879  6926  30  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 880  5077  44  1  2  2  4  2  2    0    1    0    1    0    0    0    0
## 881  3218  40  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 882  7999  46  1  1  2  5  2  1    0    1    0    1    0    0    0    0
## 883  6397  49  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 884  8327  28  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 885  8609  70  1  3  1  1  2  2    0    1    0    1    0    0    0    0
## 886   179  27  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 887  4619  38  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 888  6566  22  1  4  3  5  2  1    0    1    0    1    0    0    0    0
## 889  9064  20  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 890  2126  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 891  7932  26  1  4  5  5  2  1    0    0    0    1    0    0    0    0
## 892  3201  17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 893  2148  32  1  1  7  6  1  1    1    0    0    0    0    0    0    0
## 894  2780  40  1  1  1  3  2  2    0    1    0    1    1    0    0    0
## 895  1764  47  1  3  3  1  2  1    0    1    0    0    0    0    0    0
## 896  1195  33  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 897  1979  41  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 898  6638  20  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 899  8476  26  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 900  2058  32  2  2  2  1  2  1    0    0    0    1    0    0    0    0
## 901  1932  66  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 902  6912  24  2  1  1  3  2  2    0    1    1    0    0    0    0    0
## 903  9048  29  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 904  3992  26  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 905  6794  54  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 906  7749  50  1  2  3  1  1  2    0    1    0    0    0    0    0    0
## 907  7047  50  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 908  7088  27  2  4  3  5  2  1    1    0    0    1    0    0    0    0
## 909  4940  60  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 910  8703  68  1  1  3  2  2  1    0    1    1    0    0    0    0    0
## 911  5458  78  1  2  3  1  2  2    0    1    0    0    0    0    0    0
## 912   274  21  2  4  6  5  2  1    1    1    0    0    0    0    0    0
## 913   848  23  2  2  2  5  2  1    0    0    1    0    0    0    0    0
## 914  6544  19  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 915  8870  28  1  1  1  3  1  2    0    1    0    1    0    0    0    0
## 916  4604  54  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 917  3400  25  1  1  2  1  1  2    0    1    0    1    0    0    0    0
## 918  7978  40  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 919  1324  21  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 920  8934  32  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 921  5227  30  2  1  1  2  2  2    0    1    0    1    0    0    0    0
## 922  2011  20  2  1  1  5  2  2    0    0    0    1    0    0    0    0
## 923  3361  58  1  3  6  1  2  1    0    0    1    0    0    0    0    0
## 924  5798  63  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 925  7368  85  2  2  1  2  2  1    0    1    0    0    0    0    0    0
## 926  7728  45  1  1  1  3  2  1    0    1    0    0    0    0    0    0
## 927  4383  76  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 928  5509  18  2  4  6  1  2  1    0    0    0    0    0    0    0    0
## 929  4464  22  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 930  6615  25  2  4  5  3  2  1    0    1    0    0    0    0    0    0
## 931  3824  40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 932  3337  19  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 933  7914  43  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 934  7589  23  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 935  4707  22  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 936  5156  51  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 937  6272  58  1  1  6  1  1  1    1    1    0    0    0    0    0    0
## 938  2450  45  1  1  1  1  1  2    0    1    0    1    0    0    0    0
## 939  2712  50  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 940   723  20  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 941  8045  78  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 942  1512  24  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 943  6062  38  1  1  6  4  2  1    0    1    0    1    0    0    0    0
## 944  5596  29  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 945  8098  39  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 946  1718  37  2  3  1  1  1  1    0    1    0    0    0    0    0    0
## 947  4488  25  2  1  6  5  2  1    0    1    0    0    0    0    0    0
## 948  6607  18  1  1  2  3  2  1    0    1    0    1    0    0    0    0
## 949  6562  43  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 950  9005  35  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 951  2393  27  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 952  7636  27  1  4  5  4  2  1    0    1    0    0    0    0    0    0
## 953  5338  50  1  3  3  1  2  2    0    1    0    0    0    0    0    0
## 954  3940  27  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 955  4685  30  2  1  6  5  2  1    0    1    0    1    0    0    0    0
## 956  9232  16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 957  7606  39  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 958  3710  46  2  1  1  4  2  1    0    0    0    1    0    0    0    0
## 959  2532  72  2  3  1  5  2  1    0    0    0    0    0    0    0    0
## 960  7225  35  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 961  2965  59  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 962  8666  73  2  3  2  1  1  1    0    1    0    0    0    0    0    0
## 963  8321  27  2  1  5  5  2  2    0    1    0    0    0    0    0    0
## 964   895  21  1  4  7  3  2  1    1    0    0    0    0    0    0    0
## 965  4302  80  2  3  1  5  2  2    0    1    0    0    0    0    0    0
## 966  7900  16  2  4  3  6  2  2    1    0    0    0    0    0    0    0
## 967  3897  36  2  1  3  5  1  2    0    0    0    1    0    0    0    0
## 968  6419  24  1  1  3  3  2  1    0    1    1    0    0    0    0    0
## 969  2575  63  1  1  2  1  2  1    0    0    0    0    0    0    0    0
## 970   750  26  1  1  3  4  1  1    1    0    0    0    0    0    0    0
## 971   576  49  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 972  1073  17  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 973  2003  75  2  3  3  1  2  1    0    0    0    0    0    0    0    0
## 974  1243  40  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 975   664  24  2  1  6  2  2  1    0    0    0    0    0    0    0    0
## 976  5228  31  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 977  2167  19  1  1  1  3  2  2    0    0    0    1    0    0    0    0
## 978  4496  16  2  4  5  5  2  1    0    1    0    0    0    0    0    0
## 979  5168  35  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 980   257  30  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 981  3942  49  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 982  4753  34  1  1  3  3  2  2    0    0    0    1    0    0    0    0
## 983  7407  37  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 984  5092  70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 985  3905  53  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 986  5662  65  2  2  3  1  2  1    0    1    0    0    0    0    0    1
## 987  9385  34  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 988  8668  48  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 989  5571  24  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 990  4825  60  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 991  1204  31  2  2  3  2  1  1    0    1    0    0    0    0    0    0
## 992  9023  19  2  4  6  3  2  1    0    0    0    1    0    0    0    0
## 993  8472  66  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 994  8961  45  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 995  7570  36  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 996  3954  59  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 997  7375  34  2  1  3  5  2  1    1    0    0    0    0    0    0    0
## 998  5564  41  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 999  8570  22  2  4  3  4  2  2    0    1    0    0    0    0    0    0
## 1000 2739  20  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1001 4079  44  2  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1002 7276  38  2  2  2  4  2  2    0    0    0    1    0    0    0    0
## 1003 1969  20  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 1004 9125  35  1  2  3  4  2  2    1    0    0    0    0    0    0    0
## 1005 1161  19  1  4  3  3  2  1    0    0    0    0    0    0    0    0
## 1006  969  20  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1007 8359  23  2  1  3  4  1  1    0    0    1    0    0    0    0    0
## 1008 6918  41  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1009 5660  28  1  4  6  1  2  1    0    1    0    0    0    0    0    0
## 1010 1821  32  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1011  887  45  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 1012 8508  40  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1013 7832  26  1  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1014 5215  28  2  1  3  4  2  2    0    1    1    1    0    0    0    0
## 1015  242  30  1  1  5  5  2  1    0    0    0    1    0    0    0    0
## 1016 5417  65  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 1017 1249  24  1  4  5  4  2  1    0    1    0    0    0    0    0    0
## 1018 1917  36  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1019 7388  18  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1020  868  29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1021 6701  68  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1022 5001  60  1  2  2  5  2  1    0    1    0    0    0    0    0    0
## 1023 5513  36  1  2  5  1  2  2    0    1    0    0    0    0    0    0
## 1024 8730  40  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 1025 1106  32  1  4  3  4  2  2    0    0    0    1    0    0    0    0
## 1026 2157  63  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1027 7953  54  2  1  1  3  2  2    0    1    1    0    0    0    0    0
## 1028 1050  25  1  2  6  4  1  1    0    1    0    0    0    0    0    0
## 1029 5484  33  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1030   10  42  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 1031 5217  24  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 1032 2561  19  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1033 6564  23  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 1034 5733  57  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1035 3981  30  1  1  5  4  1  1    0    1    0    0    0    0    0    0
## 1036 5240  58  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1037 6275  70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1038 5062  51  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1039 7857  30  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1040 4740  29  1  1  5  5  1  1    0    1    0    0    0    0    0    0
## 1041 3354  46  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1042 2334  36  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1043 6003  63  2  3  2  1  2  1    0    1    0    0    0    0    0    0
## 1044 7831  39  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 1045 7697  50  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1046 9031  27  2  2  2  4  2  1    0    0    1    0    0    0    0    0
## 1047 5362  61  2  1  2  5  2  2    0    1    0    0    0    0    0    0
## 1048 2161  24  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1049 7250  30  1  1  3  1  2  1    0    1    0    1    0    1    0    0
## 1050 7676  59  1  1  2  1  2  1    0    1    0    1    0    0    0    1
## 1051 4782  39  2  1  5  2  2  1    0    0    0    1    0    0    0    0
## 1052  921  49  1  1  5  4  2  1    0    1    0    0    0    0    0    0
## 1053 9112  80  2  3  1  1  2  2    0    0    0    1    1    0    0    0
## 1054 3536  69  1  3  8  1  2  1    0    0    0    1    0    0    0    0
## 1055 6915  81  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 1056 3796  50  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1057 8072  28  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1058 6996  64  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1059 1362  30  1  2  2  3  2  2    0    0    0    1    0    0    0    0
## 1060 5709  70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1061 2471  35  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1062 6134  20  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1063 3552  44  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1064 1215  40  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1065 6124  56  2  2  1  1  2  1    0    0    0    1    0    0    0    1
## 1066 6591  58  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1067 5739  29  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1068 4520  42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1069  871  16  2  4  3  3  1  2    0    0    0    0    0    0    0    0
## 1070 2314  36  1  1  3  4  2  1    0    1    0    1    0    0    0    0
## 1071 8515  47  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1072 7933  75  2  3  1  3  2  2    0    0    0    0    0    0    0    0
## 1073  383  35  1  1  1  4  2  1    0    0    0    1    0    0    0    0
## 1074  655  16  1  4  3  3  1  2    0    1    0    0    0    0    0    0
## 1075 8990  27  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1076 2825  43  2  2  2  1  1  2    0    1    0    0    0    0    0    0
## 1077 1840  33  1  4  6  5  2  1    1    0    0    0    0    0    0    0
## 1078 5926  34  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1079 2433  29  1  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1080 7648  27  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1081 5271  58  2  3  2  1  2  1    0    0    0    1    0    0    0    0
## 1082 1021  47  2  1  6  1  2  1    0    0    0    0    0    0    0    0
## 1083 9360  32  1  4  3  4  2  2    0    0    0    1    0    0    0    0
## 1084 3479  27  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1085 1646  35  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1086 4657  25  2  4  7  4  2  1    0    1    0    0    0    0    0    0
## 1087 8142  33  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1088 1787  17  1  4  3  4  2  1    0    0    0    0    0    0    0    0
## 1089 8026  41  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1090 6189  39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1091 1918  30  1  1  6  5  2  1    0    1    0    1    0    0    0    0
## 1092 8052  50  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1093 2835  26  1  3  3  5  2  1    0    1    0    1    0    0    0    0
## 1094 3085  68  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 1095 8095  28  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 1096 2320  23  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 1097 7557  37  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1098  659  30  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1099 2217  58  2  3  3  1  2  2    0    0    0    1    0    0    0    0
## 1100 9312  70  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1101 2748  30  2  3  2  1  2  1    0    1    0    1    0    0    0    0
## 1102 8420  21  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1103 4877  16  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 1104  594  24  1  1  6  3  2  1    1    0    0    0    0    0    0    0
## 1105 1122  23  1  4  6  4  2  1    0    1    0    1    0    0    0    0
## 1106 4273  40  2  3  2  1  2  2    0    0    0    0    0    0    0    1
## 1107 4717  50  2  1  3  5  1  2    0    0    0    0    0    0    0    0
## 1108 8157  26  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1109 7960  31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1110 3345  52  1  2  1  1  2  2    0    1    0    1    0    0    0    0
## 1111 9434  35  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1112 5231  40  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1113 3087  58  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1114  392  34  1  4  2  5  1  2    0    0    0    1    0    0    0    0
## 1115 2255  24  1  1  3  4  1  1    0    0    1    0    0    0    0    0
## 1116 2721  22  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1117 2138  22  2  1  1  4  2  2    0    1    0    1    0    0    0    0
## 1118 1159  42  2  3  2  4  2  2    0    1    0    0    0    0    0    0
## 1119 2827  34  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1120 7817  17  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 1121 7408  50  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1122 2789  30  1  1  1  5  1  1    1    0    0    0    0    0    0    0
## 1123  492  23  2  1  3  3  1  2    0    0    0    0    0    0    0    0
## 1124 4192  45  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1125 6708  62  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1126 5650  50  1  1  1  4  1  1    0    0    0    1    0    0    0    0
## 1127 2124  46  2  1  3  3  2  1    0    1    0    0    1    0    0    0
## 1128 7600  17  1  4  1  3  2  2    0    1    0    1    0    0    0    0
## 1129 3913  36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1130 1696  18  2  4  7  5  2  2    0    0    0    0    0    0    0    0
## 1131  554  17  2  4  3  5  2  1    1    0    0    0    0    0    0    0
## 1132 6745  65  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1133  798  70  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 1134  693  46  1  2  3  5  2  2    0    0    0    1    0    0    0    0
## 1135 6743  36  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1136  908  31  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 1137 4155  75  1  3  1  1  1  2    0    0    0    1    0    0    0    0
## 1138 8698  24  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1139 5695  63  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1140 3979  78  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1141 8260  37  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1142 5006  24  1  1  5  1  2  1    0    1    0    1    0    0    0    0
## 1143 6916  23  2  1  6  3  2  2    0    0    0    1    0    0    0    0
## 1144 4301  63  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1145 8937  38  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1146 7910  50  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1147  903  37  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 1148 8384  35  2  1  2  1  2  1    0    0    1    0    0    0    0    0
## 1149 4903  35  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1150 8022  44  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 1151 7442  23  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 1152 7132  21  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1153 9310  37  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1154 8533  33  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1155 8737  42  1  1  3  3  1  2    0    0    0    1    0    0    0    0
## 1156 6780  28  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1157 1914  17  1  4  2  1  2  2    0    0    0    0    0    0    0    0
## 1158 7825  26  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1159 1029  20  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1160 3140  26  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1161 2938  27  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1162 8901  45  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1163 6790  45  1  1  7  1  1  1    1    0    0    1    0    0    0    0
## 1164 8399  39  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1165 7436  40  2  1  1  2  2  1    0    1    0    0    0    0    0    1
## 1166 1598  19  2  1  2  5  2  2    0    0    1    0    0    0    0    0
## 1167 7562  27  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1168 8836  21  2  4  5  5  2  1    0    0    0    1    0    0    0    0
## 1169 9141  16  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1170  175  45  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1171 5956  20  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1172 5357  63  2  3  1  4  2  1    0    1    0    0    0    0    0    0
## 1173 3111  40  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 1174 2687  25  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 1175 9117  18  2  1  3  2  2  2    0    0    0    1    0    0    0    0
## 1176 7012  42  1  1  5  1  2  1    1    1    0    0    0    0    0    0
## 1177 2038  37  2  1  2  3  2  2    0    0    1    0    0    0    0    0
## 1178 7484  41  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1179 8856  22  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1180 2472  40  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1181 6636  96  2  3  1  5  2  2    0    0    0    0    0    0    0    0
## 1182 5689  46  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1183 7863  30  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1184 8167  20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1185  801  25  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1186 8921  28  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1187 6491  42  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1188 6851  32  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1189 6992  27  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 1190 2407  38  1  1  1  3  2  1    0    1    0    1    0    0    0    0
## 1191  359  56  1  3  3  2  2  1    0    1    0    0    0    0    0    0
## 1192 5871  44  1  2  2  5  2  1    0    1    0    0    0    0    0    0
## 1193 5361  60  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1194 6835  42  2  2  3  4  2  1    0    1    0    1    0    1    0    0
## 1195   91  26  2  1  5  1  2  1    0    0    0    0    0    0    0    0
## 1196 5988  59  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 1197 1575  24  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1198 4364  57  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1199 3029  55  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1200 8759  17  1  4  5  1  2  2    0    1    0    0    0    0    0    0
## 1201 8633  40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1202  736  26  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1203 9085  34  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1204 1446  36  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1205 3059  31  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1206 5604  20  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1207 1104  31  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1208 8439  22  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1209 1036  40  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1210 1922  24  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1211 9285  27  2  1  3  4  2  1    1    0    0    0    0    0    0    0
## 1212 3130  35  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1213 2009  62  2  3  1  5  1  2    0    0    0    0    0    0    0    0
## 1214 7163  26  2  1  6  1  2  2    0    1    0    0    0    0    0    0
## 1215 2696  25  2  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1216 2519  52  1  1  2  5  2  2    0    1    0    0    0    0    0    0
## 1217 3572  70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1218 5331  38  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1219 2529  44  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1220 2036  32  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1221 4469  29  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1222 7485  17  1  4  2  3  2  2    0    1    0    0    0    0    0    0
## 1223 6830  28  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1224 6179  72  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1225 6677  58  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1226 4859  41  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1227 5917  32  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1228 1807  51  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1229 5237  19  1  4  3  1  2  1    0    1    0    1    0    0    0    0
## 1230 5456  40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1231  845  45  1  1  3  5  2  1    1    0    0    0    0    0    0    0
## 1232 2262  31  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1233 4662  34  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1234 3761  27  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1235 6631  25  2  2  3  4  1  1    0    1    0    0    0    0    0    0
## 1236 1651  36  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1237 2724  20  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1238 7433  74  1  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1239  701  27  2  1  4  1  2  1    0    0    0    0    0    0    0    0
## 1240 8717  25  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1241 4036  56  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1242  901  25  2  1  1  3  2  2    0    0    0    1    0    0    0    0
## 1243 1378  29  2  1  5  3  2  1    0    0    0    0    0    0    0    0
## 1244 5435  25  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1245 3173  49  2  1  2  3  2  2    0    1    0    0    0    1    0    0
## 1246 3129  16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 1247 6459  54  2  1  3  5  2  1    1    0    0    0    1    0    0    0
## 1248 3083  50  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1249 7592  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1250 9392  34  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1251 1596  31  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1252 3741  45  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1253  512  17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1254 4030  54  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1255 7374  29  1  1  6  4  1  1    0    0    0    1    0    0    0    0
## 1256 2635  23  1  4  5  5  1  1    1    0    0    0    0    0    0    0
## 1257 8235  38  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1258  872  46  1  1  5  1  2  1    0    0    1    0    0    0    0    0
## 1259 1383  26  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1260 4440  23  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1261 3020  38  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1262 4510  34  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1263 3155  73  2  3  1  1  1  1    0    1    0    0    0    0    0    0
## 1264 3564  50  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1265 1291  17  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1266 1198  82  1  1  4  1  2  1    0    0    0    0    0    0    1    0
## 1267 3450  54  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1268 1958  51  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1269 5122  17  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1270 5983  53  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 1271  690  29  2  1  3  5  1  2    0    1    0    0    0    0    0    0
## 1272 5542  27  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1273 3977  38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1274 5383  49  2  3  3  3  2  2    0    1    0    0    0    0    0    1
## 1275 1831  23  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1276 5455  33  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1277 8583  50  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 1278 2269  70  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1279 7532  43  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1280 9200  32  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1281 7884  19  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1282  232  29  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 1283 7918  28  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1284 1770  55  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1285 1188  38  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1286 8473  76  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 1287 1907  27  2  1  6  5  1  1    0    1    0    0    0    0    0    0
## 1288 5586  28  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1289 1372  30  1  1  6  3  1  1    1    1    0    0    0    0    0    0
## 1290 8064  31  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1291 7321  46  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1292 3209  63  1  2  1  3  2  2    0    1    0    0    0    0    0    0
## 1293 2285  25  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1294   58  33  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1295   27  26  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1296 1155  28  1  1  5  1  2  1    0    0    1    0    0    0    0    0
## 1297 3773  51  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1298 8544  29  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1299 8291  38  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1300 2424  20  1  4  3  5  2  1    0    1    0    1    0    0    0    0
## 1301 8756  68  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1302 8524  43  2  1  4  1  2  1    0    1    0    0    0    0    0    0
## 1303 6384  21  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1304 2235  45  2  2  3  5  2  2    0    1    0    0    0    0    0    0
## 1305 5556  49  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1306 7809  48  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1307 5929  60  1  4  1  5  2  2    0    1    0    0    0    0    0    0
## 1308 7996  64  2  3  1  2  2  2    0    0    0    1    0    0    0    0
## 1309 5812  17  1  4  2  4  2  2    0    0    0    1    0    0    0    0
## 1310 1288  20  2  2  1  3  2  1    0    0    0    1    0    0    0    0
## 1311  125  28  2  4  7  5  2  1    0    0    0    0    0    0    0    0
## 1312  799  38  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1313 2042  21  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1314 9358  18  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1315    5  28  2  4  3  3  1  1    0    1    0    0    0    0    0    0
## 1316 2944  32  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 1317 8938  30  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 1318 4580  19  1  4  3  1  2  1    0    0    0    1    0    0    0    0
## 1319 5067  17  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1320 8943  49  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1321  972  65  2  2  3  2  2  2    0    1    0    0    0    0    0    0
## 1322 9302  30  1  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1323 3362  22  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1324 1780  27  2  4  2  3  2  2    0    0    0    1    0    0    0    0
## 1325  156  24  1  4  7  5  2  1    0    0    0    0    0    0    0    0
## 1326 1339  20  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1327 6635  36  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 1328 5208  45  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1329 5166  35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1330 3242  75  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1331 7507  28  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1332 8939  28  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 1333 5158  61  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1334 2914  26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1335 2021  56  1  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1336 2483  24  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1337 4731  36  2  1  3  5  1  1    0    1    0    0    0    1    0    0
## 1338  183  34  1  4  2  5  2  1    1    0    0    0    0    0    0    0
## 1339 1200  24  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1340 2872  63  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 1341 6155  37  1  1  1  5  2  1    0    1    0    1    0    0    0    0
## 1342 1293  33  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1343 7764  50  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1344 9093  67  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1345 4015  26  1  1  6  2  2  1    0    1    1    0    0    0    0    0
## 1346  792  21  2  4  3  4  2  1    0    0    0    0    0    0    0    0
## 1347 2972  30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1348 2421  52  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1349 3018  26  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1350 5573  40  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1351 1839  59  2  2  2  4  1  1    0    0    0    0    0    0    0    0
## 1352 5037  88  2  3  1  5  2  2    0    0    0    0    0    0    0    1
## 1353 5685  53  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 1354 5526  49  2  3  3  1  2  1    0    0    0    0    0    0    0    1
## 1355 7887  30  2  1  3  5  1  2    0    1    0    1    0    0    0    0
## 1356 7356  41  1  2  1  1  1  2    0    0    0    1    0    0    0    0
## 1357 2010  56  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 1358 7679  19  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 1359 2624  22  2  4  3  5  2  2    0    0    0    1    0    0    0    0
## 1360 4664  56  2  3  2  5  2  1    0    1    0    0    0    0    0    0
## 1361 5479  24  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1362  731  26  2  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1363 1033  24  2  2  3  5  2  1    0    1    0    1    0    0    0    0
## 1364 4629  65  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1365 6281  18  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 1366 1207  60  2  3  3  5  1  1    0    0    1    0    0    0    0    0
## 1367 3960  24  1  4  3  5  2  2    0    0    0    1    0    0    0    0
## 1368 7070  45  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1369 8464  26  2  1  3  4  1  2    0    0    0    1    0    0    0    0
## 1370 6814  22  2  1  6  3  2  2    0    1    1    1    0    0    0    0
## 1371  702  29  2  4  1  1  2  1    0    0    0    0    0    0    0    0
## 1372  865  36  1  1  3  5  1  1    0    0    1    0    0    0    0    0
## 1373 2699  22  1  4  3  1  2  1    0    1    0    1    0    0    0    0
## 1374 3561  71  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1375 8733  65  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 1376 8475  40  2  2  3  2  2  1    0    0    0    0    0    0    0    0
## 1377 1572  33  1  1  6  1  1  2    0    1    0    0    0    0    0    0
## 1378 5967  36  1  1  5  4  2  1    1    1    0    0    0    0    0    0
## 1379 6067  45  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1380 4410  32  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 1381 3226  33  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1382 4895  38  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1383 2402  28  1  4  3  3  2  1    0    1    1    0    0    0    0    0
## 1384 4378  31  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1385  374  22  1  4  3  3  2  1    1    0    0    0    0    0    0    0
## 1386 3707  40  2  1  3  5  2  1    0    0    1    0    0    0    0    0
## 1387 1618  19  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1388 4419  43  2  1  3  2  1  1    0    1    0    0    0    0    0    0
## 1389 4525  28  2  3  1  4  2  1    0    0    0    1    0    0    0    0
## 1390  423  17  1  4  4  3  2  1    0    0    0    1    0    0    0    0
## 1391 4075  29  1  1  6  4  2  2    0    1    0    1    0    0    0    0
## 1392 8911  83  1  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1393 1334  30  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1394 3800  42  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 1395 4171  18  2  4  2  4  2  1    0    0    0    1    0    0    0    0
## 1396 2509  16  1  4  3  3  2  2    0    0    0    1    0    0    0    0
## 1397 3491  46  1  1  3  1  2  1    1    1    0    0    0    0    0    0
## 1398 8043  48  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1399 6990  45  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1400 7551  30  2  1  3  2  2  1    0    0    1    0    0    0    0    0
## 1401 8985  27  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1402 6465  28  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1403 4810  45  2  1  3  3  1  2    0    0    0    1    0    0    0    0
## 1404 5164  42  1  1  7  1  2  1    1    0    0    0    0    0    0    0
## 1405 1678  70  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1406 9211  45  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 1407 7594  70  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1408 1295  26  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1409 1936  51  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1410 8584  52  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1411 3047  25  1  1  5  1  2  1    0    1    0    0    0    0    0    0
## 1412 8560  56  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1413 8492  22  2  1  1  2  2  2    0    0    0    0    0    0    0    0
## 1414 1781  19  1  4  2  5  2  1    0    1    0    1    0    0    0    0
## 1415 7801  58  1  1  2  4  2  1    0    1    0    0    0    0    0    0
## 1416 1965  60  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1417 2345  34  2  1  1  1  1  1    0    1    0    0    0    0    0    0
## 1418 5305  42  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1419 2797  43  2  2  1  1  2  2    0    0    0    1    0    0    0    0
## 1420 8161  49  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1421 6372  50  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1422 8807  71  2  3  1  1  2  2    0    1    0    1    0    0    0    1
## 1423 9396  58  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1424 8488  40  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1425  343  19  2  4  6  5  1  1    0    1    0    0    0    0    0    0
## 1426 3360  38  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1427 7056  60  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1428 3575  31  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1429 7935  43  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1430 8557  19  2  4  1  1  2  2    0    1    0    0    0    0    0    0
## 1431 4484  30  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 1432  348  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1433 2087  36  1  1  6  1  1  1    0    0    0    1    0    0    0    0
## 1434 1422  16  2  4  2  4  2  2    0    0    0    0    0    0    0    0
## 1435  767  60  2  2  2  5  1  2    0    0    0    0    0    0    0    0
## 1436 3298  63  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1437 4297  29  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1438 7848  25  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1439 5365  35  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1440 8881  65  1  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1441 2950  30  2  1  1  5  2  1    0    0    0    1    0    0    0    0
## 1442 4293  64  1  2  3  5  2  1    1    0    0    0    0    0    0    0
## 1443 8374  34  2  2  3  1  1  1    0    1    0    1    0    0    0    0
## 1444 4902  38  2  4  3  4  1  1    0    0    1    0    0    0    0    0
## 1445   92  44  1  1  2  1  2  1    0    0    0    0    0    0    0    0
## 1446 6403  38  2  1  1  3  2  2    0    1    0    1    0    0    0    1
## 1447 6233  36  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1448 6072  63  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1449 5748  40  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1450 2166  29  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1451 7851  28  2  1  3  3  2  2    0    0    0    0    0    0    0    1
## 1452 6818  43  1  1  7  5  2  1    1    1    0    0    0    0    0    0
## 1453 1495  30  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1454 7392  40  1  1  3  1  2  1    1    1    0    1    0    0    0    0
## 1455 7927  50  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1456 6379  55  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1457 9430  35  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1458 9425  23  1  1  5  4  2  1    0    1    1    0    0    0    0    0
## 1459 4655  33  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1460  105  55  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1461 8402  62  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1462 8625  38  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1463 6716  63  1  1  3  1  2  1    0    1    0    0    1    0    0    0
## 1464 9166  58  1  1  4  5  2  1    1    1    0    0    0    0    0    0
## 1465 7906  20  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 1466 5913  45  1  1  5  5  2  2    0    1    0    1    0    0    0    0
## 1467 7662  37  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1468 5862  20  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1469 6852  52  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1470 6859  47  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1471 4212  72  1  1  1  1  2  2    0    1    0    0    0    0    0    1
## 1472 8974  45  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1473 1332  43  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1474  375  23  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1475 8762  36  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 1476 3790  31  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1477 1392  36  2  4  3  4  2  1    0    1    0    1    0    0    0    0
## 1478 6064  48  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1479 1336  27  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1480 1553  58  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1481 3013  17  1  4  6  3  2  2    0    0    0    1    0    0    0    0
## 1482 1891  42  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1483 2787  23  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1484 4381  35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1485 1172  51  1  1  6  1  1  1    1    0    0    0    0    0    0    0
## 1486 4809  50  2  3  1  2  2  1    0    0    0    0    0    0    0    0
## 1487  555  22  2  2  1  5  2  1    0    0    0    0    0    0    0    0
## 1488 8519  23  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1489 5053  33  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 1490 2309  70  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1491 4393  48  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1492 6519  23  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1493  600  30  1  1  3  4  1  1    1    1    0    0    0    0    0    0
## 1494 6784  29  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1495 3591  52  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1496 9115  64  1  3  3  1  2  2    0    1    0    1    0    0    0    1
## 1497  279  23  2  2  6  4  2  1    0    0    1    0    0    0    0    0
## 1498 6571  25  2  4  3  4  2  2    0    0    1    0    0    0    0    0
## 1499 6373  21  1  1  5  3  2  1    0    0    0    1    0    0    0    0
## 1500 5029  41  1  1  7  1  2  1    1    1    1    0    0    1    0    0
## 1501 1943  44  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1502 7340  28  2  3  2  3  2  2    0    0    0    0    0    0    0    0
## 1503 3685  53  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 1504  961  83  1  3  2  1  2  2    0    0    0    0    1    0    0    0
## 1505 3751  49  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1506 6380  55  1  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1507 6861  48  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1508 5765  32  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1509 3849  69  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 1510 4577  25  1  1  5  5  2  2    0    1    0    1    0    0    0    0
## 1511 7614  35  2  1  3  3  2  1    0    1    1    0    0    0    0    0
## 1512 4627  70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1513 1487  22  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 1514 2816  35  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1515 8980  52  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1516 3331  20  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1517 4576  47  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1518 2319  44  2  1  3  5  1  2    0    0    0    0    0    0    0    0
## 1519  278  40  2  3  5  1  1  1    0    1    0    0    0    0    0    0
## 1520 3801  26  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1521 4115  36  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1522 7283  52  2  1  5  1  1  1    0    0    1    0    0    0    0    0
## 1523 5299  35  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 1524  957  35  1  1  3  1  2  1    0    1    1    1    0    0    0    0
## 1525 4013  39  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1526 5807  40  1  1  6  1  2  1    0    1    1    0    1    0    0    0
## 1527 4281  76  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1528 2522  60  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1529  164  23  1  4  7  4  2  1    0    0    0    0    0    0    0    0
## 1530 8448  63  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1531 5115  75  2  2  1  5  2  1    0    1    0    0    0    0    0    0
## 1532 9218  23  2  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1533 5592  22  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 1534 6530  22  1  4  3  4  2  1    0    1    0    1    0    0    0    0
## 1535 2821  26  1  1  3  4  2  2    0    1    0    0    0    0    0    0
## 1536 3768  34  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1537 3647  32  1  1  4  3  1  2    0    1    0    0    0    0    0    0
## 1538 8356  46  2  1  2  2  2  2    0    1    0    1    0    0    0    0
## 1539 7624  31  1  1  4  1  2  1    0    1    0    1    0    0    0    0
## 1540 2266  24  1  4  1  5  2  1    0    1    0    0    0    0    0    0
## 1541 1142  42  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1542 2678  24  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 1543 6577  16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1544 5751  59  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1545 4129  26  1  4  6  3  2  2    0    0    0    0    0    0    0    0
## 1546 6667  70  1  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1547 1898  34  2  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1548 5999  25  1  4  6  4  2  1    0    0    1    0    0    0    0    0
## 1549 2308  39  2  3  2  2  2  2    0    0    0    1    0    0    0    0
## 1550 1856  35  2  2  3  4  1  2    0    1    0    0    0    0    0    0
## 1551 6964  48  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1552 1103  21  1  4  6  5  2  1    0    1    0    1    0    0    0    0
## 1553 2286  16  1  4  2  3  2  1    0    1    0    1    0    0    0    0
## 1554  486  23  2  4  3  5  2  1    0    0    1    0    0    0    0    0
## 1555 7254  17  1  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1556 6335  30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1557 6227  26  2  4  6  5  2  2    0    1    0    0    0    0    0    0
## 1558 6974  39  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1559 2637  36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1560 2053  63  2  3  1  1  2  2    0    1    1    0    0    0    0    0
## 1561 9387  71  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1562 4483  52  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1563 3563  32  2  3  3  5  2  1    0    1    0    0    0    0    0    0
## 1564 2715  38  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1565 2125  45  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1566 2133  42  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1567 3730  47  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1568 6250  65  2  3  1  1  1  2    0    0    0    0    0    0    0    0
## 1569 4591  25  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1570 5315  26  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1571 2030  22  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1572 4329  47  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1573 2498  35  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1574 5942  42  2  2  1  5  2  1    0    0    0    1    0    0    0    0
## 1575 4190  47  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1576 6416  50  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1577 5218  52  1  2  2  1  1  2    0    1    0    0    0    0    0    0
## 1578 7174  19  1  4  6  1  2  1    0    0    0    1    0    0    0    0
## 1579 4523  23  1  4  3  3  1  1    0    1    0    0    0    0    0    0
## 1580 9176  75  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1581 3391  39  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1582 8550  45  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1583 4444  34  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1584 4472  27  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1585 3510  34  1  1  3  5  1  1    0    1    0    1    0    0    0    0
## 1586 3185  41  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1587 3377  22  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1588 7853  38  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1589  522  32  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1590 4463  60  1  3  2  1  2  1    0    1    0    0    0    0    0    0
## 1591 5560  38  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1592 2236  28  1  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1593 7471  35  2  1  6  5  1  1    0    1    0    0    0    0    0    0
## 1594 1110  18  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 1595 3651  28  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1596 6149  20  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1597 9133  60  2  3  3  1  2  1    0    0    0    1    0    0    0    0
## 1598 5924  23  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1599 7706  35  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1600 1584  26  1  1  6  5  2  1    0    0    1    0    0    0    0    0
## 1601 5717  24  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1602 9029  39  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 1603 6332  19  2  1  2  4  2  2    0    0    1    0    0    0    0    0
## 1604 7361  19  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1605 8050  32  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1606 1460  37  2  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1607  930  37  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1608  344  53  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 1609 8214  19  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1610  186  28  2  4  3  4  2  1    1    0    0    0    0    0    0    0
## 1611 1079  25  2  4  7  4  2  1    0    1    0    0    0    0    0    0
## 1612 8092  32  2  2  3  4  2  1    0    1    0    0    0    0    0    0
## 1613 7799  45  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1614 8758  17  1  1  1  5  2  1    0    0    0    1    0    0    0    0
## 1615 1181  32  2  1  3  1  2  1    0    1    1    0    0    0    0    0
## 1616 4161  31  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 1617  484  18  2  4  5  3  2  1    0    0    0    1    0    0    0    0
## 1618 4285  17  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1619 8299  38  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1620 8456  42  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1621 4938  42  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1622 6521  30  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1623 2759  86  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1624 8442  30  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1625 8667  35  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1626 6477  32  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1627 7744  45  2  3  2  1  2  2    0    0    0    1    0    0    0    0
## 1628 4328  26  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1629 7217  38  2  1  3  1  2  2    1    1    0    0    0    0    0    0
## 1630 1751  21  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1631 9417  28  1  1  1  4  2  2    0    0    0    1    0    0    0    0
## 1632  542  35  2  1  3  5  1  1    0    0    0    0    0    0    0    0
## 1633 4907  23  2  1  5  1  1  2    0    0    0    1    0    0    0    0
## 1634 5789  29  2  1  1  3  1  2    0    1    0    1    0    0    0    0
## 1635 6128  25  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1636 3493  40  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1637 8537  25  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1638 6195  70  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1639 1766  26  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1640  962  41  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1641 1736  29  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1642 6535  25  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1643  524  62  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 1644 2080  32  2  4  3  5  2  1    0    1    0    1    0    0    0    0
## 1645 8403  26  2  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1646 2836  16  2  3  2  3  2  2    0    1    0    1    0    0    0    0
## 1647 8002  26  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1648 4950  25  2  1  6  3  1  2    0    1    0    0    0    0    0    0
## 1649 1518  23  2  1  7  3  2  1    0    0    0    0    0    0    0    0
## 1650 7947  33  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1651 4182  52  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1652 4830  27  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1653 2618  73  2  3  1  3  2  1    0    0    1    0    0    0    0    0
## 1654 2247  26  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1655 1318  20  2  4  3  4  2  1    1    1    0    0    0    0    0    0
## 1656 1381  38  1  1  5  1  2  1    1    0    0    0    0    0    0    0
## 1657  586  25  1  1  7  5  2  1    0    0    0    0    0    0    0    0
## 1658 2977  26  2  1  6  4  2  1    0    1    0    0    0    0    0    0
## 1659 5823  39  1  1  2  5  2  1    0    1    0    1    0    0    0    0
## 1660 1435  40  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1661 4027  65  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1662 6236  20  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1663  672  47  1  1  3  5  1  1    0    1    0    1    0    0    0    0
## 1664 8704  40  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1665 9327  25  1  4  6  3  1  1    0    0    0    0    0    0    0    0
## 1666 8338  31  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1667  504  37  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1668 2625  19  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 1669 9421  65  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 1670 9411  59  1  1  1  1  1  1    0    0    0    1    0    0    0    0
## 1671 1322  18  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 1672  873  30  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1673  877  23  2  4  6  3  2  2    0    1    0    0    0    0    0    0
## 1674  134  24  1  1  3  4  2  1    1    0    0    0    0    0    0    0
## 1675 4486  45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1676 2941  53  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1677  830  29  2  1  3  4  1  1    0    1    0    0    0    0    0    0
## 1678  213  26  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1679 1163  21  1  4  5  3  2  1    0    0    1    0    0    0    0    0
## 1680 9344  34  1  1  3  1  2  2    0    0    1    0    0    0    0    0
## 1681  471  36  1  1  3  4  2  1    0    0    1    1    0    0    0    0
## 1682 1323  39  2  2  7  1  2  1    0    1    0    0    0    0    0    0
## 1683 8451  18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1684 2871  41  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1685 1329  34  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 1686 6258  45  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1687 8240  42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1688 4309  40  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1689 9337  32  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1690 3422  44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1691 8914  28  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1692 7057  80  2  3  1  1  1  2    0    1    0    0    0    0    0    1
## 1693  856  57  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 1694 7898  40  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1695 8017  40  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 1696  993  30  2  1  2  3  1  1    0    1    0    1    0    0    0    0
## 1697 1456  80  2  3  1  5  2  1    0    0    0    0    0    0    0    0
## 1698 8530  70  2  3  2  1  1  2    0    1    0    0    0    0    0    0
## 1699 8249  74  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1700 8784  30  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1701 4944  45  2  3  1  4  2  2    0    1    0    1    0    0    0    0
## 1702 6405  70  1  1  1  1  1  1    0    0    0    1    0    0    0    0
## 1703 7541  40  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 1704  333  40  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1705 2653  32  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1706 8042  36  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1707 7102  39  1  1  3  4  2  1    0    1    0    1    0    0    0    0
## 1708 3986  21  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1709 7607  58  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1710 5324  24  1  1  3  3  2  1    0    0    1    1    0    0    0    0
## 1711 4645  42  2  2  5  1  2  1    0    1    0    0    0    0    0    0
## 1712 3252  40  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1713 9067  68  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1714 3290  42  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1715 1090  17  2  1  2  5  2  2    0    0    0    0    0    0    0    0
## 1716 8200  50  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1717 5653  60  2  2  1  1  2  1    0    0    0    0    0    0    0    0
## 1718 7286  38  2  2  3  4  2  1    0    1    0    0    0    0    0    0
## 1719 4991  44  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1720 3637  51  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 1721 2843  42  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1722 6296  76  1  3  2  1  2  1    0    1    0    0    0    0    0    1
## 1723 4989  45  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1724   80  43  2  4  3  1  1  1    0    1    0    0    0    0    0    0
## 1725 6777  24  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1726 7391  78  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1727 4721  45  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1728 7938  17  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 1729 6753  73  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1730 4375  47  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 1731 8897  39  2  2  3  1  2  1    0    1    1    1    0    0    0    0
## 1732 3608  43  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1733 4608  35  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1734 7364  47  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1735 5754  22  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1736 1872  18  1  4  3  5  2  1    0    0    0    0    0    0    0    0
## 1737 6401  22  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1738 5727  46  2  4  2  5  2  2    0    1    0    0    0    0    0    0
## 1739 5087  49  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1740 9444  21  1  4  5  5  2  1    0    1    0    1    0    0    0    0
## 1741 3744  38  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 1742 2430  90  1  3  1  1  1  2    0    1    0    0    0    0    0    0
## 1743 4539  17  2  1  3  5  1  2    0    1    0    0    0    0    0    0
## 1744  214  28  2  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1745 5555  43  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1746  609  19  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1747 4509  27  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1748 5950  60  2  3  2  2  2  2    0    1    0    1    0    0    0    0
## 1749 3579  52  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1750 7235  37  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1751 7795  47  2  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1752 4807  20  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 1753 1098  16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1754 2122  26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1755 2601  32  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 1756 5675  25  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1757 3474  65  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1758 8728  69  2  3  1  1  1  2    0    1    0    0    0    0    0    0
## 1759 2837  17  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1760 5778  43  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1761 5886  80  2  3  2  5  2  2    0    0    0    0    0    0    0    0
## 1762 3743  23  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1763 1316  28  2  4  7  4  2  1    0    0    0    0    0    0    0    0
## 1764 6666  47  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1765 7059  31  1  1  5  5  2  1    0    1    0    0    0    0    0    0
## 1766 4020  20  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 1767  130  78  1  3  7  1  2  1    0    0    1    0    0    0    1    0
## 1768 4953  21  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1769 7757  17  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 1770  715  34  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1771   74  28  2  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1772 7376  30  1  2  6  1  2  1    1    0    0    0    0    0    0    0
## 1773 6864  25  2  1  2  1  2  1    0    0    0    0    0    0    0    0
## 1774 8111  20  2  1  1  5  2  2    0    1    0    0    0    0    0    0
## 1775 4556  18  2  1  2  5  2  2    0    0    0    0    0    0    0    0
## 1776  824  46  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1777 8669  40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1778 4370  25  2  1  5  3  2  2    0    0    1    0    0    0    0    0
## 1779 7014  28  1  1  3  4  2  1    0    0    0    1    0    0    0    0
## 1780 5614  55  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1781 8293  20  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 1782 7963  45  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1783 1214  58  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 1784 6582  27  2  1  5  5  2  1    0    1    0    1    0    0    0    0
## 1785 1667  48  2  3  3  1  2  1    0    0    1    0    0    0    0    0
## 1786 4312  47  2  4  3  1  2  2    0    1    0    0    0    0    0    0
## 1787 4426  20  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1788 5945  45  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1789 8421  52  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1790 9266  75  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1791 9118  57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1792  680  25  2  4  6  4  2  1    1    0    1    0    0    0    0    0
## 1793  368  66  2  3  1  1  2  1    0    0    0    0    0    0    0    0
## 1794 7320  38  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1795 4313  40  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1796 4513  29  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1797 6337  45  1  1  2  4  1  2    0    0    0    1    0    0    0    0
## 1798 8972  22  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1799 1180  67  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1800 6249  35  2  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1801 6968  38  2  3  6  1  1  2    0    1    0    0    0    0    0    0
## 1802 3789  77  1  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1803 9098  77  2  3  3  3  2  2    0    1    0    0    0    0    0    0
## 1804 7798  18  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1805 2419  52  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1806 9284  34  1  4  3  3  2  1    0    1    1    0    0    0    0    0
## 1807 8404  35  2  1  6  3  2  1    1    0    0    0    0    0    0    0
## 1808 4669  22  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1809 4983  18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1810 9217  19  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 1811  256  21  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1812 2876  28  2  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1813  986  75  1  1  1  1  2  1    0    0    0    0    0    0    0    0
## 1814 4541  59  2  1  1  1  1  1    0    1    0    0    0    0    0    0
## 1815 8802  40  2  2  3  1  1  2    0    0    0    0    0    0    0    0
## 1816 4746  48  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1817 4540  60  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1818 1956  70  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1819 7707  43  1  1  6  1  2  1    0    1    1    0    0    0    0    0
## 1820 2410  24  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1821  171  37  1  1  2  4  1  1    1    1    0    1    0    0    0    0
## 1822 4559  35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1823 4446  25  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1824 3884  32  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1825 2520  50  2  3  1  1  2  1    0    0    0    0    0    0    0    1
## 1826 8636  29  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1827 3980  17  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 1828 5411  32  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 1829 1900  27  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1830 6324  38  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1831 3174  45  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1832 1292  68  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1833  166  28  2  4  7  5  2  1    0    0    0    1    0    0    0    0
## 1834 2669  26  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1835 2845  39  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1836 9215  50  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1837 4786  34  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1838 7596  18  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1839 4750  22  2  1  5  3  2  1    0    1    0    0    0    0    0    0
## 1840 6363  80  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1841 5444  35  1  1  1  5  2  1    0    1    0    1    0    0    0    0
## 1842 1434  50  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1843  113  19  2  4  3  5  2  1    0    0    1    0    0    0    0    0
## 1844 2584  37  1  2  4  1  2  1    0    1    0    1    0    0    0    0
## 1845 6431  58  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1846 6407  34  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1847  569  22  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1848 8711  35  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 1849  526  50  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1850 4242  35  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1851 8525  24  2  4  7  1  2  1    0    0    0    0    0    0    0    0
## 1852 8585  50  1  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1853 3900  55  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1854 9189  26  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1855 5171  18  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1856 4948  37  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1857 5887  60  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1858  503  71  1  1  7  1  1  1    0    0    0    0    0    0    1    0
## 1859 8205  38  2  1  6  4  1  1    0    0    0    1    0    0    0    0
## 1860 7214  45  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1861 8743  60  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1862 8024  80  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1863 9008  28  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1864 5381  43  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1865 7053  38  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1866 1745  50  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1867 4700  60  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1868 1599  20  2  1  5  3  2  2    0    0    0    1    0    0    0    0
## 1869 3791  18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1870 3227  50  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1871 3107  25  1  2  5  3  1  1    0    0    0    1    0    0    0    0
## 1872 1715  29  2  1  1  3  1  2    0    1    0    0    0    0    0    0
## 1873 6161  38  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1874 8535  38  2  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1875 3859  20  2  4  5  3  2  1    0    0    0    1    0    0    0    0
## 1876 2957  22  1  2  3  3  2  2    0    1    0    1    0    0    0    0
## 1877 6208  38  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1878  776  40  2  3  3  5  2  2    0    0    0    1    0    0    0    0
## 1879 1441  52  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1880 2859  50  1  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1881 8720  46  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1882 2728  34  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1883 2723  36  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1884 6967  43  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1885  519  32  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1886  318  36  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1887 3498  52  1  1  7  5  1  1    1    1    0    0    0    0    0    0
## 1888 3352  19  2  4  1  1  2  1    0    0    0    0    0    0    0    0
## 1889 8521  23  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1890 6693  66  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1891 8945  92  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1892 5245  36  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1893 9292  25  2  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1894 4201  80  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1895 1603  40  1  1  2  1  1  2    0    1    1    1    0    0    0    0
## 1896 3931  58  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1897   65  30  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 1898 3487  35  1  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1899 6895  43  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1900  909  29  2  1  3  5  2  1    0    1    1    0    0    0    0    0
## 1901 7327  37  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1902 5367  24  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1903 3623  22  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1904 8797  58  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1905 1660  32  1  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1906 8367  59  2  3  3  1  1  1    0    0    1    0    0    0    0    0
## 1907 3723  20  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1908  596  19  2  4  1  5  2  1    0    0    0    1    0    0    0    0
## 1909 7556  32  2  2  3  1  1  2    0    1    0    1    0    0    0    0
## 1910  116  19  2  4  5  3  2  1    0    0    0    0    0    0    0    0
## 1911 3280  59  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1912 6317  32  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1913 5891  25  1  4  3  5  2  2    0    0    0    0    0    0    0    0
## 1914 1684  28  1  4  7  3  2  1    0    0    0    0    0    0    0    0
## 1915  633  65  2  1  1  1  2  2    0    1    0    0    0    0    0    1
## 1916 5779  46  2  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1917 4447  28  2  1  6  5  1  1    0    0    0    0    0    0    0    0
## 1918 5634  65  2  3  2  1  1  1    0    1    0    0    0    0    0    0
## 1919  613  26  1  1  6  3  2  1    0    1    1    1    0    0    0    0
## 1920 3658  41  2  1  3  5  2  1    1    0    0    1    0    0    0    0
## 1921 2094  25  1  4  4  3  2  1    1    1    0    0    0    0    0    0
## 1922  354  28  1  1  7  5  2  1    0    1    0    0    0    0    0    0
## 1923  301  20  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1924 4048  22  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1925 9272  24  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1926 5358  35  2  3  2  3  2  1    0    0    0    1    0    0    0    0
## 1927 9100  70  1  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1928 7496  40  1  1  3  1  2  2    0    0    1    0    0    0    0    0
## 1929 8622  57  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1930 5103  31  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1931 7855  55  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 1932 7784  29  1  1  7  4  2  1    1    1    0    0    0    0    0    0
## 1933 8919  78  1  1  6  2  1  1    0    1    0    1    0    0    0    0
## 1934 5180  38  2  1  1  5  2  2    0    0    0    1    0    0    0    0
## 1935 5889  26  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1936 7696  36  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 1937 5342  45  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1938 3056  28  2  2  3  4  2  2    0    0    0    1    0    0    0    0
## 1939 6446  35  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1940 4981  60  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1941 7687  45  2  3  3  5  2  2    0    0    0    0    0    0    0    0
## 1942 8651  21  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1943 5899  78  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1944 6455  44  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1945 8462  42  1  1  3  1  2  1    0    1    0    0    1    0    0    0
## 1946 8581  25  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1947 6927  28  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1948 6759  24  1  1  5  5  1  1    1    0    0    0    0    0    0    0
## 1949 7515  32  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1950 7654  28  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1951 6022  21  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1952  165  21  1  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1953 4899  45  2  3  3  3  2  2    0    1    0    1    0    0    0    0
## 1954 2108  25  2  1  3  3  1  1    0    0    0    0    0    0    0    0
## 1955 9178  74  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1956 2141  36  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1957 7426  25  2  1  3  2  2  2    0    0    0    0    0    0    0    0
## 1958 7604  23  2  2  3  5  2  1    0    1    0    1    0    0    0    0
## 1959 6269  55  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 1960 2812  24  2  1  6  1  1  1    0    0    1    0    0    0    0    0
## 1961 5933  28  2  1  5  3  2  2    0    0    0    0    0    0    0    0
## 1962 2736  24  2  4  3  3  2  1    0    0    1    0    0    0    0    0
## 1963 6913  74  1  1  3  1  2  1    0    1    0    0    0    0    0    1
## 1964 9156  19  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1965 8803  30  2  2  3  1  1  2    0    0    0    0    0    0    0    0
## 1966  339  17  1  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1967 3601  32  2  4  3  4  2  2    0    1    0    0    0    0    0    0
## 1968 4906  35  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1969 4067  35  1  4  5  1  2  1    0    0    0    1    0    0    0    0
## 1970 7819  70  1  2  1  1  2  1    0    0    0    0    0    0    0    0
## 1971 5226  19  2  4  2  3  2  1    0    0    0    0    0    0    0    0
## 1972 3472  24  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1973 1582  33  2  1  3  3  1  2    0    0    1    0    0    1    0    0
## 1974 5323  57  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1975 6438  20  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1976   18  41  2  1  2  5  2  1    0    0    0    0    0    0    0    0
## 1977 7943  38  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1978 7650  19  1  4  5  6  2  2    0    0    0    0    0    0    0    0
## 1979 3127  47  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1980 3061  29  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1981 4676  32  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 1982 6879  52  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1983 5354  31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1984 5800  70  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1985 2241  16  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1986 3135  34  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 1987 4527  25  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1988 3303  45  1  1  3  1  1  2    0    0    0    1    0    0    0    0
## 1989 4389  58  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1990 7704  30  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1991 5912  24  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1992 9241  57  2  2  3  4  1  1    0    0    0    1    0    0    0    0
## 1993 6977  35  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1994 6775  18  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1995  748  35  1  1  7  4  1  1    1    0    0    0    0    0    0    0
## 1996 5681  30  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 1997 4703  66  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 1998 8236  28  2  1  2  5  2  1    0    0    1    0    0    0    0    0
## 1999 5059  25  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2000 9263  30  2  1  2  4  2  1    0    0    0    0    0    1    0    0
## 2001 8871  31  1  1  3  3  1  2    0    1    0    0    0    0    0    0
## 2002 5998  52  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2003 8774  49  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2004 1128  35  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 2005 1592  26  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2006 1011  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 2007  742  35  2  3  6  1  2  1    0    1    0    0    0    0    0    0
## 2008 2088  43  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 2009 2253  25  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2010 6103  41  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2011 9258  28  2  1  3  5  2  1    0    0    1    0    0    0    0    0
## 2012 6871  43  2  3  3  3  2  1    0    0    0    1    0    0    0    0
## 2013 5246  27  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 2014 6808  36  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 2015 6326  46  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 2016 4159  37  2  2  3  2  2  1    0    1    0    0    0    0    0    0
## 2017 2906  34  1  1  1  1  2  2    1    0    0    0    0    0    0    0
## 2018 5267  36  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 2019 6539  23  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 2020 9319  20  1  4  3  1  2  2    0    0    0    1    0    0    0    0
## 2021 5242  39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2022 5421  40  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 2023 2468  31  2  1  7  5  2  1    1    0    0    1    0    0    0    0
## 2024   38  35  1  1  3  3  1  1    0    1    0    0    0    0    0    0
## 2025 6930  48  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 2026 3646  26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2027 1694  24  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2028 4218  22  2  1  5  3  2  2    0    0    0    0    0    0    0    0
## 2029 8423  26  1  4  3  3  2  2    0    1    0    1    0    0    0    0
## 2030 5260  22  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2031  146  60  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 2032 3405  35  2  2  3  4  1  1    0    0    0    1    0    0    0    0
## 2033 4279  47  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2034 7683  22  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2035  399  16  2  4  3  4  2  2    0    0    0    0    0    0    0    0
## 2036 7409  29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 2037 5355  38  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 2038 1437  30  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 2039 4574  33  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2040  263  28  2  1  6  4  2  1    0    1    0    1    0    0    0    0
## 2041 5197  25  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 2042 5606  27  2  1  1  5  1  2    0    1    0    0    0    0    0    0
## 2043   41  70  1  1  2  1  1  1    0    0    0    0    1    0    0    0
## 2044 5799  51  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2045 3259  21  2  4  6  3  2  1    0    1    0    0    0    0    0    0
## 2046  403  35  1  1  6  1  1  1    0    0    1    0    0    0    0    0
## 2047 5088  19  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 2048  308  23  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 2049 5239  73  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 2050 8063  45  2  2  3  1  2  2    0    1    0    0    0    0    0    1
## 2051 4812  63  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2052  476  56  1  3  3  4  2  1    1    0    0    0    0    0    0    0
## 2053 7824  75  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 2054 5910  18  1  4  5  3  2  1    0    1    0    0    0    0    0    0
## 2055 9081  55  1  1  3  2  2  1    0    1    0    1    0    0    0    0
## 2056 4998  32  2  4  6  4  2  1    0    0    0    1    0    0    0    0
## 2057 3451  20  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 2058 4111  19  2  1  5  2  2  1    0    1    1    0    0    0    0    0
## 2059 5478  73  2  3  3  1  2  1    0    0    0    0    0    0    1    0
## 2060 8133  39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2061 2609  62  1  1  1  4  2  1    0    0    1    0    0    0    0    0
## 2062  943  59  1  2  3  1  1  2    0    1    0    0    0    0    0    0
## 2063 2121  29  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 2064 5583  24  1  1  5  3  2  1    0    1    0    1    0    0    0    0
## 2065  109  34  2  1  7  3  1  1    0    1    0    1    1    0    0    0
## 2066 3268  20  2  4  5  4  2  1    0    1    0    0    0    0    0    0
## 2067 2591  65  2  3  2  3  2  2    0    0    0    0    0    0    0    1
## 2068 6068  20  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 2069 9318  37  2  2  3  1  2  1    0    0    1    0    0    0    0    0
## 2070 7191  31  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 2071 3865  30  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2072 9012  47  1  2  3  1  2  2    0    1    1    0    0    0    0    0
## 2073 4188  38  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 2074 4054  65  2  2  2  1  2  2    0    1    0    1    0    0    0    0
## 2075 2304  32  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 2076 4215  67  1  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2077 2257  42  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2078 4098  35  1  1  7  1  2  1    1    1    0    0    0    0    0    0
## 2079 2224  57  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 2080 3036  17  2  4  2  3  2  1    0    1    1    0    0    0    0    0
## 2081 8663  20  2  4  6  1  2  2    0    1    0    1    0    0    0    0
## 2082 6428  21  2  1  5  2  2  2    0    0    0    0    0    0    0    0
## 2083 3349  24  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 2084 3100  27  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 2085 4643  60  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 2086 1685  54  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2087 7137  24  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2088 8145  19  2  4  6  4  2  2    0    0    0    0    0    0    0    0
## 2089 3596  40  2  2  3  5  2  1    0    0    0    1    0    0    0    0
## 2090 7297  24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2091 7775  32  2  2  3  3  2  1    0    0    1    0    0    0    0    0
## 2092  642  40  1  1  1  4  1  1    0    0    1    0    0    0    0    0
## 2093 5075  66  1  1  1  2  1  1    0    1    0    0    0    0    0    0
## 2094 7790  64  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 2095 3302  36  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2096 3089  17  1  4  2  1  2  2    0    0    0    0    0    0    0    0
## 2097 6427  31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2098 8077  56  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2099 6102  19  1  4  3  3  2  2    0    0    0    1    0    0    0    0
## 2100 3282  47  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 2101 6054  84  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2102 4864  25  1  1  3  4  2  2    0    1    0    1    0    0    0    0
## 2103 7770  46  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 2104 1360  38  1  1  6  4  2  1    0    1    0    0    0    0    0    0
## 2105 1924  36  1  1  3  5  1  1    0    0    1    0    0    0    0    0
## 2106 5752  27  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2107 4789  65  2  3  2  1  2  1    0    1    0    0    0    0    0    0
## 2108 4516  48  1  1  3  1  2  2    0    1    1    0    0    0    0    0
## 2109 7923  35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2110 7895  88  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2111 4386  50  1  1  6  1  1  1    1    0    0    0    0    0    0    0
## 2112 6454  59  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2113 3095  54  2  3  3  1  2  2    0    1    0    1    0    0    0    1
## 2114 4972  18  2  1  2  3  1  1    0    0    0    0    0    0    0    0
## 2115 4835  44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2116  990  53  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2117 2076  26  1  1  3  2  2  1    0    1    0    1    0    0    0    0
## 2118 5973  20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2119 1001  36  2  1  6  1  2  1    1    0    1    0    0    0    0    0
## 2120 3364  23  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 2121 1273  49  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2122 6400  45  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2123 7095  28  2  2  6  5  2  2    0    1    0    1    0    0    0    0
## 2124 8136  16  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 2125 7085  38  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2126 1714  31  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 2127 4573  60  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2128 6045  43  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 2129 5116  22  2  1  5  4  2  1    0    1    0    1    0    0    0    0
## 2130 6203  70  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 2131 6027  23  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 2132 1717  30  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 2133 7463  50  2  1  2  5  2  2    0    0    0    1    0    0    0    0
## 2134 2779  21  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2135 5351  37  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2136 6043  20  1  4  3  3  2  1    0    0    1    1    0    0    0    0
## 2137 4230  20  2  2  2  3  2  2    0    1    0    1    0    0    0    0
## 2138 4555  22  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2139 4837  51  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2140 9414  55  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 2141 2293  23  2  1  6  2  2  1    0    1    0    0    0    0    0    0
## 2142  858  20  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2143 7241  32  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2144 1230  34  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2145 2089  38  2  3  3  1  1  1    0    1    0    0    0    0    0    0
## 2146 1562  28  1  4  7  5  2  1    1    0    0    0    0    0    0    0
## 2147 9281  27  1  2  5  5  2  1    0    1    0    0    0    0    0    0
## 2148  323  25  1  4  6  5  2  1    0    1    0    1    0    0    0    0
## 2149 6850  21  1  4  3  4  2  1    0    0    1    0    0    0    0    0
## 2150 1998  40  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2151 3581  64  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2152 1558  50  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2153 7161  26  2  4  1  5  2  1    0    1    0    1    0    0    0    0
## 2154 9366  20  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2155  119  64  2  1  7  5  2  1    0    1    0    0    0    0    1    0
## 2156 8114  28  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 2157 2665  35  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2158 2574  28  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2159 1427  27  2  3  5  3  2  1    0    0    1    0    0    0    0    0
## 2160  669  47  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 2161 8851  58  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2162 1420  25  1  4  7  5  2  1    0    1    0    0    0    0    0    0
## 2163 1482  21  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 2164 1408  26  2  1  6  4  1  1    1    0    0    0    0    0    0    0
## 2165 7897  62  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 2166 4135  25  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2167  413  28  2  4  6  4  1  1    0    1    0    0    0    0    0    0
## 2168 3548  25  2  2  5  4  2  1    0    0    1    0    0    0    0    0
## 2169 6724  59  1  1  2  1  1  2    0    0    0    1    0    0    0    0
## 2170 5089  58  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 2171 6594  41  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 2172 5837  35  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2173  326  21  1  4  6  5  2  1    0    0    0    0    0    0    0    0
## 2174 2782  20  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 2175 7228  33  1  1  6  4  1  1    1    0    0    0    0    0    0    0
## 2176  816  60  1  2  7  5  1  1    0    1    0    0    0    0    0    0
## 2177 8490  94  1  3  3  3  2  2    0    0    0    0    0    0    0    0
## 2178 7641  32  2  1  5  5  2  1    0    1    0    0    0    0    0    0
## 2179 4256  38  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2180 5894  28  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2181 2191  52  2  3  1  5  2  1    0    1    0    0    0    0    0    0
## 2182 7759  34  2  2  1  1  2  1    0    1    0    0    0    0    0    0
## 2183 2986  29  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 2184 6286  52  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2185 5220  56  1  3  1  1  2  2    0    1    0    1    0    0    0    0
## 2186 6013  19  2  1  3  3  1  2    0    1    0    1    0    0    0    0
## 2187 2265  46  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 2188  730  34  1  1  3  5  1  1    1    0    0    0    0    0    0    0
## 2189 7581  28  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 2190 2015  22  1  4  3  1  2  1    0    0    0    1    0    0    0    0
## 2191 4690  32  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 2192  111  35  2  2  3  4  2  1    0    1    0    0    0    0    0    0
## 2193 5665  48  1  3  3  1  2  2    0    1    0    0    0    0    0    0
## 2194 4415  35  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 2195 1986  40  1  2  3  1  2  2    0    0    0    1    0    0    0    0
## 2196 5016  48  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 2197 7652  54  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2198 7536  42  2  3  6  5  2  1    1    0    0    0    0    0    0    0
## 2199 4317  20  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 2200  449  54  1  1  4  1  2  1    1    0    0    0    0    0    0    0
## 2201 1216  56  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 2202 2336  59  2  2  7  5  2  1    1    1    0    0    0    0    0    0
## 2203   56  66  2  3  1  1  2  1    0    0    0    0    1    0    0    0
## 2204 1803  46  1  4  3  1  2  2    0    0    0    1    0    0    0    0
## 2205  779  25  2  1  5  5  2  1    0    0    0    0    0    0    0    0
## 2206 6207  35  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2207 6056  34  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 2208 4229  25  2  1  2  4  2  2    0    1    0    1    0    0    0    0
## 2209 1116  33  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2210 5392  35  2  2  2  4  2  1    0    0    0    1    0    0    0    0
## 2211 3694  29  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2212 6111  18  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 2213 9164  39  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 2214 6890  16  2  4  5  3  2  2    0    0    0    1    0    0    0    0
## 2215 7608  35  1  4  1  1  2  2    0    1    0    1    0    0    0    0
## 2216 5997  35  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2217 7242  46  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 2218 4748  26  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2219 6034  20  1  4  3  1  2  1    0    0    0    1    0    0    0    0
## 2220  329  40  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2221 2215  35  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2222 8956  35  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 2223  536  24  1  4  6  3  1  1    0    0    0    1    0    0    0    0
## 2224 8591  24  2  1  5  4  1  1    0    0    0    0    0    0    0    0
## 2225 3933  16  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2226 6083  39  1  1  3  1  2  1    0    1    0    1    0    1    0    0
## 2227 5205  21  1  1  1  5  1  1    0    0    0    1    0    0    0    0
## 2228 1825  20  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 2229 1361  40  1  4  7  5  2  1    0    1    0    0    0    0    0    0
## 2230 4898  38  1  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2231 6158  63  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 2232 3125  18  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 2233 7949  22  2  1  5  4  2  1    0    0    0    1    0    0    0    0
## 2234 3203  31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2235 9286  57  2  2  3  4  1  1    0    1    0    1    0    0    0    0
## 2236 3067  28  1  4  5  5  1  1    0    1    0    0    0    0    0    0
## 2237 6684  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 2238 1129  76  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 2239 8250  76  1  2  1  1  2  2    0    0    0    0    0    0    0    0
## 2240 3576  29  1  1  6  1  2  1    0    0    0    1    0    0    0    0
## 2241 7404  40  2  3  2  2  2  2    0    1    0    0    0    0    0    0
## 2242 1405  50  2  1  5  3  2  1    0    0    1    0    0    0    0    0
## 2243 6991  53  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 2244 8273  44  2  1  3  1  2  1    0    1    0    0    1    0    0    0
## 2245  681  50  2  2  1  1  2  2    0    0    0    0    0    0    0    0
## 2246 2960  75  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 2247  548  45  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 2248 8551  80  1  2  3  5  2  2    0    0    0    0    0    0    0    0
## 2249 3062  60  2  3  6  5  2  1    0    0    1    0    0    0    0    0
## 2250 4275  27  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 2251 8540  25  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2252 6122  22  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 2253  202  19  2  4  6  5  2  2    1    0    0    0    0    0    0    0
## 2254 1988  28  2  3  2  3  2  1    0    0    1    0    0    0    0    0
## 2255  627  50  1  1  6  5  1  1    1    0    0    0    0    0    0    0
## 2256 4031  39  2  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2257  562  37  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 2258 8917  42  2  4  6  4  1  1    1    0    0    0    0    0    0    0
## 2259 7314  18  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 2260 1424  23  2  4  3  5  2  1    0    0    0    0    0    0    0    0
## 2261 9090  30  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2262 6216  29  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2263 6112  74  1  1  3  2  2  1    0    1    0    0    0    0    0    0
## 2264 6580  42  2  2  2  1  1  1    0    1    0    1    0    0    0    0
## 2265  812  48  2  3  1  4  2  1    0    0    0    0    0    0    0    0
## 2266 8791  26  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2267  205  44  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 2268 5844  30  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 2269 8725  60  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 2270 6940  81  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2271 2800  60  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2272  607  33  2  2  1  3  2  1    0    0    0    1    0    0    0    0
## 2273 2287  30  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 2274 4504  24  1  4  3  5  2  1    0    1    0    1    0    0    0    0
## 2275 2496  34  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2276 4840  21  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 2277  248  43  2  2  3  1  2  2    0    0    0    0    1    0    0    0
## 2278 2097  46  2  3  2  4  2  1    0    1    0    0    0    0    0    0
## 2279 6537  82  2  3  1  3  2  2    0    0    0    0    0    0    0    0
## 2280 1774  38  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 2281 1467  31  2  1  1  3  2  2    0    0    0    1    0    0    0    0
## 2282 8119  32  2  2  1  5  2  1    0    1    0    0    0    0    0    0
## 2283  223  23  2  2  1  2  2  1    0    0    1    0    0    0    0    0
## 2284 4022  76  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2285 1072  16  2  4  2  3  2  2    0    0    0    1    0    0    0    0
## 2286 3629  60  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 2287  570  16  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 2288 5310  47  2  2  2  3  2  1    0    0    0    1    0    0    0    0
## 2289 3162  29  1  2  3  1  2  1    1    0    0    1    0    0    0    0
## 2290   71  24  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 2291 2558  21  2  4  3  5  2  2    0    1    0    1    0    0    0    0
## 2292 1746  62  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 2293 7634  39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2294 7572  47  2  1  6  3  2  1    0    1    0    1    0    0    0    0
## 2295 2918  30  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2296 7814  34  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2297 5295  41  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2298 3917  40  2  1  1  1  1  2    0    0    0    0    1    0    0    0
## 2299 6130  19  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 2300 9409  75  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2301 7569  65  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 2302 3713  17  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 2303 6747  36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2304 3638  22  1  1  5  5  2  1    0    1    0    1    0    0    0    0
## 2305 1003  20  1  4  6  5  2  1    0    0    0    0    0    0    0    0
## 2306 2457  43  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2307 5440  18  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 2308 4008  57  2  3  1  1  1  2    0    1    0    1    0    0    0    0
## 2309 6429  23  2  1  5  2  2  2    0    1    0    1    0    0    0    0
## 2310 5332  19  2  4  6  3  2  2    0    1    0    0    0    0    0    0
## 2311 4308  42  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2312 8147  18  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 2313 3426  19  1  4  5  3  2  1    0    1    0    1    0    0    0    0
## 2314 6285  33  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 2315 4335  45  2  1  1  3  2  2    0    1    0    1    0    0    0    1
## 2316 7925  38  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2317 7689  25  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2318 7830  58  2  4  6  5  1  1    1    0    0    0    0    0    0    0
## 2319 2369  30  1  1  6  1  2  1    0    0    0    1    0    0    0    0
## 2320 4314 100  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2321  665  61  2  3  3  1  1  1    0    0    0    0    0    0    0    0
## 2322 3516  40  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2323 9057  31  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 2324 2693  25  1  1  3  1  2  2    0    1    1    0    0    0    0    0
## 2325 4605  31  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2326  802  22  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 2327  707  38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2328 3549  36  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2329 8582  55  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2330 4470  74  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2331 9395  39  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 2332 8695  24  2  1  6  5  2  2    0    1    0    1    0    0    0    0
## 2333 3017  27  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 2334 9160  21  2  4  5  3  2  1    0    1    0    0    0    0    0    0
## 2335 5126  36  2  2  2  1  2  2    0    0    0    0    0    0    0    0
## 2336 4767  47  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 2337 7901  26  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 2338 1827  25  2  1  6  1  2  2    0    1    0    0    0    0    0    0
## 2339 9001  45  2  1  1  1  2  2    0    0    0    1    0    0    0    0
## 2340 2295  45  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2341  547  56  2  3  5  1  2  1    0    0    0    0    0    0    0    0
## 2342 8539  62  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2343 5033  69  2  3  1  5  2  2    0    0    0    0    0    0    0    0
## 2344 7231  26  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 2345 2858  36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2346 8857  31  2  1  2  4  1  2    0    0    0    0    0    0    0    0
## 2347 6810  58  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 2348  282  52  2  3  1  1  1  1    0    1    0    0    1    0    0    0
## 2349 2258  64  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 2350  247  34  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 2351 6404  42  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2352 4814  50  2  2  3  1  2  2    0    0    0    1    0    0    0    0
## 2353 7237  26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2354 6243  21  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2355 4394  34  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 2356 5874  40  2  1  3  1  1  2    0    1    0    1    0    0    0    0
## 2357 4438  46  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 2358  818  29  1  4  7  5  1  1    1    1    0    0    0    0    0    0
## 2359 8051  22  2  4  6  3  2  1    0    0    0    1    0    0    0    0
## 2360 9207  35  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2361 2178  40  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2362 4550  19  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 2363 3588  65  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 2364 5719  48  2  1  3  2  1  2    0    0    0    1    0    0    0    0
## 2365 1749  25  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2366  421  70  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 2367 5749  34  2  3  3  1  2  1    0    1    0    1    0    0    0    1
## 2368 1463  38  1  1  2  1  2  1    1    1    0    0    0    0    0    0
## 2369 4549  36  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2370   36  26  2  1  6  4  2  1    0    0    0    0    0    0    0    0
## 2371 8861  34  1  1  6  2  2  1    0    0    1    0    0    0    0    0
## 2372 5559  41  2  1  1  5  1  1    0    1    0    1    0    0    0    0
## 2373 1792  68  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 2374  488  33  2  1  7  4  1  1    1    0    0    0    0    0    0    0
## 2375 1012  23  2  1  6  4  2  1    0    0    0    0    0    0    0    0
## 2376  521  22  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 2377 3904  27  2  1  7  4  2  1    1    1    0    0    0    0    0    0
## 2378 9259  62  2  3  7  1  1  1    0    0    0    0    0    0    1    0
## 2379 9229  39  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2380 5369  23  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 2381 6543  48  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 2382 4401  25  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2383 2551  29  1  1  6  1  2  1    0    1    1    0    0    0    0    0
## 2384 8129  25  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 2385 1823  40  2  2  3  4  1  1    0    1    0    0    0    0    0    0
## 2386 4926  18  1  4  3  5  2  2    0    0    0    0    0    0    0    0
## 2387  176  29  2  1  7  5  2  1    1    0    0    0    0    0    0    0
## 2388 2260  22  2  1  6  3  2  1    0    0    0    0    0    0    0    0
## 2389 7677  55  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 2390 9204  52  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2391 8056  76  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 2392 8139  37  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 2393 9280  27  1  1  6  3  2  1    1    0    0    0    0    0    0    0
## 2394 3749  53  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 2395  735  24  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 2396 4014  50  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 2397 7528  63  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 2398 3065  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 2399 4292  51  2  2  1  1  1  2    0    1    0    0    0    0    0    0
## 2400 7176  33  2  1  5  1  2  2    0    0    0    0    0    0    0    0
## 2401  228  26  2  4  6  5  1  1    1    0    0    0    0    0    0    0
## 2402 8409  54  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2403 3826  30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2404 8322  90  2  3  1  5  2  2    0    0    0    0    0    0    0    0
## 2405 8685  24  2  1  7  5  2  1    0    0    0    0    0    0    0    0
## 2406 5622  60  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 2407 7560  38  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2408 6550  67  2  1  2  1  2  2    0    0    0    0    0    0    0    0
## 2409 7197  30  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 2410 3397  51  2  1  3  1  1  1    0    0    0    1    0    0    0    0
## 2411 7107  32  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2412  889  41  2  3  2  3  2  1    0    0    1    0    0    0    0    0
## 2413 9273  37  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 2414 7510  35  2  3  3  1  1  1    0    1    0    1    0    0    0    0
## 2415 9047  45  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 2416 7700  58  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2417 7313  48  1  4  1  1  2  2    0    1    0    0    0    0    0    0
## 2418  628  28  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2419 8281  59  2  3  2  1  2  1    0    1    0    0    0    0    0    0
## 2420 5436  29  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2421 5346  19  2  1  2  5  2  2    0    0    0    1    0    0    0    0
## 2422 3340  29  1  1  1  3  2  1    0    1    0    0    0    0    0    0
## 2423 3434  23  1  4  7  3  2  1    0    1    0    0    0    0    0    0
## 2424 3396  60  1  2  3  2  1  1    0    0    0    1    0    0    0    0
## 2425 3755  30  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2426 7324  65  1  1  5  1  2  2    0    1    0    0    0    0    0    0
## 2427  940  18  1  4  6  3  1  2    0    0    0    1    0    0    0    0
## 2428  761  31  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2429 8452  21  1  4  3  3  2  2    0    1    0    1    0    0    0    0
## 2430 1466  16  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 2431 2073  44  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 2432 2856  30  2  1  2  4  2  2    0    1    0    1    0    0    0    0
## 2433 2078  66  2  1  3  3  2  1    0    0    0    0    0    0    1    0
## 2434  292  36  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 2435 5508  19  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 2436 1313  35  2  3  2  1  2  2    0    0    0    1    0    0    0    1
## 2437 4125  34  1  1  2  1  1  2    0    0    0    1    0    0    0    0
## 2438 7807  29  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 2439 2453  23  1  1  3  1  2  1    0    0    0    0    0    0    0    0
## 2440 1600  17  1  4  2  5  2  2    0    0    0    1    0    0    0    0
## 2441 5938  30  1  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2442 4240  39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2443 8712  56  1  1  3  1  1  1    1    0    0    0    0    0    0    0
## 2444 7172  17  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 2445  601  45  2  4  5  5  2  1    0    0    0    1    0    0    0    0
## 2446 7189  45  1  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2447 4742  45  1  1  4  1  2  1    0    1    0    1    0    0    0    0
## 2448 6574  30  1  4  5  3  2  1    1    1    0    1    0    0    0    0
## 2449 5923  25  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 2450 5721  58  1  1  5  3  2  1    0    1    0    0    0    0    0    0
## 2451  616  37  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2452 4612  30  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2453 7141  21  1  4  5  3  2  1    0    1    0    0    0    0    0    0
## 2454 7260  76  2  3  1  1  2  1    0    1    0    1    0    0    0    0
## 2455 7406  30  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2456 7007  33  1  4  3  3  2  2    0    0    0    0    0    0    0    0
## 2457 9362  23  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 2458 7022  42  2  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2459 5353  23  2  4  6  3  2  1    0    1    1    1    1    0    0    0
## 2460 8979  26  2  2  1  5  2  2    0    0    0    1    0    0    0    0
## 2461 4169  38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2462  443  76  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 2463 8153  28  2  2  1  1  2  2    0    0    0    1    0    0    0    0
## 2464  466  41  1  1  3  2  2  1    0    0    1    0    0    0    0    0
## 2465 5064  16  1  4  2  4  2  2    0    0    0    1    0    0    0    0
## 2466 4234  23  1  4  3  4  2  1    0    0    0    1    0    0    0    0
## 2467 1126  66  2  3  3  1  1  1    0    1    0    1    0    0    0    0
## 2468 6389  78  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2469 4518  36  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 2470 2562  29  1  1  5  1  2  1    0    1    0    1    0    0    0    0
## 2471  667  45  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2472 1186  25  2  1  5  1  1  1    0    1    0    0    0    0    0    0
## 2473 3821  26  2  4  1  5  2  1    1    1    0    0    0    0    0    0
## 2474 7797  64  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2475 6231  33  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 2476 6457  39  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 2477 3262  34  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2478 5784  64  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2479 4879  22  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2480 3891  63  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2481 5876  39  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 2482 9034  22  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2483 2254  32  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 2484 6194  35  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 2485 1113  33  2  1  2  5  2  2    0    0    0    0    0    0    0    0
## 2486 6624  57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2487  636  71  1  1  8  1  2  1    0    0    0    0    0    0    1    0
## 2488 8223  32  1  1  1  1  2  1    0    1    1    0    0    0    0    0
## 2489 2744  21  1  4  3  3  2  1    0    0    0    0    0    0    0    0
## 2490 6273  28  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2491 4913  23  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 2492 1400  58  2  3  3  1  2  2    0    0    0    1    0    0    0    0
## 2493 6963  62  2  3  1  1  1  2    0    0    0    0    0    0    0    0
## 2494 4515  27  2  4  6  1  2  1    0    1    0    0    0    0    0    0
## 2495 4699  52  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 2496 7264  85  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 2497 2154  57  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 2498  195  29  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 2499 6421  34  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 2500 7937  28  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2501 5633  32  2  2  3  1  1  1    0    0    0    1    0    0    0    0
## 2502 7540  30  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 2503 1551  25  1  4  2  3  2  2    0    0    0    1    0    0    0    0
## 2504 6170  35  2  1  2  1  2  2    0    0    0    0    0    0    0    0
## 2505 9400  75  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 2506 2664  31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2507 9104  65  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2508 3722  58  2  2  1  5  2  2    0    0    0    1    0    0    0    0
## 2509  120  22  1  4  6  5  2  1    0    0    0    0    0    0    0    0
## 2510 4210  35  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 2511 7936  74  1  1  6  4  1  1    0    0    0    0    0    0    0    0
## 2512 6495  39  2  4  3  1  2  1    0    1    0    0    0    0    0    0
## 2513 6608  46  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 2514 6834  99  2  3  1  1  2  1    0    0    0    0    0    0    0    0
## 2515  470  53  1  3  3  4  1  1    0    0    0    1    0    0    0    0
## 2516 4355  28  2  1  2  2  2  1    0    0    0    0    0    0    0    0
## 2517 9180  49  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2518 8310  41  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2519 2044  29  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 2520 2315  43  1  4  2  5  2  2    0    1    0    1    0    0    0    0
## 2521 2034  62  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2522 7617  20  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 2523 2849  56  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2524 1224  16  1  4  3  1  2  2    0    0    0    1    0    0    0    0
## 2525 9165  40  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2526 4649  35  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 2527 5773  61  2  3  3  1  1  1    0    1    0    0    0    0    0    0
## 2528 4802  29  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 2529 1691  32  1  1  3  2  1  1    0    0    0    1    0    0    0    0
## 2530 7142  48  1  1  5  1  1  1    1    0    0    0    0    0    0    0
## 2531   87  45  1  1  6  1  2  1    0    0    0    1    0    0    0    0
## 2532 8689  21  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 2533 7774  21  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 2534 5398  28  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 2535 5702  48  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2536   20  45  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 2537 5740  45  1  2  1  1  2  2    0    1    0    1    0    0    0    0
## 2538   29  55  2  3  3  1  2  1    0    0    0    0    0    0    0    0
## 2539  493  34  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2540 1630  31  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2541 4481  39  1  1  7  1  2  1    1    0    0    0    0    0    0    0
## 2542 1430  40  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2543 3019  30  2  1  5  3  2  1    0    1    0    0    0    0    0    0
## 2544 6078  16  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 2545 2627  36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2546  149  65  1  1  3  4  2  1    0    0    0    1    0    0    0    0
## 2547 5687  40  2  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2548 1801  35  1  1  2  2  2  2    0    1    1    0    0    0    0    0
## 2549 1866  46  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2550 1530  24  1  4  5  4  2  1    0    1    0    0    0    0    0    0
## 2551 9212  64  2  3  3  1  1  1    0    1    1    0    0    0    0    0
## 2552 3115  25  1  4  3  3  2  1    0    0    1    0    0    0    0    0
## 2553 5814  55  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2554 2639  55  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 2555 2566  48  1  1  2  5  2  2    0    0    0    1    0    0    0    0
## 2556 4365  47  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2557 5339  16  2  4  5  4  2  2    0    0    0    0    0    0    0    0
## 2558 4040  36  1  1  3  1  2  1    0    1    1    1    0    0    0    0
## 2559 7981  77  1  1  3  1  2  1    0    1    0    0    0    0    0    1
## 2560  725  29  2  2  1  4  2  1    0    0    0    1    0    0    0    0
## 2561 5290  21  1  4  6  1  2  1    0    1    0    0    0    0    0    0
## 2562 8318  51  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 2563 2351  19  2  1  3  4  2  2    0    1    0    0    0    0    0    0
## 2564 8555  32  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2565 7613  17  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 2566 2660  20  2  4  1  1  2  1    0    1    0    1    0    0    0    0
## 2567 6175  23  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 2568 6154  53  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2569 3995  75  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 2570 4752  56  2  3  1  3  2  2    0    0    0    0    0    0    0    0
## 2571  822  23  1  4  1  3  2  2    0    1    0    0    0    0    0    0
## 2572  255  20  1  4  6  3  2  1    1    0    0    0    0    0    0    0
## 2573 4620  40  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2574 4238  18  2  4  3  5  2  1    0    1    0    1    0    0    0    0
## 2575 1608  45  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 2576 3440  16  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 2577 6239  31  2  1  1  5  1  1    0    1    0    1    0    0    0    0
## 2578 4930  45  1  1  2  4  1  1    0    1    0    0    0    0    0    0
## 2579  427  40  1  1  3  5  1  1    1    0    0    0    0    0    0    0
## 2580  992  43  2  2  5  1  2  1    0    0    1    0    0    0    0    0
## 2581 4069  48  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2582 7106  23  2  1  6  3  2  2    0    1    0    1    0    0    0    0
## 2583 8549  52  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 2584  989  17  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 2585 2528  33  1  1  6  5  1  1    0    1    0    1    0    0    0    0
## 2586 3021  65  2  1  3  1  2  1    0    0    1    0    0    0    0    0
## 2587 7437  33  2  1  3  2  2  1    0    1    0    1    0    0    0    0
## 2588 5610  22  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 2589 7976  80  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 2590 7520  35  2  1  1  1  2  1    0    0    0    0    0    0    0    0
## 2591  572  65  1  1  3  1  2  1    1    0    0    0    0    0    0    0
## 2592 7944  52  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 2593 4924  27  2  1  5  3  2  1    0    1    0    0    0    0    0    0
## 2594 6452  43  1  1  2  2  2  1    0    1    1    0    0    0    0    0
## 2595 8796  45  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2596 1859  52  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2597 6953  55  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2598 4132  25  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 2599 6178  41  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2600 2753  27  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 2601 1841  39  1  1  7  1  1  1    0    1    0    0    0    0    0    0
## 2602 7108  35  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 2603 8679  23  2  1  5  5  1  1    0    1    0    0    0    0    0    0
## 2604  294  27  2  1  6  2  2  1    0    0    0    0    0    0    0    0
## 2605  419  20  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 2606 6891  26  1  1  5  3  2  1    0    1    0    1    0    0    0    0
## 2607 5895  34  1  1  1  5  2  2    0    1    0    0    0    0    0    0
## 2608 4366  35  2  1  3  3  1  2    0    1    0    1    0    0    0    0
## 2609 6590  33  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 2610 8657  17  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 2611 8059  40  1  1  3  1  2  1    0    1    0    0    1    0    0    0
## 2612 1842  50  2  1  1  2  2  2    0    0    0    1    0    0    0    0
## 2613  405  36  1  1  5  1  2  1    0    1    0    1    0    0    0    0
## 2614 7629  55  2  2  2  1  2  2    0    1    0    0    0    0    0    1
## 2615 2252  46  2  1  3  1  2  1    0    0    1    0    0    0    0    0
## 2616 1652  34  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 2617 6478  29  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2618 8513  22  1  4  5  1  2  1    0    1    0    1    0    0    0    0
## 2619 1231  28  2  4  6  3  2  1    1    0    0    0    0    0    0    0
## 2620 6070  64  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 2621 8242  22  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 2622 4797  25  1  2  3  3  2  1    0    1    0    1    0    0    0    0
## 2623 9313  75  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2624 5788  29  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 2625  500  24  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 2626 6420  17  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 2627 1855  48  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2628  981  30  2  1  6  4  2  1    0    0    0    0    0    0    0    0
## 2629 3395  73  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 2630 7049  50  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 2631 6793  22  2  1  3  1  2  2    0    1    0    0    0    0    0    0
##      Q8_9 Q8_10 Q8_11 Q9 Q10 Q11 Q12 Q13 Q14 Q15 Q16 Q17 Q18 Q19
## 1       1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2       0     0     0  1  -1  -1   1   4   1   5   4   4   1   4
## 3       1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 4       0     0     0 -1  -1  -1   1   2   2  -1   4  -1   1   4
## 5       0     0     0 -1   1  -1   2  -1   1   1   1  -1   1   4
## 6       0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   1
## 7       0     0     0 -1   1  -1   1   5   1   3   1  -1   1   2
## 8       0     0     0 -1  -1   1   1   4   1   4   5   1   2   2
## 9       0     0     0 -1   1  -1   1   5   1   6   5  -1   1   1
## 10      1     0     0 -1   1  -1   1   3   1   4   5  -1   1   4
## 11      0     1     0 -1  -1  -1   1   6   1   6   1  -1   1   1
## 12      0     0     0 -1  -1  -1   1   4   1   5   1   1   1   4
## 13      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 14      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 15      1     0     0 -1  -1  -1   1   4   1   3   1  -1   1   1
## 16      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 17      0     1     0 -1  -1  -1   2  -1   1   5   1  -1   1   1
## 18      0     0     0 -1   7  -1   1   4   1   6   1  -1   1   1
## 19      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 20      0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   1
## 21      1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 22      0     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 23      0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 24      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 25      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 26      1     0     0 -1  -1   1   1   5   1   4   1  -1   1   1
## 27      0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   3
## 28      0     0     0  3  -1  -1   1   4   1   5   1  -1   1   1
## 29      0     0     0 -1  -1   5   1   6   1   2   5  -1   5   5
## 30      0     0     0 -1  10  -1   1   2   1   1   3  -1   5   5
## 31      0     0     0 -1   5  -1   1   3   2  -1   4  -1   1   4
## 32      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 33      0     0     0 -1   6  -1   1   3   1   4   1   4   1   1
## 34      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 35      0     0     0 -1   1  -1   1   2   2  -1   1  -1   4   4
## 36      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 37      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   1
## 38      0     0     0 -1  -1  -1   1   2   2  -1   1  -1   4   4
## 39      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 40      0     0     0 -1   4  -1   2  -1   1   4   1  -1   5   5
## 41      0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   3
## 42      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 43      0     0     0 -1   1  -1   1   4   1   3   3  -1   1   1
## 44      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 45      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 46      0     0     0  6  -1  -1   2  -1   2  -1   5  -1   1   4
## 47      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 48      0     0     0  2   1  -1   1   2   2  -1   4   4   1   2
## 49      1     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 50      0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 51      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 52      0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 53      1     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 54      0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 55      0     0     0 -1  -1  -1   2  -1   1   6   5  -1   1   2
## 56      0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   2
## 57      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 58      1     0     0 -1   3  -1   2  -1   1   5   1  -1   4   4
## 59      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 60      0     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   4
## 61      0     0     0 -1   6  -1   1   2   1   3   1  -1   1   4
## 62      1     0     0 -1  -1  -1   1   2   1   5   1   1   1   1
## 63      0     0     0  1  -1  -1   2  -1   2  -1   4   2   1   1
## 64      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 65      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 66      0     0     0 -1  -1   7   1   3   1   3   1   5   1   4
## 67      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 68      0     0     0 -1  -1   7   2  -1   2  -1   1   1   1   5
## 69      0     0     0 -1  -1  -1   2  -1   1   5   4  -1   2   2
## 70      1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 71      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 72      0     0     0  1   1  -1   2  -1   1   2   1   4   1   1
## 73      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 74      0     0     0 -1   1  -1   1   4   1   3   1  -1   1   3
## 75      0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 76      0     0     0 -1  -1  12   2  -1   1   3   5  -1   1   1
## 77      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 78      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 79      0     0     0 -1   6  -1   1   6   2  -1   1  -1   1   4
## 80      1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 81      1     0     0 -1   1  -1   1   3   2  -1   1  -1   1   1
## 82      0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 83      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 84      0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 85      0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 86      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 87      0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 88      0     0     0 -1   1  -1   1   3   1   2   4  -1   1   4
## 89      0     0     0  2  -1  -1   2  -1   2  -1   5   5   1   1
## 90      0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 91      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 92      0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 93      0     0     0 -1   7  -1   1   6   1   2   4   3   1   1
## 94      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 95      0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 96      0     0     0 -1   1  -1   1   3   1   1   5   3   1   3
## 97      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 98      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 99      0     0     0 -1   1  -1   1   6   1   6   5  -1   4   4
## 100     0     0     0 -1   1  -1   2  -1   1   3   4  -1   1   2
## 101     0     0     0 -1   1  -1   1   3   2  -1   4   5   1   1
## 102     0     0     0 -1   1  -1   1   2   1   2   5  -1   1   1
## 103     1     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   3
## 104     0     0     0  1  -1  -1   1   4   2  -1   4   5   1   1
## 105     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 106     0     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 107     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 108     0     0     0  3  -1  -1   1   2   2  -1   3  -1   1   4
## 109     0     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 110     0     0     0 -1  -1  -1   1   5   2  -1   1  -1   4   4
## 111     0     0     0 -1   1  -1   2  -1   1   3   3  -1   1   4
## 112     0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 113     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 114     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 115     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 116     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 117     1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 118     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 119     0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   1
## 120     0     1     0 -1  -1  -1   2  -1   1   5   5  -1   1   1
## 121     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 122     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 123     0     0     0 -1   6  -1   2  -1   2  -1   5  -1   1   4
## 124     0     0     0 -1  -1   5   1   2   2  -1   4   1   1   4
## 125     0     1     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 126     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 127     0     1     0 -1  -1  -1   1   3   1   3   4  -1   1   1
## 128     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 129     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 130     0     0     0 -1  -1   1   1   4   1   4   1  -1   1   1
## 131     0     0     0 -1   2  -1   1   3   2  -1   4  -1   1   4
## 132     0     0     0  1  -1  -1   1   5   1   2   5   5   1   4
## 133     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 134     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   4
## 135     0     0     0 -1   6  -1   2  -1   1   6   1  -1   1   4
## 136     0     0     0 -1   1  -1   2  -1   1   5   5  -1   4   4
## 137     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 138     0     0     0 -1   1   5   2  -1   1   4   1   1   1   1
## 139     0     0     0 -1   3  -1   1   3   2  -1   5  -1   1   1
## 140     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 141     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 142     0     0     0  2  -1  -1   1   3   1   3   4   4   1   1
## 143     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 144     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 145     1     0     0 -1  -1  -1   1   3   1   4   3   3   1   1
## 146     0     0     0 -1  -1  -1   1   5   2  -1   4   4   1   4
## 147     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 148     0     0     0 -1   6  -1   1   3   1   2   5   5   1   1
## 149     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 150     1     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 151     0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   4
## 152     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 153     0     0     0 -1   5  -1   1   2   1   3   3   4   1   1
## 154     0     0     0 -1  -1  -1   1   5   2  -1   1   1   2   2
## 155     0     0     0 -1  -1  -1   2  -1   1   4   1   1   1   5
## 156     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 157     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 158     0     1     0 -1  -1  -1   2  -1   2  -1   5  -1   1   1
## 159     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 160     0     0     0 -1  -1  -1   1   3   1   2   1   1   1   1
## 161     1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 162     0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   1
## 163     0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   5
## 164     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 165     0     0     0 -1   6  -1   1   3   2  -1   5  -1   1   1
## 166     0     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 167     0     0     0  2  -1  -1   1   4   1   6   5  -1   1   1
## 168     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 169     0     1     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 170     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 171     0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 172     1     0     0 -1   1  -1   1   6   1   3   1  -1   4   4
## 173     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 174     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 175     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 176     0     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 177     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 178     1     0     0 -1  -1  -1   1   5   2  -1   4  -1   1   4
## 179     0     0     0 -1  -1  -1   1   5   1   3   1  -1   2   4
## 180     1     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 181     0     0     0  2   1  -1   2  -1   2  -1   5   1   1   4
## 182     0     0     0 -1   1  -1   1   5   1   1   1   5   1   4
## 183     1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 184     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 185     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 186     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 187     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 188     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 189     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 190     0     0     0 -1   7  -1   1   2   1   3   4  -1   1   1
## 191     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 192     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   5   4
## 193     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 194     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 195     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 196     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 197     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 198     0     0     0 -1   5  -1   1   1   2  -1   1   1   1   1
## 199     0     0     0  2   6  -1   1   2   1   6   4   4   1   4
## 200     0     0     0 -1   1   5   2  -1   2  -1   1  -1   4   4
## 201     0     0     0 -1   2  -1   2  -1   1   5   1  -1   1   4
## 202     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 203     0     0     0 -1  -1   7   1   4   2  -1   5  -1   1   1
## 204     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 205     0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   5
## 206     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 207     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 208     0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   1
## 209     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 210     0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 211     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 212     0     0     0  1  -1  -1   1   3   2  -1   4   5   1   1
## 213     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 214     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 215     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   2
## 216     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 217     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 218     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 219     1     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 220     0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 221     0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 222     0     0     0 -1   1   5   2  -1   2  -1   1  -1   4   4
## 223     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 224     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 225     0     0     0 -1   3  -1   1   3   2  -1   1  -1   1   4
## 226     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 227     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 228     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 229     0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 230     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 231     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 232     0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 233     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 234     0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   4
## 235     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 236     0     0     0 -1   1   1   2  -1   2  -1   1  -1   1   1
## 237     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 238     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 239     0     0     0 -1  -1  -1   1   3   1   3   4   1   1   2
## 240     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 241     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 242     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 243     0     0     0 -1   1  -1   1   3   1   4   1  -1   1   3
## 244     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 245     0     0     0 -1  -1  -1   2  -1   2  -1   1   2   1   4
## 246     0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   2
## 247     0     0     0 -1  -1   1   1   5   1   4   5   4   4   4
## 248     0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 249     0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 250     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 251     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 252     0     0     0 -1   1  -1   1   4   1   4   1  -1   4   4
## 253     0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 254     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 255     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 256     0     0     0 -1   9  -1   2  -1   2  -1   1  -1   1   4
## 257     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 258     0     0     0 -1  -1  -1   1   4   1   4   1  -1   1   1
## 259     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 260     0     0     0 -1   1  -1   1   2   2  -1   1  -1   1   4
## 261     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 262     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 263     0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   1
## 264     0     0     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 265     0     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 266     1     0     0 -1  -1  -1   1   5   1   2   5  -1   1   4
## 267     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 268     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 269     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 270     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 271     0     0     0 -1   2  -1   2  -1   2  -1   1  -1   4   4
## 272     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 273     0     0     0  1  -1  -1   1   4   2  -1   3  -1   1   1
## 274     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 275     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   1
## 276     0     0     0 -1   1  -1   1   5   2  -1   5  -1   4   4
## 277     0     0     1 -1  -1  -1   1   3   1   3   4  -1   1   2
## 278     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 279     0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 280     0     0     0 -1   6  -1   1   1   1   3   3   3   1   3
## 281     0     0     0 -1   4   4   1   3   1   3   4   4   1   1
## 282     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 283     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 284     0     0     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 285     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 286     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 287     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 288     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 289     0     0     0 -1   1  -1   1   3   2  -1   4  -1   4   4
## 290     0     0     0  6  -1  -1   1   3   2  -1   1  -1   1   1
## 291     0     0     0 -1  -1  -1   1   3   2  -1   1   1   1   1
## 292     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 293     1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 294     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 295     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 296     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 297     0     0     0 -1  -1  -1   2  -1   1   5   4   1   1   4
## 298     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 299     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 300     1     0     0 -1  -1  -1   2  -1   2  -1   1   3   1   1
## 301     0     1     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 302     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 303     0     0     0  1   1  -1   1   2   2  -1   1  -1   1   1
## 304     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 305     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 306     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 307     0     0     0 -1   1  -1   1   4   1   6   1  -1   4   4
## 308     0     0     0 -1   8  -1   1   3   2  -1   1  -1   4   4
## 309     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 310     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 311     0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 312     1     0     0 -1  -1  -1   1   2   1   2   3   3   1   1
## 313     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 314     0     0     0 -1   6  -1   1   4   1   6   1   1   1   4
## 315     0     0     0 -1   1   4   1   2   1   3   1  -1   1   2
## 316     0     0     0 -1   1   7   1   3   1   6   4   4   1   1
## 317     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 318     0     0     0 -1   1  -1   2  -1   1   2   5  -1   4   4
## 319     0     0     0 -1  -1  -1   2  -1   2  -1   5   1   1   1
## 320     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 321     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   3
## 322     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 323     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 324     0     0     0  1   1  -1   1   3   2  -1   5  -1   1   1
## 325     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 326     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 327     0     0     0 -1  10  -1   1   4   2  -1   1   1   1   2
## 328     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 329     0     0     0 -1   6  -1   1   6   2  -1   1  -1   1   1
## 330     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 331     0     0     0 -1   6  -1   2  -1   1   2   3  -1   1   4
## 332     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 333     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   5
## 334     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 335     0     0     0 -1   1  -1   2  -1   1   3   4  -1   1   4
## 336     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   1
## 337     0     0     0  2  -1  -1   1   4   1   3   3   4   5   1
## 338     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 339     0     0     0 -1   1  -1   1   5   1   4   1  -1   1   2
## 340     0     0     0 -1  -1  -1   2  -1   2  -1   5   5   1   4
## 341     0     0     0 -1   1  -1   1   4   1   4   4  -1   1   2
## 342     0     0     0 -1   1  -1   1   2   1   3   5   4   1   1
## 343     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 344     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 345     0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 346     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 347     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 348     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 349     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 350     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 351     0     0     0 -1   1  -1   1   2   1   3   5  -1   1   4
## 352     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   3
## 353     0     0     0  6  -1  -1   1   2   1   2   5   5   1   1
## 354     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 355     0     0     0 -1  -1   7   1   3   1   2   1  -1   4   4
## 356     0     0     1 -1  -1  -1   1   2   1   2   4   4   1   4
## 357     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 358     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 359     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   4
## 360     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 361     1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 362     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 363     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 364     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 365     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 366     0     0     0 -1   8  -1   1   3   1   4   5   5   1   1
## 367     0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 368     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 369     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 370     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 371     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 372     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 373     0     1     0 -1  -1  -1   2  -1   1   2   5  -1   4   4
## 374     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 375     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 376     0     0     0 -1   7  -1   2  -1   1   3   1  -1   4   4
## 377     0     0     0  1  -1  -1   1   3   2  -1   1   1   1   2
## 378     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 379     0     0     0 -1  -1  -1   2  -1   1   6   1   1   1   1
## 380     0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   5
## 381     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 382     0     0     0 -1   1  -1   1   3   1   3   1  -1   1   1
## 383     0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   2
## 384     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 385     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 386     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 387     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 388     0     0     0 -1   4  -1   1   4   1   5   5  -1   1   4
## 389     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 390     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 391     1     0     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 392     0     0     0 -1   6  -1   1   5   2  -1   4   4   1   2
## 393     0     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 394     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 395     0     0     0 -1   8  -1   1   3   2  -1   1  -1   4   4
## 396     0     0     0  3  -1  -1   1   3   2  -1   1  -1   1   1
## 397     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 398     0     0     0 -1  -1   1   1   2   1   2   1   1   1   1
## 399     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 400     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 401     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 402     1     0     0 -1  -1  -1   2  -1   1   5   5  -1   1   4
## 403     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 404     0     0     0 -1  -1  -1   2  -1   1   2   5  -1   4   5
## 405     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 406     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 407     0     0     0 -1   2  -1   1   2   1   4   4  -1   1   1
## 408     0     0     0 -1   2  -1   1   5   2  -1   5  -1   1   4
## 409     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 410     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 411     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 412     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   5   5
## 413     1     0     0 -1  -1  -1   1   3   2  -1   3   3   1   1
## 414     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 415     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   4
## 416     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 417     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 418     0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 419     0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 420     0     0     0 -1  -1  -1   1   2   1   3   4   4   1   5
## 421     0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 422     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   2
## 423     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 424     0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 425     0     0     0 -1   8  -1   2  -1   1   2   1  -1   1   4
## 426     0     0     0 -1   1  -1   1   1   1   2   1  -1   1   4
## 427     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 428     0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 429     0     0     0 -1   4   5   1   4   1   2   4   4   1   2
## 430     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 431     0     0     0  1  -1  -1   2  -1   2  -1   1   1   1   1
## 432     0     0     0 -1   5  -1   2  -1   1   3   1  -1   1   2
## 433     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 434     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 435     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 436     0     0     0 -1   6  -1   2  -1   2  -1   4  -1   1   4
## 437     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 438     1     0     0 -1   6  -1   1   2   1   2   5   5   1   1
## 439     0     0     0 -1   1  -1   1   6   1   2   5  -1   1   1
## 440     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 441     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 442     0     0     0 -1   1   7   2  -1   2  -1   1  -1   1   4
## 443     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 444     1     0     0 -1  -1  -1   2  -1   1   2   1   4   1   4
## 445     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 446     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 447     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 448     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 449     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 450     0     0     0 -1  -1  -1   1   5   1   6   1  -1   1   4
## 451     0     0     0 -1   1  -1   1   4   1   2   1  -1   1   4
## 452     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 453     0     0     0 -1  -1  -1   2  -1   1   4   4  -1   1   2
## 454     0     0     0  2   1  -1   2  -1   2  -1   1  -1   1   4
## 455     0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 456     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 457     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 458     0     0     0 -1  -1  -1   2  -1   1   5   5  -1   4   4
## 459     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 460     0     0     0 -1   3  -1   1   1   1   6   1  -1   1   4
## 461     0     0     0 -1   1  12   1   3   1   3   1  -1   1   2
## 462     0     0     0 -1  -1   7   1   4   1   4   5  -1   1   1
## 463     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 464     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 465     1     0     0 -1   5  -1   2  -1   1   2   5  -1   1   4
## 466     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 467     0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 468     1     0     0 -1  -1  -1   1   3   1   1   5   5   1   4
## 469     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 470     0     0     0 -1   5  -1   1   6   1   5   5  -1   1   4
## 471     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 472     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 473     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 474     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 475     1     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 476     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 477     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 478     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 479     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 480     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 481     0     0     0 -1   6  -1   1   4   1   4   1  -1   1   1
## 482     0     0     0 -1  -1  -1   1   3   2  -1   4   4   1   1
## 483     0     0     0 -1   5  -1   2  -1   1   6   1  -1   1   4
## 484     0     0     0  2  -1  -1   1   3   1   3   4   4   1   1
## 485     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 486     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 487     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 488     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 489     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 490     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 491     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 492     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 493     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 494     0     0     0 -1   4  -1   2  -1   2  -1   4   4   1   1
## 495     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 496     0     0     0 -1  -1  -1   2  -1   1   4   4   1   1   1
## 497     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 498     0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   4
## 499     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 500     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 501     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 502     0     0     0 -1   5  -1   1   2   1   5   1  -1   1   4
## 503     1     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   5
## 504     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 505     0     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 506     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   1
## 507     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 508     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 509     0     0     0 -1  -1  -1   1   5   1   4   1  -1   1   1
## 510     0     0     0 -1   1  -1   1   4   1   4   3  -1   4   2
## 511     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 512     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 513     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 514     0     0     0  2  -1  -1   1   3   1   3   4  -1   1   1
## 515     0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 516     0     0     0 -1  -1  -1   1   3   2  -1   4  -1   1   2
## 517     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 518     1     0     0 -1  -1  -1   2  -1   1   5   5  -1   1   1
## 519     0     0     0 -1   4  -1   1   4   2  -1   5  -1   1   5
## 520     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 521     0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 522     0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 523     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 524     0     0     1 -1  -1  -1   1   6   1   4   4  -1   1   4
## 525     1     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 526     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 527     0     0     0 -1   4  -1   1   4   1   3   5  -1   1   4
## 528     0     0     0 -1  -1   3   1   3   2  -1   4   4   1   1
## 529     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 530     0     0     0 -1   9  -1   1   3   2  -1   5  -1   1   4
## 531     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 532     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 533     1     0     0 -1   1  -1   1   2   1   4   4  -1   1   4
## 534     0     0     0 -1   1  -1   1   4   1   4   1  -1   1   2
## 535     1     0     0 -1  -1  -1   1   4   2  -1   5   5   1   4
## 536     0     0     0 -1   1  -1   1   3   1   1   5  -1   1   1
## 537     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 538     0     0     0 -1   1  -1   2  -1   2  -1   5   5   1   4
## 539     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 540     0     0     0 -1   1  -1   1   4   1   5   1  -1   1   4
## 541     0     0     0  1  -1  -1   1   2   2  -1   4  -1   1   1
## 542     0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   1
## 543     0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 544     1     0     0  3  -1  -1   1   2   1   3   3   5   1   1
## 545     0     0     0 -1  -1  -1   1   5   2  -1   1   5   1   1
## 546     1     0     0 -1  -1  -1   2  -1   1   3   5  -1   2   4
## 547     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 548     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 549     0     1     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 550     0     0     0 -1   3  -1   1   3   1   5   1  -1   4   4
## 551     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 552     1     0     0 -1   4  -1   2  -1   1   2   4   4   4   4
## 553     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 554     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 555     1     0     0 -1  -1  -1   1   4   1   3   5  -1   1   4
## 556     0     0     0 -1  10  -1   1   5   1   3   5  -1   1   1
## 557     0     0     0 -1   6  -1   1   3   1   4   1   1   1   4
## 558     0     1     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 559     0     0     0 -1   1  -1   1   3   2  -1   5  -1   4   4
## 560     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 561     0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 562     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 563     1     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 564     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 565     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 566     0     0     0 -1   1  -1   1   5   2  -1   5  -1   1   4
## 567     0     0     0 -1   1  -1   2  -1   1   3   4  -1   4   4
## 568     0     0     0  1   1  -1   1   4   1   2   3   4   1   1
## 569     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 570     1     0     0 -1  -1  -1   1   3   1   4   1  -1   1   1
## 571     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 572     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 573     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 574     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 575     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 576     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 577     1     0     0 -1   1  -1   1   3   1   4   5  -1   1   2
## 578     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 579     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 580     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 581     0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 582     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 583     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 584     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 585     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 586     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 587     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 588     0     1     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 589     0     0     0 -1  -1   1   2  -1   1   6   1   4   1   4
## 590     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 591     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 592     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 593     1     0     0 -1  -1  -1   1   3   1   3   4   4   1   1
## 594     0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 595     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 596     1     0     0 -1  -1  -1   1   2   1   3   5  -1   1   4
## 597     0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 598     0     0     0 -1   1  -1   2  -1   1   5   4  -1   1   1
## 599     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 600     1     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 601     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 602     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 603     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 604     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 605     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 606     1     0     0 -1   7  -1   2  -1   2  -1   5  -1   1   4
## 607     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 608     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 609     0     1     0 -1  -1  -1   1   6   1   5   4  -1   1   4
## 610     0     0     0 -1   2  -1   1   3   1   3   5   4   1   1
## 611     0     0     0 -1  -1  -1   1   5   1   5   1  -1   1   4
## 612     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 613     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 614     0     0     0  2  -1  -1   1   2   2  -1   5  -1   1   1
## 615     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 616     0     0     0 -1   4  -1   1   3   2  -1   1  -1   1   2
## 617     0     0     0 -1   1  -1   1   3   1   4   1  -1   1   1
## 618     1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 619     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 620     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 621     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 622     1     0     0  2  -1  -1   1   2   2  -1   4  -1   1   1
## 623     0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 624     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 625     0     0     0  1  -1  -1   1   3   1   5   5   5   1   1
## 626     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   2
## 627     1     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 628     0     0     0  2  -1  -1   1   3   1   5   5   5   1   1
## 629     0     0     0 -1   6  -1   1   2   2  -1   3  -1   1   4
## 630     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 631     0     0     0 -1   1  -1   2  -1   1   4   4   4   1   2
## 632     0     0     0  2  -1  -1   1   1   2  -1   5   5   1   1
## 633     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 634     0     0     0  2  -1  -1   2  -1   2  -1   4  -1   1   4
## 635     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 636     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 637     0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 638     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 639     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 640     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 641     0     0     0  1  -1  -1   1   3   2  -1   1  -1   1   1
## 642     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 643     0     0     0 -1   1  -1   1   3   1   4   4  -1   1   1
## 644     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 645     1     0     0 -1   7   7   2  -1   2  -1   1  -1   1   4
## 646     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 647     0     0     0 -1   1  -1   2  -1   1   3   5   1   1   4
## 648     0     0     0 -1   1  -1   1   3   1   5   1  -1   1   4
## 649     0     0     0  1  -1  -1   1   3   1   6   4  -1   1   1
## 650     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 651     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 652     0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 653     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 654     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 655     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 656     1     0     0 -1   1  -1   2  -1   2  -1   4   4   4   4
## 657     0     1     0 -1  -1  -1   1   6   2  -1   3   1   1   1
## 658     0     0     0 -1   5  -1   1   6   1   4   1  -1   1   1
## 659     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 660     0     0     0 -1  -1  -1   1   4   1   6   5  -1   1   4
## 661     0     0     0 -1   1  -1   1   4   1   4   5   1   1   4
## 662     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 663     0     0     0 -1   1  -1   2  -1   1   6   4  -1   1   1
## 664     0     0     0 -1  -1   4   1   4   2  -1   1   1   1   2
## 665     0     0     0 -1   1  -1   2  -1   1   2   5  -1   4   4
## 666     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 667     0     0     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 668     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 669     0     0     0 -1  -1   4   2  -1   1   6   1  -1   4   4
## 670     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 671     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 672     0     0     0 -1   4  -1   2  -1   1   6   5  -1   1   4
## 673     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   4
## 674     0     0     0 -1   1  -1   2  -1   1   4   5   5   1   4
## 675     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 676     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 677     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 678     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 679     1     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 680     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 681     0     0     0  1  -1  -1   2  -1   2  -1   4   4   1   1
## 682     0     0     0 -1   1  -1   1   2   1   2   4   3   1   1
## 683     0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 684     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 685     0     0     0 -1   6  -1   1   3   2  -1   1  -1   1   4
## 686     0     0     0 -1   1  -1   2  -1   1   1   5  -1   1   4
## 687     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 688     0     0     0 -1  -1  -1   2  -1   1   5   4  -1   1   5
## 689     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 690     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 691     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 692     1     0     0 -1   6  -1   2  -1   1   6   1  -1   1   4
## 693     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 694     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 695     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 696     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   3
## 697     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 698     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 699     0     0     0 -1   1  -1   2  -1   1   3   4  -1   4   4
## 700     0     0     0 -1   1  -1   1   3   2  -1   1   1   1   4
## 701     0     0     0 -1  -1  -1   2  -1   1   6   5  -1   1   4
## 702     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   1
## 703     0     0     0  1   6  -1   2  -1   2  -1   5   1   1   1
## 704     0     0     0 -1  -1   4   2  -1   2  -1   1  -1   4   4
## 705     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 706     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 707     0     1     0 -1  -1  -1   1   4   2  -1   5  -1   4   4
## 708     1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 709     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 710     0     0     0 -1   6  -1   2  -1   1   3   1   1   1   1
## 711     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 712     1     0     0 -1  -1   1   1   3   1   3   1   1   1   1
## 713     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 714     0     0     0 -1   4  -1   2  -1   2  -1   1  -1   5   5
## 715     0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 716     1     0     0 -1   1  -1   1   6   1   3   5  -1   1   1
## 717     0     0     0 -1   1  -1   1   1   1   3   1  -1   1   2
## 718     0     0     0 -1   1  -1   1   3   2  -1   4   1   1   1
## 719     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 720     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   1
## 721     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 722     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 723     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 724     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 725     0     0     0  1   1  -1   1   2   1   2   3  -1   1   2
## 726     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 727     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 728     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   1
## 729     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 730     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 731     0     0     0  2  -1  -1   1   2   2  -1   1  -1   1   4
## 732     1     0     0 -1   6  -1   2  -1   1   3   1  -1   1   1
## 733     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 734     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 735     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 736     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 737     0     0     0  1  -1  -1   1   3   1   1   4   4   1   1
## 738     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 739     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 740     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 741     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 742     0     0     0 -1   5  -1   2  -1   1   2   5  -1   1   4
## 743     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 744     0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   4
## 745     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 746     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 747     1     0     0 -1   3  -1   1   2   1   5   5  -1   1   2
## 748     0     0     0  2  -1  -1   2  -1   1   5   3  -1   1   4
## 749     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 750     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 751     0     0     0  2  -1  -1   1   3   1   1   2  -1   1   1
## 752     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 753     0     0     0  6   1  -1   2  -1   1   3   1  -1   4   4
## 754     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 755     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   5
## 756     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 757     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 758     0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 759     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 760     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 761     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 762     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 763     0     0     0 -1   6  -1   1   4   1   5   1  -1   1   1
## 764     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 765     0     0     0 -1   6  -1   1   4   1   5   1  -1   1   4
## 766     1     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 767     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 768     0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   4
## 769     0     0     0 -1   1  -1   1   5   1   4   5  -1   1   1
## 770     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 771     0     0     0 -1  -1   5   1   5   1   5   4   4   1   2
## 772     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 773     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 774     0     0     0 -1  -1   5   2  -1   1   6   5   1   1   4
## 775     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 776     0     0     0 -1  -1  -1   1   3   2  -1   4  -1   4   4
## 777     0     0     0 -1  -1  -1   1   4   1   2   3   3   1   4
## 778     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 779     0     0     0 -1   1  -1   1   3   1   3   5  -1   1   4
## 780     0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 781     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 782     0     0     0 -1  -1   5   1   6   1   2   5   1   1   2
## 783     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   1
## 784     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 785     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 786     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 787     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 788     0     0     0 -1   1   7   1   5   2  -1   1  -1   1   4
## 789     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 790     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 791     0     0     0 -1   3  -1   2  -1   1   6   1  -1   2   4
## 792     0     0     0  1   3  -1   1   4   1   3   5   1   1   1
## 793     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 794     0     0     0 -1  -1  -1   1   1   1   1   2  -1   1   1
## 795     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   2   4
## 796     1     0     0 -1   1  -1   1   3   1   3   4  -1   1   4
## 797     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 798     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 799     0     0     0 -1   5  -1   2  -1   2  -1   5  -1   1   2
## 800     0     0     0  2  -1  -1   2  -1   2  -1   5  -1   1   4
## 801     0     0     0 -1   1  -1   1   3   1   6   1  -1   1   1
## 802     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 803     0     0     0 -1  -1   4   1   1   1   2   1  -1   1   4
## 804     1     0     0 -1  -1  -1   2  -1   1   2   4  -1   1   1
## 805     1     0     0 -1  -1  -1   1   5   1   3   4  -1   1   1
## 806     0     0     0 -1  -1  -1   1   4   1   2   3  -1   1   1
## 807     1     0     0 -1  -1  -1   2  -1   2  -1   4  -1   4   4
## 808     0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   4
## 809     0     1     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 810     0     0     0 -1   3  -1   2  -1   2  -1   5  -1   1   1
## 811     0     0     0 -1   4  -1   1   4   1   3   1  -1   1   1
## 812     0     0     0 -1   1  -1   2  -1   1   6   1  -1   2   2
## 813     0     0     0 -1   6  -1   2  -1   1   1   5   4   1   1
## 814     0     0     0 -1   1   7   2  -1   2  -1   1  -1   4   4
## 815     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 816     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 817     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 818     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   1
## 819     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 820     0     0     0 -1   3  -1   2  -1   1   6   4  -1   1   1
## 821     1     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   4
## 822     0     1     0 -1  -1  -1   1   3   1   2   5  -1   1   1
## 823     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 824     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 825     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 826     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 827     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 828     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 829     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 830     0     0     0 -1  -1  -1   1   3   2  -1   3  -1   1   4
## 831     0     1     0 -1  -1  -1   2  -1   1   4   1  -1   1   1
## 832     0     0     0 -1   6   5   1   2   1   5   1   4   1   1
## 833     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 834     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 835     0     0     0 -1   6  -1   1   4   2  -1   1  -1   1   1
## 836     0     0     0 -1  -1   1   2  -1   1   6   1  -1   2   4
## 837     0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 838     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 839     0     0     0 -1  -1  -1   1   3   1   6   5  -1   1   1
## 840     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 841     1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 842     0     0     0 -1   4  -1   1   3   1   3   4  -1   1   2
## 843     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 844     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 845     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 846     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 847     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   4
## 848     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 849     0     0     0 -1  -1  -1   1   2   2  -1   4  -1   1   4
## 850     1     0     0  1  -1  -1   1   3   1   3   1   1   1   1
## 851     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 852     0     0     0 -1  -1  -1   1   3   1   3   4   5   1   1
## 853     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 854     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 855     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 856     1     0     0 -1   1  -1   2  -1   1   1   3   5   1   4
## 857     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 858     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 859     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 860     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 861     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 862     0     0     0 -1   1  -1   1   6   1   5   1  -1   1   1
## 863     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 864     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 865     0     0     0 -1  -1  -1   1   3   1   4   4   4   1   2
## 866     0     0     0  6  -1  -1   2  -1   2  -1   1  -1   1   2
## 867     0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   2
## 868     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 869     0     0     0 -1   4  -1   2  -1   2  -1   1   1   4   4
## 870     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 871     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 872     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 873     0     0     0 -1   9  -1   1   6   2  -1   5  -1   1   2
## 874     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 875     1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 876     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 877     1     0     0 -1   1  -1   1   2   1   4   3  -1   1   1
## 878     0     0     0 -1   6  -1   2  -1   1   6   5  -1   1   4
## 879     0     0     0 -1   1  -1   1   5   2  -1   1  -1   4   4
## 880     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 881     0     0     0 -1  -1  -1   1   3   1   3   4  -1   1   4
## 882     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 883     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 884     1     0     0 -1   1  -1   1   5   1   5   4   4   1   4
## 885     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 886     0     0     0  2  -1  -1   2  -1   2  -1   1   1   1   1
## 887     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 888     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 889     0     0     0 -1   1  -1   1   6   1   2   4  -1   1   1
## 890     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 891     0     0     0 -1  -1  -1   1   4   1   3   5  -1   1   1
## 892     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 893     0     0     0  1  -1  -1   1   3   2  -1   1  -1   1   1
## 894     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 895     0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   1
## 896     0     0     0 -1   6  -1   2  -1   1   3   4   1   1   2
## 897     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 898     0     0     0 -1   3  -1   1   4   2  -1   1  -1   1   2
## 899     0     0     0 -1   5  -1   1   5   2  -1   1  -1   1   4
## 900     0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 901     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   1
## 902     0     0     0 -1   1   5   1   6   1   4   1  -1   1   4
## 903     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 904     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 905     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 906     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 907     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 908     1     0     0  6  -1  -1   1   6   1   6   5  -1   1   4
## 909     0     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 910     1     0     0 -1   1   1   2  -1   1   3   1  -1   1   4
## 911     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 912     1     0     0  2   1  -1   1   3   1   3   5   1   1   1
## 913     0     0     0 -1  -1   5   1   3   1   3   5  -1   1   4
## 914     1     0     0 -1  -1  -1   2  -1   1   5   1   5   1   4
## 915     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 916     0     0     0 -1   1  -1   2  -1   1   2   4  -1   1   4
## 917     0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 918     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 919     0     0     0  3  -1  -1   1   3   2  -1   5  -1   1   2
## 920     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 921     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 922     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 923     0     0     0 -1  -1   5   1   3   2  -1   1  -1   1   1
## 924     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 925     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 926     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 927     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 928     1     0     0 -1  -1  -1   1   5   1   4   1  -1   1   1
## 929     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 930     0     0     0 -1   5  -1   2  -1   1   3   1  -1   1   1
## 931     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 932     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 933     0     0     0 -1   1  -1   1   5   1   3   4  -1   1   4
## 934     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 935     0     0     0 -1   1  -1   1   5   1   6   1  -1   1   1
## 936     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 937     0     0     0  1   1  -1   1   5   1   6   5   5   1   1
## 938     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 939     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 940     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 941     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 942     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 943     0     0     0 -1   1  -1   1   4   1   3   4   4   1   1
## 944     0     0     0 -1   2  -1   1   5   2  -1   4  -1   1   4
## 945     0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 946     0     0     0 -1   2  -1   1   3   1   3   1   3   4   4
## 947     0     0     0 -1   5  -1   2  -1   1   3   5  -1   1   2
## 948     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 949     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   2   4
## 950     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 951     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 952     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   1
## 953     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 954     0     0     0 -1   1  -1   1   2   1   2   5   4   4   4
## 955     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 956     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 957     0     0     0 -1   1  -1   1   5   1   5   1  -1   1   2
## 958     0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 959     0     1     0 -1  -1  -1   2  -1   1   3   3  -1   4   4
## 960     0     0     0 -1   4   5   1   6   1   5   1  -1   1   4
## 961     1     0     0 -1  -1  -1   2  -1   2  -1   2   1   1   4
## 962     1     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 963     0     0     0 -1   1  -1   1   5   1   6   1  -1   1   4
## 964     0     0     0  2  -1  -1   1   1   1   4   3   3   1   1
## 965     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 966     1     0     0  6  -1  -1   1   2   2  -1   1  -1   1   1
## 967     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 968     0     0     0 -1   1   4   1   5   1   5   1  -1   1   4
## 969     1     0     0 -1  -1  -1   2  -1   1   3   4  -1   2   4
## 970     0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   4
## 971     1     0     0 -1   1  -1   1   4   1   3   3   4   1   2
## 972     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 973     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 974     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 975     0     1     0 -1  -1  -1   1   3   1   2   3   4   1   1
## 976     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 977     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 978     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 979     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 980     0     0     0 -1   6  -1   2  -1   2  -1   3   1   1   4
## 981     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 982     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 983     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 984     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 985     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 986     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 987     0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   1
## 988     0     0     0 -1  -1  -1   2  -1   1   5   1   1   1   4
## 989     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 990     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 991     0     0     0 -1   7  -1   1   4   1   4   5  -1   1   4
## 992     0     0     0 -1  -1  -1   1   3   1   2   4   4   1   1
## 993     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 994     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 995     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 996     0     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 997     0     0     0  2  -1  -1   1   3   2  -1   1  -1   1   4
## 998     1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 999     0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1000    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1001    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1002    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1003    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1004    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   4   4
## 1005    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1006    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1007    0     0     0 -1  -1   1   2  -1   1   2   1   5   1   4
## 1008    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1009    0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   1
## 1010    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1011    0     0     0 -1  -1  -1   1   4   1   5   4  -1   1   1
## 1012    0     0     0 -1   5  -1   1   6   1   6   1  -1   1   4
## 1013    0     0     0  6  -1  -1   2  -1   1   3   1   1   1   4
## 1014    0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 1015    0     0     0 -1  -1  -1   2  -1   1   5   3  -1   1   1
## 1016    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 1017    0     0     0 -1   6  -1   2  -1   1   4   4   5   1   1
## 1018    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1019    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1020    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1021    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1022    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1023    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 1024    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1025    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1026    0     0     0 -1   5  -1   2  -1   1   3   5   5   1   2
## 1027    0     0     0 -1   3   7   2  -1   2  -1   1  -1   4   4
## 1028    0     0     0 -1   6  -1   1   5   2  -1   4  -1   1   2
## 1029    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1030    0     0     0 -1  -1  -1   1   3   1   3   2  -1   1   4
## 1031    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1032    1     0     0 -1   9  -1   2  -1   2  -1   1  -1   1   2
## 1033    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1034    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1035    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   2
## 1036    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1037    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1038    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1039    1     0     0 -1   5  -1   1   2   2  -1   4   4   1   2
## 1040    0     0     0 -1   1  -1   1   6   1   6   4  -1   1   1
## 1041    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1042    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1043    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1044    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1045    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1046    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   4   4
## 1047    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1048    0     0     0 -1  -1  -1   1   2   1   3   1  -1   1   5
## 1049    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1050    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1051    0     0     0 -1  -1  -1   1   2   2  -1   4   4   1   4
## 1052    0     0     0 -1   8  -1   1   3   2  -1   1  -1   1   4
## 1053    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1054    0     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   1
## 1055    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1056    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1057    0     0     0 -1   1  -1   1   3   1   3   5  -1   1   3
## 1058    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1059    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1060    1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1061    0     0     0 -1   1  -1   1   4   1   2   5   1   1   2
## 1062    0     1     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 1063    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   1
## 1064    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1065    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1066    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 1067    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1068    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1069    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1070    0     0     0 -1   1  -1   1   6   1   6   4  -1   1   4
## 1071    0     0     0 -1   5  -1   1   4   1   3   5  -1   1   4
## 1072    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1073    0     0     0 -1  -1  -1   2  -1   2  -1   4   4   4   4
## 1074    0     0     0 -1   1  -1   1   2   1   5   1  -1   1   4
## 1075    1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 1076    0     0     0 -1   6  -1   1   3   2  -1   5  -1   2   4
## 1077    0     0     0  2  -1  -1   1   3   2  -1   5   5   1   1
## 1078    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1079    0     1     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 1080    0     1     0 -1  -1  -1   1   3   1   3   5  -1   1   4
## 1081    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1082    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1083    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1084    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1085    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1086    0     0     0 -1   6  -1   1   6   1   2   5  -1   1   1
## 1087    0     0     0 -1  -1  -1   1   4   1   4   1  -1   1   4
## 1088    1     0     0 -1  -1  -1   2  -1   1   2   5  -1   1   4
## 1089    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1090    0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 1091    0     0     0 -1   1  -1   1   4   1   1   3  -1   1   1
## 1092    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 1093    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1094    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1095    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1096    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   2
## 1097    0     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 1098    1     0     0 -1   7  -1   2  -1   2  -1   1   1   1   4
## 1099    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1100    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1101    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1102    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1103    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1104    0     0     0  2  -1  -1   1   6   1   5   4   4   1   1
## 1105    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   1
## 1106    0     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   1
## 1107    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1108    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1109    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1110    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1111    0     0     0 -1   4  -1   1   1   1   1   5  -1   1   4
## 1112    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1113    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1114    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1115    0     0     0 -1  -1   7   1   5   2  -1   5  -1   1   2
## 1116    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1117    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1118    1     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1119    0     0     0 -1  10  -1   2  -1   2  -1   1  -1   1   4
## 1120    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 1121    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1122    0     0     0  1  -1  -1   1   1   2  -1   5   1   1   1
## 1123    0     1     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1124    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1125    1     0     0 -1   1  -1   1   3   1   3   1  -1   1   1
## 1126    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1127    1     0     0 -1   6  -1   1   3   1   3   5  -1   1   1
## 1128    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   4
## 1129    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1130    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 1131    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   4
## 1132    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1133    0     0     0 -1   5  -1   2  -1   2  -1   1   1   4   4
## 1134    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1135    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1136    0     0     0  2  -1  -1   1   3   2  -1   5   4   1   1
## 1137    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1138    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1139    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1140    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   5
## 1141    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1142    0     0     0 -1   1  -1   1   5   1   3   1  -1   1   1
## 1143    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1144    0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 1145    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1146    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1147    0     0     0 -1   1  -1   2  -1   1   3   4   1   1   4
## 1148    0     0     0 -1  -1   5   1   5   2  -1   1  -1   4   4
## 1149    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1150    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1151    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   3
## 1152    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1153    0     0     0 -1   1  -1   1   4   1   3   3  -1   1   4
## 1154    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1155    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1156    1     0     0 -1  -1  -1   2  -1   1   2   4   4   1   1
## 1157    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1158    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1159    0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 1160    0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1161    1     0     0  2  -1  -1   1   6   1   2   3   4   1   1
## 1162    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1163    0     0     0  1  -1  -1   1   3   2  -1   1   1   1   1
## 1164    1     0     0 -1   5  -1   2  -1   1   3   4   1   1   4
## 1165    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1166    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1167    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1168    1     0     0 -1  -1  -1   1   6   1   3   1  -1   1   1
## 1169    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1170    0     0     0 -1   2  -1   1   5   1   2   2   2   1   1
## 1171    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1172    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1173    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1174    1     0     0 -1  -1  -1   1   5   1   5   4  -1   1   1
## 1175    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1176    0     0     0  1   1  -1   2  -1   2  -1   1  -1   5   5
## 1177    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   4   4
## 1178    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1179    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1180    0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 1181    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1182    0     0     0 -1   6  -1   2  -1   1   2   5  -1   1   4
## 1183    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1184    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   5   4
## 1185    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1186    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1187    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1188    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   1
## 1189    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1190    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1191    0     0     0 -1   7  -1   1   4   1   2   4   4   1   2
## 1192    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1193    1     0     0 -1   1  -1   2  -1   1   2   1   1   5   4
## 1194    0     0     0 -1   1  -1   1   5   1   2   1  -1   1   2
## 1195    1     0     0 -1  -1  -1   1   3   1   4   3   1   1   1
## 1196    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   2   4
## 1197    0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   4
## 1198    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 1199    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1200    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1201    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1202    0     0     0 -1   8  -1   2  -1   2  -1   1   1   4   4
## 1203    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   2
## 1204    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1205    0     0     0 -1  -1  -1   1   4   2  -1   5   1   1   1
## 1206    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1207    0     0     0 -1   6  -1   2  -1   2  -1   5   3   1   4
## 1208    0     0     0 -1   2  -1   2  -1   2  -1   1  -1   1   4
## 1209    1     0     0 -1   6  -1   1   6   2  -1   1  -1   2   4
## 1210    0     0     0 -1   6  -1   1   3   1   3   5  -1   1   2
## 1211    1     0     0  2  -1  -1   1   3   2  -1   5  -1   1   4
## 1212    0     0     0 -1   1  -1   2  -1   1   3   5  -1   2   4
## 1213    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1214    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1215    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 1216    0     0     0 -1   7  -1   2  -1   2  -1   5  -1   1   2
## 1217    1     0     0 -1   1  -1   2  -1   1   4   1  -1   2   2
## 1218    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 1219    0     0     0 -1   1  -1   2  -1   2  -1   3   4   1   4
## 1220    0     0     0 -1  -1  -1   2  -1   1   6   5   1   1   4
## 1221    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1222    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1223    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   2
## 1224    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1225    0     1     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1226    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1227    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1228    0     0     0 -1  -1  -1   1   4   1   3   1  -1   1   1
## 1229    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1230    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1231    0     0     0  1  -1  -1   1   4   2  -1   5   1   1   4
## 1232    1     0     0 -1   9  -1   2  -1   2  -1   1  -1   4   4
## 1233    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1234    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1235    0     0     0 -1   5  -1   1   5   1   1   5   5   1   4
## 1236    0     1     0 -1  -1  -1   1   6   2  -1   5   4   1   4
## 1237    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1238    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1239    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 1240    0     0     0 -1  -1  -1   1   4   1   4   5   5   1   1
## 1241    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 1242    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1243    0     1     0 -1  -1  -1   2  -1   1   6   5   4   1   1
## 1244    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1245    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1246    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1247    0     0     0  1  -1  -1   1   4   1   4   1  -1   1   1
## 1248    0     0     0 -1   1  -1   1   6   1   3   4   4   1   4
## 1249    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1250    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1251    0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 1252    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1253    0     1     0 -1  -1  -1   2  -1   1   4   5  -1   1   1
## 1254    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 1255    0     0     0 -1  -1  -1   1   5   1   3   5  -1   1   1
## 1256    0     0     0  6  -1  -1   1   3   2  -1   5   5   1   2
## 1257    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1258    0     0     0 -1  -1   4   2  -1   2  -1   1   1   1   1
## 1259    0     0     0  2  -1  -1   1   5   2  -1   1   1   1   2
## 1260    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   2
## 1261    0     0     0 -1  -1  -1   2  -1   2  -1   5   1   1   1
## 1262    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   1
## 1263    0     0     0 -1   1  -1   2  -1   1   5   3  -1   4   4
## 1264    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1265    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1266    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1267    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1268    0     0     0 -1   1  -1   1   4   1   2   1  -1   1   4
## 1269    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 1270    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1271    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1272    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1273    0     0     0 -1   1  -1   1   5   1   3   1  -1   1   2
## 1274    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   5
## 1275    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 1276    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1277    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1278    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1279    0     0     0 -1   1  -1   1   4   1   2   4   3   1   1
## 1280    0     0     0 -1   1  -1   2  -1   2  -1   1   5   1   4
## 1281    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1282    0     0     0  2  -1  -1   1   4   1   5   4   4   1   1
## 1283    1     0     0 -1   1  -1   1   6   1   3   4  -1   1   4
## 1284    0     0     0 -1   1  -1   1   6   1   4   1  -1   1   4
## 1285    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1286    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1287    0     0     0 -1   1  -1   2  -1   1   1   5   4   1   1
## 1288    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1289    0     0     0  2   2  -1   1   1   1   5   5   4   1   1
## 1290    1     0     0 -1   1  -1   2  -1   1   1   1  -1   4   4
## 1291    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1292    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1293    0     0     0 -1   1  -1   1   5   1   5   1  -1   1   4
## 1294    0     0     0 -1  10  -1   1   4   2  -1   3   1   1   4
## 1295    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1296    0     0     0 -1  -1   4   2  -1   1   4   1  -1   1   2
## 1297    0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 1298    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 1299    0     0     0 -1   3  -1   1   6   1   2   1   4   1   4
## 1300    0     0     0 -1   1  -1   1   3   1   5   1  -1   1   1
## 1301    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1302    0     0     0 -1   6  -1   1   3   2  -1   5   5   1   1
## 1303    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1304    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1305    0     0     0 -1   6  -1   1   5   1   3   5   5   1   4
## 1306    0     0     0  2  -1  -1   1   2   1   2   4   4   1   1
## 1307    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1308    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1309    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1310    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1311    1     0     0 -1  -1  -1   2  -1   1   3   1   1   1   1
## 1312    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1313    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1314    1     0     0 -1  -1  -1   1   4   1   3   1  -1   1   4
## 1315    0     0     0 -1   1  -1   1   2   1   3   1   1   1   4
## 1316    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 1317    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1318    0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 1319    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1320    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1321    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1322    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1323    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1324    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1325    1     0     0 -1  -1  -1   1   3   2  -1   3   5   1   1
## 1326    0     0     0  1  -1  -1   1   4   2  -1   4   1   2   1
## 1327    0     0     0 -1  -1   4   2  -1   1   3   1   4   1   4
## 1328    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1329    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 1330    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1331    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1332    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1333    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1334    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1335    0     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   4
## 1336    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1337    1     0     0 -1   6  -1   1   3   1   3   5   5   1   2
## 1338    0     0     0  2  -1  -1   1   2   2  -1   4  -1   4   4
## 1339    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1340    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1341    0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 1342    1     0     0 -1  -1  -1   1   3   1   3   4  -1   1   4
## 1343    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1344    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1345    0     0     0 -1   6   4   1   3   2  -1   1   5   1   1
## 1346    1     0     0 -1  -1  -1   1   5   1   5   1  -1   1   4
## 1347    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1348    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1349    0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 1350    0     0     0 -1   5  -1   2  -1   1   1   5  -1   1   1
## 1351    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1352    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1353    0     0     0 -1   1  -1   1   3   1   2   4  -1   1   1
## 1354    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1355    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1356    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1357    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1358    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1359    0     0     0 -1  -1  -1   1   5   1   3   1  -1   2   1
## 1360    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1361    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1362    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   3   4
## 1363    0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 1364    0     0     0 -1   3  -1   2  -1   1   6   5  -1   4   4
## 1365    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1366    0     0     0 -1  -1   9   2  -1   2  -1   4  -1   1   4
## 1367    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 1368    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 1369    0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 1370    0     0     0 -1   8   5   1   4   1   4   5  -1   1   2
## 1371    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1372    0     0     0 -1  -1   1   1   3   1   5   5   5   1   2
## 1373    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1374    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1375    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1376    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1377    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1378    0     0     0  1   1  -1   1   3   1   2   3  -1   1   1
## 1379    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1380    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1381    0     0     0 -1   1  -1   1   4   2  -1   4  -1   1   4
## 1382    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1383    0     0     0 -1   1   1   1   5   1   5   1  -1   1   2
## 1384    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1385    0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   2
## 1386    0     0     0 -1  -1   5   1   3   1   2   4   4   1   4
## 1387    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1388    0     0     0 -1   1  -1   1   2   2  -1   1  -1   1   2
## 1389    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1390    1     0     0 -1  -1  -1   1   6   1   3   3  -1   1   1
## 1391    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   1
## 1392    1     0     0 -1  -1  -1   2  -1   1   2   1   5   1   1
## 1393    0     0     0 -1  -1  -1   1   3   1   2   3  -1   1   2
## 1394    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1395    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1396    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1397    0     0     0  2   1  -1   1   4   1   4   1   4   1   4
## 1398    0     0     0  1  -1  -1   1   4   1   3   1  -1   1   1
## 1399    0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 1400    0     0     0 -1  -1   5   2  -1   1   3   5  -1   1   4
## 1401    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1402    0     0     0 -1   1  -1   1   3   2  -1   5  -1   4   4
## 1403    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   2   5
## 1404    0     0     0  2  -1  -1   1   2   1   3   4   4   1   1
## 1405    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   5
## 1406    0     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 1407    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1408    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1409    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1410    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1411    0     0     0 -1   1  -1   2  -1   1   4   4  -1   1   1
## 1412    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1413    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1414    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1415    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1416    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1417    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1418    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1419    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1420    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1421    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 1422    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1423    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1424    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 1425    0     0     0 -1   5  -1   1   2   1   3   3   3   1   2
## 1426    1     0     0 -1   1  -1   1   6   1   4   1  -1   1   1
## 1427    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1428    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1429    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1430    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1431    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1432    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 1433    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1434    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1435    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 1436    1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   2
## 1437    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1438    0     0     0 -1  -1  -1   2  -1   1   6   1   1   1   4
## 1439    0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 1440    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1441    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1442    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   4
## 1443    0     0     0 -1   6  -1   1   4   1   4   4   5   1   4
## 1444    0     0     0 -1  -1   1   1   2   1   1   1  -1   1   4
## 1445    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1446    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1447    0     0     0 -1   3  -1   2  -1   2  -1   5  -1   1   4
## 1448    0     0     0 -1   1  -1   1   4   2  -1   1   4   1   4
## 1449    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1450    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1451    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1452    0     0     0  1   1  -1   1   6   1   6   4  -1   1   3
## 1453    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1454    0     0     0  1   1  -1   1   6   1   6   1  -1   1   2
## 1455    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1456    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1457    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1458    0     0     0 -1   1   4   1   4   2  -1   4  -1   1   1
## 1459    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1460    1     0     0 -1   6  -1   2  -1   1   2   5  -1   1   4
## 1461    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1462    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1463    0     0     0 -1   8  -1   1   5   1   3   1   1   1   2
## 1464    0     0     0  1   1  -1   1   1   1   3   4   4   1   1
## 1465    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1466    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   5   5
## 1467    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1468    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1469    0     0     0 -1   3  -1   1   4   1   2   1   1   1   1
## 1470    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 1471    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1472    0     0     0 -1   3  -1   1   3   2  -1   1  -1   4   4
## 1473    0     0     0 -1  -1  -1   2  -1   1   3   4   1   1   1
## 1474    0     0     0 -1  -1  -1   2  -1   2  -1   2   4   1   1
## 1475    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1476    0     0     0 -1   1  -1   1   4   1   5   1  -1   1   4
## 1477    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1478    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 1479    0     0     0 -1   5  -1   1   3   1   3   4  -1   1   1
## 1480    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1481    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1482    0     0     0 -1  10  -1   1   1   1   3   5   5   1   1
## 1483    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1484    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1485    0     0     0  1  -1  -1   1   3   2  -1   1   1   1   1
## 1486    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1487    1     0     0 -1  -1  -1   2  -1   1   2   1  -1   4   4
## 1488    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1489    0     0     0 -1   6  -1   1   3   1   3   5  -1   1   4
## 1490    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1491    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1492    0     1     0 -1  -1  -1   1   3   1   6   5  -1   1   1
## 1493    0     0     0  3   1  -1   1   2   2  -1   2   4   1   4
## 1494    0     0     0 -1  -1  -1   1   1   1   4   5  -1   1   4
## 1495    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1496    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1497    0     0     0 -1  -1   5   1   3   1   3   1   1   1   4
## 1498    0     0     0 -1  -1   5   1   3   1   2   5  -1   1   5
## 1499    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 1500    0     0     0  2   1   4   1   2   1   2   1   1   1   1
## 1501    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1502    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1503    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1504    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1505    0     0     0 -1   1  -1   1   3   1   2   4   4   1   2
## 1506    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1507    0     0     0 -1   1  -1   1   2   1   2   1  -1   1   2
## 1508    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1509    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1510    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1511    1     0     0 -1   1   7   2  -1   2  -1   1  -1   1   1
## 1512    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1513    0     0     0 -1   1  -1   1   6   1   6   5  -1   1   1
## 1514    0     0     0 -1   5  -1   1   4   2  -1   5  -1   1   4
## 1515    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1516    0     1     0 -1  -1  -1   2  -1   1   4   5  -1   4   4
## 1517    1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1518    1     0     0 -1  -1  -1   2  -1   1   2   5  -1   4   4
## 1519    0     0     0 -1   6  -1   2  -1   2  -1   5   1   4   1
## 1520    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1521    0     0     0 -1   1  -1   1   4   1   6   1  -1   1   1
## 1522    0     0     0 -1  -1   5   1   6   2  -1   5  -1   1   1
## 1523    0     0     0 -1   1  -1   1   3   1   4   5  -1   1   1
## 1524    0     0     0 -1   1  -1   1   4   1   3   5  -1   1   4
## 1525    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1526    0     0     0 -1   1   4   1   3   1   6   1  -1   1   1
## 1527    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1528    0     0     0 -1   1  -1   1   3   2  -1   1   1   4   4
## 1529    1     0     0 -1  -1  -1   1   4   1   4   2   1   1   1
## 1530    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1531    0     0     0 -1   9  -1   2  -1   1   3   5  -1   2   4
## 1532    0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 1533    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1534    0     0     0 -1   1  -1   1   4   2  -1   4   4   1   2
## 1535    0     0     0 -1   4  -1   1   5   1   4   1  -1   1   2
## 1536    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1537    0     0     0 -1   4  -1   1   6   1   3   1  -1   1   4
## 1538    0     0     0 -1   1  -1   1   3   2  -1   1  -1   4   4
## 1539    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 1540    0     0     0 -1   6  -1   2  -1   1   2   1  -1   1   4
## 1541    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1542    0     1     0 -1  -1  -1   2  -1   2  -1   2  -1   1   4
## 1543    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1544    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1545    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1546    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 1547    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1548    0     0     0 -1  -1   5   1   3   1   4   4   1   1   1
## 1549    0     0     0 -1  -1  -1   2  -1   1   6   5  -1   4   4
## 1550    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   2
## 1551    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1552    1     0     0 -1   5  -1   1   5   2  -1   5  -1   1   1
## 1553    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1554    0     0     0 -1  -1   7   1   3   1   1   1  -1   2   2
## 1555    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1556    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1557    0     0     0 -1   5  -1   2  -1   1   5   5   5   1   1
## 1558    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1559    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 1560    0     0     0 -1   3   7   2  -1   2  -1   1  -1   1   1
## 1561    0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   5
## 1562    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   1
## 1563    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1564    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1565    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1566    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1567    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1568    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1569    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1570    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 1571    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1572    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1573    0     0     0 -1   1  -1   2  -1   1   2   3  -1   1   4
## 1574    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1575    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1576    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1577    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1578    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1579    0     0     0 -1   1  -1   1   6   1   6   2  -1   1   2
## 1580    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1581    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1582    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1583    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1584    0     0     0 -1   3  -1   1   4   1   4   1  -1   4   4
## 1585    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1586    0     0     0 -1   1  -1   1   2   1   3   4  -1   1   4
## 1587    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1588    0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 1589    0     0     0 -1   5  -1   1   5   1   2   5  -1   1   4
## 1590    0     0     0 -1   7  -1   1   4   1   2   1  -1   1   4
## 1591    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1592    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1593    1     0     0 -1   6  -1   1   3   1   3   5  -1   1   1
## 1594    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1595    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 1596    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1597    0     0     0 -1  -1  -1   1   4   1   3   1  -1   1   2
## 1598    0     0     0 -1   1  -1   1   5   1   6   5  -1   1   1
## 1599    1     0     0 -1   3  -1   2  -1   2  -1   1   1   4   4
## 1600    0     0     0 -1  -1   4   1   2   1   6   5   4   1   1
## 1601    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   5
## 1602    0     0     0 -1   1   4   2  -1   1   2   1  -1   1   2
## 1603    0     0     0 -1  -1   7   2  -1   2  -1   1  -1   4   4
## 1604    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1605    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1606    0     0     0 -1  -1  -1   1   3   1   3   5  -1   1   4
## 1607    0     0     0 -1   2  -1   2  -1   2  -1   5  -1   1   4
## 1608    0     0     0 -1   6  -1   2  -1   1   3   1   1   1   4
## 1609    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1610    0     0     0  2  -1  -1   1   4   1   4   1   1   1   2
## 1611    1     0     0 -1   6  -1   1   2   1   3   2   3   1   1
## 1612    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   2
## 1613    1     0     0 -1   1  -1   1   6   1   4   1  -1   4   4
## 1614    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1615    0     0     0 -1   3   4   1   1   1   4   4   4   1   4
## 1616    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1617    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1618    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1619    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1620    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1621    0     0     0 -1   2  -1   1   3   1   3   1  -1   1   4
## 1622    0     0     0 -1   6  -1   1   3   1   6   3  -1   1   4
## 1623    1     0     0 -1   1  -1   2  -1   1   6   4   4   1   1
## 1624    1     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1625    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1626    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1627    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1628    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 1629    0     0     0  5   1  -1   1   3   2  -1   1  -1   1   1
## 1630    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1631    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1632    1     0     0 -1  -1  -1   2  -1   1   4   3   1   1   4
## 1633    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 1634    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1635    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1636    0     0     0  1  -1  -1   1   4   1   6   4   4   1   1
## 1637    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1638    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1639    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1640    0     0     0 -1  -1  -1   1   5   1   5   1  -1   1   3
## 1641    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1642    1     0     0 -1   1  -1   1   5   2  -1   1  -1   1   1
## 1643    0     0     0 -1   5  -1   2  -1   1   3   1   1   1   4
## 1644    1     0     0 -1   6  -1   1   3   1   3   3  -1   1   2
## 1645    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   2
## 1646    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1647    1     0     0 -1   5  -1   1   5   1   6   1  -1   1   4
## 1648    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1649    0     1     0 -1  -1  -1   1   6   2  -1   5  -1   1   1
## 1650    0     0     0 -1   3  -1   1   4   1   3   5  -1   1   2
## 1651    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1652    0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 1653    0     0     0 -1  -1   1   2  -1   2  -1   1   1   1   4
## 1654    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1655    0     0     0  3   1  -1   1   2   2  -1   5  -1   1   4
## 1656    0     0     0  2  -1  -1   1   1   2  -1   2   4   1   1
## 1657    1     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   1
## 1658    0     0     0 -1   1  -1   1   1   1   3   4   4   1   1
## 1659    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1660    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1661    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1662    1     0     0 -1  -1  -1   1   3   1   4   5  -1   1   1
## 1663    0     0     0 -1   3  -1   2  -1   1   3   1  -1   1   2
## 1664    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1665    0     1     0 -1  -1  -1   1   5   1   5   4  -1   1   1
## 1666    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   2
## 1667    0     0     0 -1  -1  -1   1   2   1   3   4   4   1   4
## 1668    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 1669    1     0     0 -1   3  -1   1   6   1   4   5  -1   1   4
## 1670    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1671    1     0     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 1672    0     0     0 -1   6  -1   2  -1   2  -1   1   3   1   4
## 1673    0     0     0 -1   7  -1   1   5   2  -1   4  -1   1   1
## 1674    0     0     0  3  -1  -1   2  -1   1   2   4   4   1   2
## 1675    0     0     0 -1   1  -1   1   4   1   1   5   4   1   1
## 1676    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1677    0     0     0 -1   1  -1   2  -1   1   4   5  -1   4   4
## 1678    0     0     0 -1   6  -1   1   3   2  -1   2   4   1   1
## 1679    0     0     0 -1  -1   7   2  -1   1   4   5   4   1   1
## 1680    0     0     0 -1  -1   7   1   2   1   4   1  -1   1   2
## 1681    0     0     0 -1  -1   4   1   2   2  -1   1   1   1   2
## 1682    0     0     0 -1   1  -1   2  -1   1   5   1   1   1   4
## 1683    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1684    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   5
## 1685    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1686    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1687    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1688    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1689    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1690    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1691    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1692    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1693    0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1694    1     0     0 -1   1  -1   1   6   2  -1   4  -1   1   4
## 1695    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   3
## 1696    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 1697    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1698    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1699    0     0     0 -1   1  -1   1   6   1   6   5  -1   1   4
## 1700    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1701    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1702    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1703    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1704    0     0     0 -1   6  -1   1   4   1   6   3   1   1   4
## 1705    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   5   5
## 1706    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1707    0     0     0 -1   1  -1   1   4   1   4   1   4   1   4
## 1708    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1709    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1710    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1711    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1712    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1713    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1714    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1715    0     1     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1716    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1717    0     1     0 -1  -1  -1   1   5   2  -1   5  -1   4   4
## 1718    0     0     0 -1   9  -1   2  -1   2  -1   5  -1   1   4
## 1719    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1720    0     0     0 -1   1  -1   1   4   1   4   5  -1   1   4
## 1721    1     0     0 -1  -1  -1   1   2   1   6   1  -1   1   4
## 1722    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   3
## 1723    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 1724    0     0     0 -1   6  -1   2  -1   1   2   1   1   1   4
## 1725    0     0     0 -1  -1  -1   2  -1   1   3   1   1   1   2
## 1726    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1727    0     0     0 -1   4  -1   2  -1   1   3   4  -1   1   4
## 1728    1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1729    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1730    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1731    0     0     0 -1   1   7   1   4   2  -1   1  -1   1   4
## 1732    1     0     0 -1   6  -1   2  -1   1   4   1  -1   1   4
## 1733    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   1
## 1734    0     0     0 -1   1  -1   1   3   2  -1   1  -1   2   4
## 1735    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1736    0     1     0 -1  -1  -1   2  -1   1   3   3  -1   4   3
## 1737    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 1738    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1739    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1740    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   5
## 1741    0     0     0 -1   1  -1   1   3   2  -1   1   1   2   5
## 1742    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1743    0     0     0 -1   1  -1   1   6   1   3   1  -1   1   4
## 1744    1     0     0 -1   6  -1   1   2   1   1   3   3   1   1
## 1745    0     0     0 -1   3  -1   2  -1   1   1   1  -1   4   4
## 1746    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1747    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1748    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1749    0     1     0 -1  -1  -1   2  -1   1   6   1   4   1   4
## 1750    1     0     0 -1   1  -1   1   3   1   6   1  -1   4   4
## 1751    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1752    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1753    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1754    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 1755    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1756    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1757    0     0     0 -1   1  -1   1   5   1   5   1  -1   1   4
## 1758    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1759    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1760    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1761    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1762    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1763    1     0     0 -1  -1  -1   2  -1   1   3   3   3   1   1
## 1764    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1765    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1766    1     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   1
## 1767    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 1768    1     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1769    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1770    0     0     0 -1   1  -1   1   2   2  -1   2   2   1   1
## 1771    1     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 1772    0     0     0  2  -1  -1   1   3   1   4   1  -1   1   1
## 1773    1     0     0 -1  -1  -1   2  -1   1   3   5  -1   4   4
## 1774    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1775    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1776    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 1777    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1778    0     0     0 -1  -1   5   1   5   1   5   1  -1   1   2
## 1779    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1780    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1781    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1782    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1783    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1784    1     0     0 -1   1  -1   1   3   1   2   1   5   1   1
## 1785    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 1786    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1787    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1788    0     0     0 -1   6  -1   1   4   2  -1   5   1   1   2
## 1789    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1790    0     0     0 -1   1  -1   1   4   1   3   5   1   1   4
## 1791    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1792    0     0     0  2  -1   7   1   3   1   4   1  -1   1   1
## 1793    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1794    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1795    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1796    0     0     0 -1   1  -1   1   1   1   5   5   1   1   4
## 1797    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1798    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1799    0     0     0 -1   1  -1   2  -1   2  -1   3   1   1   4
## 1800    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1801    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1802    0     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 1803    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1804    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1805    0     0     0 -1   1  -1   1   2   1   3   1  -1   1   1
## 1806    0     0     0 -1   1   7   1   3   2  -1   4  -1   1   4
## 1807    0     0     0  1  -1  -1   1   4   2  -1   1   1   1   1
## 1808    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1809    0     0     0 -1   1  -1   2  -1   1   1   1  -1   1   4
## 1810    0     1     0 -1  -1  -1   1   3   2  -1   1   4   1   4
## 1811    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1812    0     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 1813    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1814    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1815    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1816    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 1817    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1818    1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1819    1     0     0 -1   1   7   1   4   1   3   4   4   1   1
## 1820    0     0     0 -1   1  -1   2  -1   1   5   4  -1   1   4
## 1821    0     0     0  2   1  -1   1   3   1   6   4  -1   4   4
## 1822    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1823    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1824    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 1825    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1826    0     0     0 -1   5  -1   1   4   1   2   1  -1   4   4
## 1827    0     0     0 -1   1  -1   1   2   2  -1   1  -1   4   4
## 1828    0     0     0  2  -1  -1   1   4   2  -1   3   3   1   1
## 1829    0     0     0 -1   5  -1   1   6   1   5   3   3   1   1
## 1830    0     0     0  7  -1  -1   1   5   1   3   4   4   1   1
## 1831    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1832    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1833    0     0     0 -1  -1  -1   2  -1   2  -1   1   2   1   1
## 1834    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1835    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1836    0     0     0 -1  -1  -1   1   3   1   3   5   5   1   5
## 1837    0     0     0 -1   1  -1   1   2   1   2   2  -1   1   1
## 1838    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1839    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   3   1
## 1840    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1841    0     0     0 -1   1  -1   1   5   2  -1   1  -1   4   4
## 1842    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1843    0     0     0 -1  -1   1   1   5   2  -1   1  -1   5   5
## 1844    0     0     0 -1   1  -1   1   2   1   4   1  -1   1   1
## 1845    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1846    1     0     0 -1  -1  -1   2  -1   1   3   4   4   1   4
## 1847    0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   4
## 1848    0     0     0  1  -1  -1   1   3   1   3   5   5   1   1
## 1849    0     0     0  1  -1  -1   1   3   1   3   3   4   1   1
## 1850    0     0     0 -1   1  -1   2  -1   1   3   5  -1   5   5
## 1851    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 1852    0     0     0 -1   1  -1   1   5   2  -1   5  -1   1   4
## 1853    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1854    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1855    1     0     0 -1  -1  -1   1   5   1   2   4  -1   1   1
## 1856    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1857    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1858    1     0     0 -1  -1  -1   1   6   1   3   4   4   1   1
## 1859    0     0     0 -1  -1  -1   1   6   2  -1   4  -1   1   1
## 1860    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1861    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1862    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1863    1     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 1864    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   5
## 1865    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1866    0     0     0 -1   1  -1   1   4   1   3   5   5   1   4
## 1867    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1868    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1869    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1870    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 1871    0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   5
## 1872    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1873    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1874    0     0     0 -1   9  -1   2  -1   2  -1   1  -1   4   4
## 1875    1     0     0 -1  -1  -1   1   4   1   2   4  -1   1   2
## 1876    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 1877    0     0     0  1  -1  -1   2  -1   2  -1   5  -1   1   1
## 1878    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1879    0     0     0 -1   1  -1   1   4   1   4   4  -1   3   4
## 1880    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1881    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1882    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   1
## 1883    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 1884    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1885    0     0     0 -1  -1  -1   1   4   1   6   4  -1   1   1
## 1886    0     0     0 -1  -1  -1   2  -1   1   2   5  -1   1   2
## 1887    0     0     0  1   1  -1   1   3   1   6   3   3   1   1
## 1888    0     1     0 -1  -1  -1   1   3   1   3   5  -1   1   1
## 1889    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 1890    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1891    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1892    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   1
## 1893    1     0     0 -1  -1  -1   1   3   2  -1   5  -1   1   1
## 1894    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1895    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1896    0     0     0 -1   1  -1   2  -1   1   4   4  -1   1   4
## 1897    0     0     0 -1  -1  -1   1   3   1   3   1   4   1   4
## 1898    0     0     0 -1  -1  -1   1   3   1   4   5  -1   1   1
## 1899    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1900    0     0     0 -1   1   7   1   3   1   4   1  -1   1   3
## 1901    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1902    1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1903    1     0     0 -1   5  -1   1   4   1   5   1  -1   1   1
## 1904    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1905    0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 1906    0     0     0 -1  -1   5   1   5   1   2   1   4   1   4
## 1907    0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   4
## 1908    0     0     0 -1  -1  -1   2  -1   1   4   5  -1   4   4
## 1909    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1910    1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 1911    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1912    0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 1913    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1914    0     1     0 -1  -1  -1   1   6   1   2   1  -1   1   1
## 1915    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1916    0     0     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 1917    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 1918    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1919    0     0     0 -1   4   1   1   3   2  -1   5   1   1   1
## 1920    0     0     0  3  -1  -1   1   2   1   4   1  -1   4   4
## 1921    0     0     0  2   2  -1   1   3   2  -1   1  -1   1   1
## 1922    0     0     0 -1   7  -1   1   3   1   1   2   2   1   1
## 1923    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   3
## 1924    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1925    0     1     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 1926    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1927    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 1928    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 1929    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1930    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1931    0     0     0  1  -1  -1   2  -1   2  -1   1   5   1   1
## 1932    0     0     0  1   1  -1   1   4   1   3   1  -1   1   1
## 1933    0     0     0 -1   1  -1   2  -1   1   3   1   4   1   1
## 1934    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1935    0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 1936    0     0     0 -1  -1   5   1   3   1   4   5   5   1   4
## 1937    1     0     0 -1   6  -1   2  -1   1   6   5  -1   1   4
## 1938    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1939    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1940    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1941    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1942    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1943    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1944    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1945    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1946    0     0     0 -1  -1  -1   1   1   1   4   1  -1   1   4
## 1947    0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 1948    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   1
## 1949    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1950    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1951    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1952    1     0     0 -1  -1  -1   1   3   1   4   3   4   1   1
## 1953    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1954    1     0     0 -1  -1  -1   2  -1   1   2   3  -1   1   4
## 1955    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1956    0     0     0 -1   1  -1   1   4   2  -1   5  -1   2   4
## 1957    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1958    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1959    1     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1960    0     0     0 -1  -1   5   1   6   1   4   1  -1   1   1
## 1961    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   3
## 1962    0     0     0 -1  -1   1   2  -1   1   5   1  -1   1   4
## 1963    1     0     0 -1   1  -1   1   3   1   6   1  -1   1   4
## 1964    0     0     0 -1   1  -1   1   6   1   5   1  -1   1   4
## 1965    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1966    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1967    0     0     0 -1   5  -1   2  -1   1   3   5  -1   1   4
## 1968    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1969    0     0     0 -1  -1  -1   1   4   1   5   1  -1   1   1
## 1970    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1971    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1972    0     0     0 -1  -1  -1   1   6   2  -1   5  -1   1   4
## 1973    1     0     0 -1  -1   4   1   4   1   4   5   5   1   2
## 1974    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1975    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1976    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1977    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1978    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1979    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 1980    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1981    0     0     0 -1   1  -1   1   2   1   6   5  -1   1   1
## 1982    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1983    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1984    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1985    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1986    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1987    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 1988    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1989    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1990    0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 1991    0     1     0 -1  -1  -1   1   3   2  -1   5  -1   1   2
## 1992    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 1993    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1994    0     0     0 -1   7  -1   2  -1   1   6   2  -1   1   4
## 1995    0     0     0  2  -1  -1   1   2   1   2   4   4   1   1
## 1996    0     0     0 -1  -1  -1   1   6   2  -1   5  -1   1   1
## 1997    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 1998    0     0     0 -1  -1   1   1   2   2  -1   1  -1   1   4
## 1999    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2000    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 2001    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2002    1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   5
## 2003    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2004    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 2005    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2006    0     1     0 -1  -1  -1   2  -1   1   4   4  -1   1   1
## 2007    0     0     0 -1   6  -1   2  -1   1   3   5   1   1   1
## 2008    0     0     0 -1  -1  -1   2  -1   1   3   5   5   1   1
## 2009    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 2010    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 2011    0     0     0 -1  -1   5   1   4   1   5   5  -1   1   4
## 2012    0     0     0 -1  -1  -1   1   3   2  -1   1   1   1   4
## 2013    0     0     0 -1  -1  -1   1   2   1   3   1   1   1   1
## 2014    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   2
## 2015    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2016    0     0     0 -1   1  -1   1   6   2  -1   4  -1   4   4
## 2017    0     0     0  3  -1  -1   1   3   2  -1   1  -1   4   4
## 2018    0     0     0 -1   1   5   2  -1   1   3   1  -1   1   1
## 2019    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 2020    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2021    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2022    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 2023    0     0     0  1  -1  -1   1   1   1   4   3   3   1   1
## 2024    0     0     0 -1   6  -1   2  -1   1   4   4   1   4   1
## 2025    0     0     0 -1   6  -1   1   2   1   3   1   1   4   4
## 2026    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2027    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2028    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2029    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2030    1     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 2031    0     0     0 -1  -1   5   2  -1   2  -1   1   1   1   1
## 2032    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2033    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 2034    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2035    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2036    0     0     0 -1   1  -1   1   5   2  -1   1  -1   2   4
## 2037    0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 2038    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   3
## 2039    0     0     0 -1   4  -1   1   3   2  -1   5  -1   1   4
## 2040    1     0     0 -1   7  -1   1   3   2  -1   5   5   1   1
## 2041    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 2042    0     0     0 -1   1  -1   1   2   2  -1   5  -1   4   4
## 2043    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 2044    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2045    0     0     0 -1  -1  -1   1   5   1   3   1  -1   1   1
## 2046    0     0     0 -1  -1   4   1   2   1   1   3   5   1   1
## 2047    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 2048    0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   4
## 2049    1     0     0 -1   3  -1   2  -1   1   5   1  -1   4   4
## 2050    0     0     0 -1   6  -1   2  -1   1   5   1  -1   1   4
## 2051    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 2052    0     0     0  6  -1  -1   2  -1   2  -1   5  -1   1   4
## 2053    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2054    0     0     0 -1   4  -1   2  -1   2  -1   1   1   1   1
## 2055    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2056    0     0     0 -1  -1  -1   1   3   1   6   3  -1   1   1
## 2057    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2058    0     0     0 -1   1   5   1   5   2  -1   1  -1   1   1
## 2059    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2060    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   2
## 2061    1     0     0 -1  -1   1   2  -1   2  -1   1   1   4   4
## 2062    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 2063    0     0     0 -1   1  -1   1   1   1   5   1  -1   1   1
## 2064    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 2065    0     0     0 -1   1  -1   1   3   2  -1   3   5   1   2
## 2066    0     0     0 -1   6  -1   1   1   1   2   5  -1   1   1
## 2067    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2068    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2069    0     0     0 -1  -1   1   2  -1   1   3   1  -1   1   4
## 2070    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2071    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 2072    0     0     0 -1   7   7   1   6   2  -1   1  -1   1   2
## 2073    0     0     0 -1   3  -1   1   3   2  -1   4  -1   1   4
## 2074    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 2075    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2076    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2077    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 2078    0     0     0  1   1  -1   1   3   2  -1   4  -1   1   1
## 2079    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 2080    0     0     0 -1   1   5   1   4   1   2   1  -1   1   1
## 2081    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2082    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2083    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2084    1     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 2085    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2086    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 2087    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2088    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2089    0     0     0 -1  -1  -1   1   6   1   2   5  -1   4   4
## 2090    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2091    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 2092    0     0     0 -1  -1   1   2  -1   2  -1   5  -1   4   4
## 2093    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2094    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 2095    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2096    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2097    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 2098    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2099    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2100    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 2101    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2102    0     0     0 -1   7  -1   1   2   2  -1   1  -1   4   4
## 2103    0     0     0 -1   4  -1   2  -1   1   3   1   1   1   1
## 2104    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   1
## 2105    0     0     0 -1  -1   7   2  -1   2  -1   3  -1   4   4
## 2106    0     0     0 -1   1  -1   1   4   1   2   3  -1   1   4
## 2107    1     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 2108    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2109    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 2110    1     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 2111    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   1
## 2112    0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   4
## 2113    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2114    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2115    0     0     0 -1   1  -1   1   6   1   5   1  -1   1   4
## 2116    0     0     0 -1   5  -1   2  -1   2  -1   1   1   1   4
## 2117    0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 2118    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 2119    1     0     0  2  -1   8   1   3   1   3   4  -1   1   1
## 2120    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   2
## 2121    0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   2
## 2122    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 2123    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 2124    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2125    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2126    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   5   5
## 2127    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2128    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2129    1     0     0 -1   1  -1   2  -1   1   3   1  -1   1   1
## 2130    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2131    0     0     0 -1   6  -1   2  -1   1   6   1  -1   1   2
## 2132    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2133    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 2134    0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   2
## 2135    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2136    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2137    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2138    1     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 2139    0     0     0 -1   1  -1   1   3   1   3   1  -1   4   4
## 2140    0     0     0 -1   1  -1   1   2   1   3   1  -1   1   4
## 2141    0     0     0 -1   6  -1   1   2   1   2   5  -1   1   1
## 2142    0     0     0 -1   1  -1   1   5   1   6   1  -1   1   4
## 2143    0     0     0 -1  -1  -1   1   3   1   6   5  -1   1   4
## 2144    0     0     0 -1   1  -1   2  -1   1   3   5  -1   4   4
## 2145    0     0     0 -1   1  -1   2  -1   1   6   3  -1   1   4
## 2146    0     0     0  2  -1  -1   1   6   1   3   5   5   1   1
## 2147    0     0     0 -1   7  -1   1   3   2  -1   3  -1   1   1
## 2148    0     0     0 -1   6  -1   2  -1   1   3   1   1   1   1
## 2149    0     0     0 -1  -1   4   1   5   2  -1   1  -1   1   4
## 2150    0     0     0 -1   4  -1   2  -1   2  -1   4   4   1   1
## 2151    0     0     0 -1   3  -1   1   4   1   1   1  -1   1   1
## 2152    0     0     0 -1   1  -1   2  -1   1   4   5   5   1   4
## 2153    1     0     0 -1   1  -1   1   2   1   5   4   4   1   4
## 2154    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 2155    0     0     0 -1   1  -1   1   6   2  -1   3   3   1   1
## 2156    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   1   1
## 2157    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2158    0     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 2159    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   2
## 2160    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2161    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 2162    0     0     0 -1   6  -1   1   6   2  -1   5  -1   1   1
## 2163    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2164    0     0     0  1  -1  -1   1   4   2  -1   5  -1   1   1
## 2165    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2166    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2167    0     0     0 -1   6  -1   2  -1   1   3   2   2   1   1
## 2168    0     0     0 -1  -1   7   2  -1   1   6   1  -1   1   1
## 2169    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2170    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2171    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2172    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2173    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 2174    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2175    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   1
## 2176    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   2
## 2177    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 2178    0     0     0 -1   1  -1   2  -1   1   5   1   1   1   2
## 2179    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 2180    0     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 2181    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2182    0     0     0 -1   1  -1   1   1   2  -1   5  -1   4   4
## 2183    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 2184    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 2185    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2186    0     0     0 -1   7  -1   2  -1   1   2   1  -1   1   2
## 2187    0     0     0 -1   6  -1   2  -1   2  -1   4   4   1   1
## 2188    0     0     0  2  -1  -1   1   4   1   3   4  -1   1   4
## 2189    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2190    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2191    0     0     0 -1   1  -1   1   6   1   2   1  -1   1   4
## 2192    0     0     0 -1   5  -1   1   3   1   3   1  -1   1   4
## 2193    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2194    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2195    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2196    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   5   5
## 2197    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   2
## 2198    0     0     0  1  -1  -1   2  -1   2  -1   4   3   1   1
## 2199    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2200    0     0     0  1  -1  -1   1   3   2  -1   4   4   1   1
## 2201    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 2202    0     0     0  1   1  -1   1   3   2  -1   4  -1   1   1
## 2203    0     0     0 -1  -1  -1   2  -1   2  -1   1   4   1   2
## 2204    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2205    0     1     0 -1  -1  -1   1   3   1   3   4  -1   1   2
## 2206    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2207    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2208    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2209    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2210    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2211    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   2
## 2212    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 2213    0     0     0  1  -1  -1   1   3   1   1   1   4   1   1
## 2214    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2215    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2216    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2217    0     0     0 -1   1  -1   2  -1   1   4   5  -1   2   4
## 2218    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2219    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2220    0     0     0 -1   2  -1   1   2   1   4   3   1   1   4
## 2221    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 2222    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2223    0     0     0 -1  -1  -1   1   2   2  -1   4  -1   1   1
## 2224    1     0     0 -1  -1  -1   1   3   1   2   4   4   1   2
## 2225    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2226    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 2227    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2228    0     1     0 -1  -1  -1   1   5   1   4   5  -1   1   1
## 2229    0     0     0 -1   6  -1   1   3   2  -1   3   2   1   1
## 2230    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2231    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2232    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2233    0     0     0 -1  -1  -1   2  -1   2  -1   5   4   1   1
## 2234    0     0     0 -1   5  -1   1   2   2  -1   5  -1   1   2
## 2235    0     0     0 -1   6  -1   1   3   1   2   4   4   1   4
## 2236    0     0     0 -1   1  -1   1   3   2  -1   4  -1   1   4
## 2237    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2238    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2239    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2240    0     0     0 -1  -1  -1   1   3   1   5   1  -1   1   1
## 2241    1     0     0 -1   1  -1   2  -1   1   4   1  -1   5   5
## 2242    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 2243    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2244    0     0     0 -1   7  -1   2  -1   2  -1   1   4   1   1
## 2245    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 2246    0     0     0 -1   1  -1   2  -1   1   6   5   1   4   4
## 2247    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 2248    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 2249    0     0     0 -1  -1   5   2  -1   2  -1   1   1   1   1
## 2250    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2251    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2252    0     0     0 -1   1  -1   1   6   1   3   5  -1   1   4
## 2253    0     0     0  6  -1  -1   2  -1   2  -1   1  -1   1   1
## 2254    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 2255    0     0     0  1  -1  -1   1   3   1   4   3   3   1   1
## 2256    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2257    0     0     0 -1   6  -1   1   2   2  -1   1   3   1   1
## 2258    0     0     0  2  -1  -1   2  -1   1   5   1  -1   1   1
## 2259    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2260    1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 2261    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2262    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   1
## 2263    1     0     0 -1   3  -1   2  -1   1   6   1   4   1   1
## 2264    0     0     0 -1   2  -1   1   3   2  -1   1  -1   1   4
## 2265    1     0     0 -1  -1  -1   2  -1   1   3   5  -1   4   4
## 2266    1     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 2267    0     0     0 -1   5   7   2  -1   1   3   1  -1   1   1
## 2268    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2269    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2270    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2271    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2272    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 2273    0     0     0 -1  -1  -1   1   4   1   2   1  -1   1   4
## 2274    0     0     0 -1   6  -1   1   3   2  -1   4  -1   1   4
## 2275    1     0     0 -1   1  -1   1   1   1   3   1  -1   1   4
## 2276    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2277    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2278    0     0     0 -1   5  -1   1   4   1   5   1  -1   1   1
## 2279    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2280    0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   4
## 2281    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2282    0     0     0 -1   8  -1   2  -1   2  -1   1  -1   1   1
## 2283    0     0     0 -1  -1   1   2  -1   1   4   1  -1   4   4
## 2284    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2285    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2286    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2287    1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 2288    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 2289    0     0     0  2  -1  -1   1   3   2  -1   1  -1   1   2
## 2290    0     1     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 2291    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2292    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2293    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2294    0     0     0 -1   1  -1   1   5   1   4   1  -1   1   4
## 2295    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2296    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2297    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 2298    1     0     0 -1  -1  -1   2  -1   1   2   1  -1   4   4
## 2299    0     1     0 -1  -1  -1   1   4   1   3   5  -1   1   4
## 2300    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2301    0     0     0 -1   1  -1   1   4   1   4   5   5   1   4
## 2302    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2303    0     0     0 -1   1  -1   2  -1   2  -1   4   4   1   2
## 2304    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   1
## 2305    0     1     0 -1  -1  -1   2  -1   2  -1   2  -1   1   1
## 2306    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 2307    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2308    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2309    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 2310    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2311    0     0     0 -1   1  -1   2  -1   1   4   5  -1   2   4
## 2312    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2313    0     0     0 -1   1  -1   1   2   1   4   5  -1   1   1
## 2314    1     0     0 -1   1  -1   2  -1   1   6   5   4   1   5
## 2315    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2316    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   1
## 2317    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2318    0     0     0  2  -1  -1   1   4   2  -1   3  -1   1   1
## 2319    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 2320    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2321    1     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   3
## 2322    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2323    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2324    0     0     0 -1   1   5   2  -1   1   3   1  -1   1   2
## 2325    0     0     0 -1   1  -1   1   4   1   3   4  -1   1   4
## 2326    0     0     0  2  -1  -1   1   1   1   1   5   1   1   1
## 2327    0     0     0 -1   5  -1   1   3   1   4   5   4   1   1
## 2328    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   2
## 2329    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 2330    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2331    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2332    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2333    0     0     0 -1   1  -1   1   2   1   5   5  -1   1   1
## 2334    0     0     0 -1   1  -1   1   6   2  -1   1   1   1   1
## 2335    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2336    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   1
## 2337    1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 2338    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2339    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 2340    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2341    1     0     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 2342    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2343    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2344    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 2345    0     0     0 -1   1  -1   1   4   1   6   4   1   1   3
## 2346    0     1     0 -1  -1  -1   2  -1   1   5   5   5   1   5
## 2347    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2348    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 2349    0     0     0 -1   5  -1   2  -1   2  -1   1   1   1   1
## 2350    0     0     0 -1  10  -1   1   3   2  -1   2   4   1   1
## 2351    0     0     0 -1   8  -1   2  -1   1   4   1  -1   1   4
## 2352    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 2353    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2354    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2355    0     0     0 -1   1  -1   1   4   2  -1   1  -1   4   4
## 2356    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2357    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   5   5
## 2358    0     0     0  1   6  -1   1   2   1   2   4   1   1   1
## 2359    0     0     0 -1  -1  -1   1   4   1   1   4  -1   1   1
## 2360    0     0     0 -1   6  -1   1   6   1   5   1   1   1   4
## 2361    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2362    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2363    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2364    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2365    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2366    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2367    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2368    0     0     0  6   1  -1   2  -1   1   3   1  -1   1   4
## 2369    0     0     0 -1   1  -1   1   2   2  -1   1  -1   4   4
## 2370    0     1     0 -1  -1  -1   1   5   1   2   5  -1   1   1
## 2371    0     0     0 -1  -1   4   1   3   1   1   2   5   1   1
## 2372    0     0     0 -1   5  -1   2  -1   1   6   5  -1   4   4
## 2373    1     0     0 -1   3  -1   2  -1   1   4   1  -1   1   4
## 2374    0     0     0  2  -1  -1   1   3   1   3   5   4   1   1
## 2375    1     0     0 -1  -1  -1   1   3   1   4   5   4   1   4
## 2376    0     0     0 -1  -1  -1   2  -1   1   2   4  -1   1   2
## 2377    0     0     0  1   1  -1   1   3   1   2   5   5   1   1
## 2378    1     0     0 -1  -1  -1   1   2   1   2   4   5   1   1
## 2379    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2380    1     0     0 -1  -1  -1   1   4   1   2   1   1   1   4
## 2381    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 2382    1     0     0 -1   1  -1   2  -1   1   4   5  -1   4   4
## 2383    0     0     0 -1   1   4   1   4   1   3   1  -1   1   1
## 2384    0     0     0 -1  -1  -1   1   2   1   2   4   4   1   1
## 2385    0     0     0 -1   6  -1   1   4   2  -1   1  -1   1   5
## 2386    1     0     0 -1  -1  -1   2  -1   1   3   5   5   1   4
## 2387    0     0     0  1  -1  -1   2  -1   2  -1   5   5   1   1
## 2388    1     0     0 -1  -1  -1   1   5   1   4   4  -1   1   1
## 2389    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2390    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2391    0     1     0 -1  -1  -1   2  -1   1   1   1  -1   1   4
## 2392    0     0     0 -1   4  -1   1   3   1   5   1  -1   1   1
## 2393    0     0     0  2  -1  -1   1   3   2  -1   1  -1   1   1
## 2394    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2395    1     0     0 -1  -1  -1   1   5   1   1   5   1   1   4
## 2396    0     0     0 -1   6  -1   2  -1   1   4   1  -1   1   4
## 2397    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2398    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 2399    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2400    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 2401    0     0     0  1  -1  -1   2  -1   1   1   3   4   1   1
## 2402    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2403    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2404    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2405    1     0     0 -1  -1  -1   1   6   1   1   1  -1   1   1
## 2406    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2407    1     0     0 -1   6  -1   1   6   1   3   1  -1   1   4
## 2408    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 2409    0     0     0 -1   7  -1   1   3   2  -1   1  -1   1   4
## 2410    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 2411    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2412    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   4   4
## 2413    0     0     0 -1  -1  -1   2  -1   1   4   1   1   1   4
## 2414    0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 2415    0     0     0 -1   1   9   1   2   1   2   3   3   1   4
## 2416    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2417    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2418    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 2419    0     0     0 -1   1  -1   2  -1   1   1   5  -1   1   4
## 2420    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 2421    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2422    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2423    0     0     0 -1   1  -1   1   5   1   3   5  -1   1   1
## 2424    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2425    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 2426    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   1
## 2427    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2428    1     0     0 -1   6  -1   1   2   1   1   3  -1   1   1
## 2429    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   1
## 2430    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2431    0     0     0 -1   6  -1   1   2   1   2   4  -1   4   4
## 2432    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2433    1     0     0 -1  -1  -1   1   6   1   2   3   1   1   1
## 2434    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 2435    1     0     0 -1   1  -1   2  -1   1   4   4   4   1   4
## 2436    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2437    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2438    0     0     0 -1  -1  -1   1   2   1   2   2   4   1   1
## 2439    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2440    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2441    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 2442    0     0     0 -1   1  -1   2  -1   1   4   4  -1   1   4
## 2443    0     0     0  1  -1  -1   1   3   1   4   5   5   1   1
## 2444    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 2445    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 2446    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2447    0     0     0 -1   4  -1   2  -1   2  -1   1   1   1   4
## 2448    0     0     0  7   1  -1   2  -1   2  -1   1  -1   1   2
## 2449    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   1
## 2450    0     0     0 -1   5  -1   1   1   1   3   4  -1   1   1
## 2451    0     0     0 -1   1  -1   1   4   1   4   4   4   1   4
## 2452    0     0     0 -1   5  -1   1   3   1   3   3   3   1   4
## 2453    0     0     0 -1   4  -1   1   2   2  -1   5  -1   1   2
## 2454    0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 2455    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2456    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2457    1     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   4
## 2458    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   4   4
## 2459    1     0     0 -1   6   5   2  -1   1   2   4  -1   1   1
## 2460    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2461    0     0     0 -1   1  -1   1   3   1   4   4  -1   1   4
## 2462    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 2463    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 2464    0     0     0 -1  -1   7   1   2   1   4   5   4   1   1
## 2465    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2466    0     0     0 -1  -1  -1   1   5   2  -1   1  -1   4   4
## 2467    0     0     0 -1   1  -1   2  -1   1   2   4  -1   1   1
## 2468    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2469    0     0     0 -1   1  -1   2  -1   1   4   5  -1   2   4
## 2470    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2471    0     0     0 -1   6  -1   1   6   2  -1   1  -1   1   4
## 2472    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   1
## 2473    0     0     0  3   1  -1   1   2   1   2   5   5   4   4
## 2474    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2475    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2476    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 2477    0     0     0 -1   3  -1   1   4   1   4   5  -1   1   4
## 2478    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2479    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2480    0     0     0 -1   1  -1   1   2   2  -1   5   4   1   4
## 2481    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2482    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 2483    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2484    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2485    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2486    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 2487    1     0     0 -1  -1  -1   1   5   1   4   3   1   1   1
## 2488    0     0     0 -1   3   5   2  -1   1   3   1  -1   4   4
## 2489    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2490    0     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 2491    0     1     0 -1  -1  -1   1   5   1   6   5  -1   1   1
## 2492    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   2   4
## 2493    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2494    0     0     0 -1   5  -1   1   3   1   2   5  -1   1   1
## 2495    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   2
## 2496    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2497    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 2498    0     0     0 -1  -1   1   1   4   2  -1   4   3   1   1
## 2499    0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 2500    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2501    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   2
## 2502    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2503    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2504    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2505    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2506    0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   4
## 2507    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2508    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2509    1     0     0 -1  -1  -1   1   3   1   3   1   4   1   1
## 2510    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 2511    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 2512    0     0     0 -1   1  -1   1   3   1   6   5  -1   1   4
## 2513    0     0     0 -1  -1  -1   1   5   1   5   1  -1   1   4
## 2514    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2515    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 2516    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2517    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 2518    0     0     0 -1   1  -1   1   4   1   2   5  -1   1   1
## 2519    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2520    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2521    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   5
## 2522    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2523    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 2524    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   2
## 2525    0     0     0 -1  -1  -1   2  -1   1   1   1  -1   4   4
## 2526    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2527    0     0     0 -1   6  -1   2  -1   1   2   1  -1   1   4
## 2528    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 2529    0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 2530    0     0     0  2  -1  -1   1   4   1   3   5   1   1   2
## 2531    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2532    0     0     0 -1  -1  -1   1   1   1   3   1  -1   1   1
## 2533    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2534    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2535    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 2536    0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 2537    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2538    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 2539    0     0     0 -1  -1  -1   1   5   1   2   5  -1   1   4
## 2540    0     0     0 -1   7  -1   1   3   2  -1   5   1   1   4
## 2541    0     0     0  1  -1  -1   2  -1   2  -1   1   1   1   1
## 2542    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 2543    1     0     0 -1   7  -1   1   3   1   5   4  -1   1   1
## 2544    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2545    0     0     0 -1   1  -1   2  -1   1   2   3  -1   1   4
## 2546    0     0     0 -1  -1  -1   1   4   2  -1   4  -1   1   4
## 2547    0     0     0 -1   1  -1   1   4   1   2   5   5   1   4
## 2548    0     0     0 -1   1   7   2  -1   2  -1   1  -1   4   4
## 2549    0     0     0 -1   1  -1   1   3   2  -1   1   1   2   4
## 2550    0     0     0 -1   6  -1   2  -1   1   5   5  -1   1   4
## 2551    0     0     0 -1   1   7   2  -1   1   1   1   5   1   4
## 2552    0     0     0 -1  -1   4   2  -1   1   3   5  -1   1   4
## 2553    0     0     0 -1   1  -1   1   3   1   3   5  -1   1   1
## 2554    0     0     0 -1   1  -1   1   3   1   3   5  -1   1   1
## 2555    0     0     0 -1  -1  -1   1   4   2  -1   1  -1   4   4
## 2556    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 2557    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   2   4
## 2558    0     0     0 -1   8   4   1   3   1   3   5  -1   1   2
## 2559    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2560    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 2561    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   1
## 2562    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2563    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   5   4
## 2564    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 2565    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2566    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2567    0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 2568    0     0     0 -1   7  -1   1   6   1   6   5   4   1   5
## 2569    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2570    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2571    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2572    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   1
## 2573    0     0     0 -1   1  -1   1   3   1   2   5  -1   1   4
## 2574    0     0     0 -1   1  -1   2  -1   1   2   4  -1   1   4
## 2575    1     0     0 -1   6  -1   2  -1   1   6   5   4   1   4
## 2576    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2577    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 2578    0     0     0 -1   4  -1   2  -1   1   6   5  -1   1   4
## 2579    0     0     0  2  -1  -1   1   3   1   5   1   1   1   1
## 2580    0     0     0 -1  -1   1   1   4   1   3   5  -1   1   4
## 2581    0     0     0 -1   1  -1   1   1   1   3   5   5   1   4
## 2582    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 2583    0     0     0 -1   1  -1   2  -1   1   4   5  -1   4   4
## 2584    1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 2585    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   1
## 2586    0     0     0 -1  -1   5   1   2   1   4   1   1   1   4
## 2587    0     0     0 -1   6  -1   1   2   1   3   5  -1   1   4
## 2588    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 2589    0     0     0 -1   1  -1   2  -1   1   4   5  -1   4   4
## 2590    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2591    0     0     0  2  -1  -1   2  -1   2  -1   1   1   1   1
## 2592    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2593    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 2594    1     0     0 -1   1   7   2  -1   2  -1   1  -1   1   4
## 2595    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2596    1     0     0 -1   1  -1   1   2   2  -1   1  -1   1   4
## 2597    0     0     0 -1   1  -1   1   5   2  -1   5  -1   1   2
## 2598    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2599    0     0     0 -1   1  -1   1   3   1   3   4  -1   1   1
## 2600    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 2601    0     0     0 -1   6  -1   1   1   1   6   2   2   1   1
## 2602    0     0     0  2  -1  -1   1   6   1   3   1  -1   1   1
## 2603    0     0     0 -1   2  -1   1   3   2  -1   5   5   1   1
## 2604    0     1     0 -1  -1  -1   2  -1   2  -1   5  -1   1   1
## 2605    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   2
## 2606    0     0     0 -1   1  -1   1   6   2  -1   1   1   1   1
## 2607    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2608    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2609    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2610    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2611    0     0     0 -1   1  -1   1   2   1   4   1   4   1   4
## 2612    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2613    0     0     0 -1   1  -1   1   3   1   4   4   1   2   4
## 2614    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2615    0     0     0 -1  -1   5   1   3   2  -1   1  -1   1   4
## 2616    0     0     0 -1   6  -1   1   3   2  -1   1  -1   1   4
## 2617    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2618    0     0     0 -1   1  -1   1   6   1   2   1  -1   1   4
## 2619    0     0     0  3  -1  -1   1   5   1   2   4   4   1   1
## 2620    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 2621    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 2622    0     0     0 -1   1  -1   1   5   1   5   1  -1   1   1
## 2623    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2624    0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   4
## 2625    0     0     0 -1  -1   1   2  -1   2  -1   1   1   1   2
## 2626    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2627    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2628    1     0     0 -1  -1  -1   1   4   1   3   5  -1   1   1
## 2629    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2630    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2631    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
##        Latitude Longitude mobile_money savings borrowing insurance
## 1     -4.460442  29.81140            0       0         0         0
## 2     -6.176438  39.24487            1       1         1         0
## 3     -6.825702  37.65280            1       0         0         0
## 4     -3.372049  35.80831            1       0         1         0
## 5     -7.179645  31.03910            1       1         0         1
## 6     -6.362331  37.13774            0       0         1         0
## 7     -8.089257  35.83641            1       1         1         1
## 8     -8.916028  33.43390            1       1         0         0
## 9     -3.972247  32.64995            0       1         1         0
## 10    -8.033973  35.76942            1       0         0         1
## 11    -3.619491  33.81397            1       1         1         0
## 12    -8.847496  34.82359            1       0         0         0
## 13   -10.743503  34.73308            0       1         1         0
## 14    -8.295917  31.50903            0       0         0         0
## 15    -6.169053  39.19849            1       0         0         0
## 16    -1.338745  30.90012            0       0         0         0
## 17   -10.488371  39.02762            1       0         0         0
## 18    -3.180342  36.86124            1       1         1         0
## 19    -1.261826  30.67859            1       1         1         0
## 20    -7.782641  35.66560            1       1         0         0
## 21    -4.614918  29.78761            1       1         0         0
## 22    -2.597419  32.91360            1       0         1         0
## 23   -10.918859  38.00266            1       1         0         0
## 24    -8.871831  34.95540            0       1         0         0
## 25    -5.072699  38.45452            1       0         1         0
## 26    -7.774543  35.69338            1       1         1         0
## 27    -6.219971  39.23240            1       1         1         0
## 28    -1.324064  31.79063            1       1         1         0
## 29    -3.352235  37.34739            1       1         1         1
## 30    -6.819066  37.64553            1       1         1         0
## 31    -4.290469  35.85897            1       0         0         0
## 32    -2.762266  33.61668            1       1         0         0
## 33    -8.898817  33.54752            1       0         1         0
## 34    -3.831435  32.68175            0       0         1         1
## 35    -8.568090  32.12580            1       0         0         0
## 36   -11.467450  36.97929            0       1         0         0
## 37    -4.090220  34.73737            0       1         0         0
## 38   -10.511796  38.99460            1       1         1         0
## 39    -5.035472  36.23767            0       0         1         0
## 40    -2.402577  32.32959            1       0         1         0
## 41    -3.808334  32.22749            0       0         1         1
## 42    -8.539498  32.94379            0       0         1         0
## 43    -4.833257  34.76190            1       1         1         0
## 44    -5.717437  38.23602            1       0         0         0
## 45    -8.603990  39.26019            1       1         0         0
## 46    -2.545407  32.95832            1       0         0         0
## 47    -3.871321  35.65141            0       1         0         0
## 48    -8.564092  35.33906            1       1         1         0
## 49    -4.225851  34.61299            1       1         1         1
## 50    -8.953660  32.56462            1       0         0         0
## 51    -3.996847  33.37908            0       1         1         0
## 52    -2.611466  32.07196            0       0         1         0
## 53    -8.978150  36.76014            0       1         1         0
## 54    -2.340967  32.29512            1       1         1         0
## 55    -3.432752  31.51375            1       0         1         0
## 56    -8.128108  30.96697            0       0         1         0
## 57    -6.265031  36.86941            0       0         1         0
## 58   -10.488619  39.02783            1       0         1         0
## 59    -4.025963  34.50822            0       0         0         0
## 60    -8.571489  33.44991            1       1         0         0
## 61    -2.506709  32.01181            1       1         0         0
## 62    -3.363681  36.72003            1       1         1         0
## 63    -6.968397  39.08682            1       1         1         1
## 64    -6.372752  38.35172            0       1         1         0
## 65    -3.252335  30.90823            0       0         0         0
## 66   -10.662969  35.65687            1       0         1         0
## 67    -2.852849  32.88685            1       0         1         0
## 68   -10.467358  36.13245            1       1         0         0
## 69    -6.875757  39.23261            1       1         0         0
## 70    -6.883295  39.25355            1       1         1         0
## 71    -3.821738  33.30840            0       0         1         0
## 72   -11.263398  34.79128            1       1         1         1
## 73    -7.854259  31.17578            0       0         1         0
## 74    -4.268603  38.05357            1       1         0         0
## 75   -11.400793  36.42849            1       0         0         0
## 76    -6.148147  39.22280            1       0         1         0
## 77    -8.797980  34.99026            0       1         0         0
## 78    -6.290723  35.88228            0       0         0         1
## 79    -4.573588  33.03776            1       0         1         0
## 80    -5.245949  39.78153            0       0         0         0
## 81    -3.202463  37.20557            1       1         1         0
## 82   -10.750776  38.53077            1       0         0         0
## 83    -6.570029  35.51702            0       0         0         0
## 84    -6.931571  39.26271            0       0         0         0
## 85    -5.959047  36.69328            0       0         0         0
## 86   -10.919896  39.38173            0       1         0         0
## 87    -1.940385  32.85856            0       0         0         0
## 88    -9.330313  33.71555            1       1         1         0
## 89    -3.350379  37.30189            1       0         1         1
## 90    -3.365591  33.53727            1       1         1         0
## 91    -9.237312  34.89158            0       1         1         0
## 92    -9.493857  34.65333            1       0         1         0
## 93   -10.674737  35.64183            1       1         1         0
## 94    -9.930898  39.72115            0       0         0         0
## 95    -3.903049  35.81426            0       0         0         0
## 96    -6.833702  39.24087            1       0         0         0
## 97    -3.627541  33.40639            0       0         0         0
## 98    -2.040158  33.83592            0       0         1         0
## 99    -2.745153  31.88754            1       0         1         0
## 100   -3.674167  33.44101            1       1         1         0
## 101   -7.757071  35.48008            1       1         0         0
## 102   -7.255773  31.39929            1       1         1         0
## 103   -6.170265  39.22253            1       1         0         0
## 104  -10.519409  38.67833            1       1         0         1
## 105   -8.460328  32.15848            0       0         1         0
## 106   -7.681498  36.03874            1       0         1         1
## 107   -2.774334  32.70359            0       1         1         0
## 108   -1.498239  33.80839            1       1         0         0
## 109   -4.796151  38.29238            1       0         0         0
## 110   -2.416812  32.93535            1       0         0         0
## 111   -7.289010  38.99792            1       0         1         0
## 112  -11.042891  37.43361            0       0         0         0
## 113   -9.240114  33.33921            0       0         0         0
## 114   -4.642396  38.32172            0       0         0         0
## 115   -8.295487  31.52009            0       0         0         0
## 116   -6.885442  39.15487            1       0         0         0
## 117   -8.584248  35.20766            1       0         0         0
## 118   -2.037014  33.02725            0       1         1         1
## 119   -3.545571  36.98625            0       0         0         0
## 120  -10.281696  40.19748            1       0         0         0
## 121   -9.335193  34.76613            0       1         0         0
## 122  -11.107797  39.32546            0       0         0         0
## 123   -9.295657  32.75979            1       0         1         0
## 124   -6.819074  39.23892            1       1         0         0
## 125   -8.616326  39.26434            0       0         1         0
## 126   -3.147341  32.36981            0       0         0         0
## 127   -3.348855  35.78177            1       0         1         0
## 128   -5.605736  36.56213            0       0         1         0
## 129   -1.875367  33.70181            0       0         0         1
## 130   -6.220586  39.23271            1       0         0         0
## 131   -4.613718  34.95000            1       1         1         1
## 132   -2.844044  33.08184            1       1         1         1
## 133   -7.780921  35.69346            0       0         0         0
## 134   -3.282538  32.87852            0       0         0         0
## 135  -10.779779  39.54917            1       1         1         0
## 136   -8.844225  34.82568            1       0         0         0
## 137   -7.110450  31.16725            0       0         0         1
## 138  -10.663179  38.75114            1       1         1         1
## 139   -8.635658  31.42978            1       0         1         0
## 140  -10.853290  39.27796            1       0         0         0
## 141   -4.760987  34.58148            0       1         1         0
## 142   -6.907859  39.16891            1       1         0         1
## 143   -9.010237  33.00567            1       0         0         0
## 144   -1.959388  35.34817            0       0         0         0
## 145   -8.905958  33.46200            1       1         1         1
## 146  -10.629344  35.70398            1       0         0         0
## 147   -5.241083  32.33783            0       0         0         0
## 148   -3.358085  36.68217            1       1         1         0
## 149   -9.405595  39.59767            0       0         0         0
## 150   -6.121117  38.40738            1       1         0         0
## 151   -6.857071  39.28186            1       0         0         0
## 152   -3.420720  30.74116            0       0         1         0
## 153   -6.798244  39.24889            1       1         0         0
## 154  -10.661450  35.65716            1       1         0         0
## 155   -6.163611  39.19200            0       0         0         0
## 156   -7.750966  35.86474            1       1         1         1
## 157  -10.784345  38.62104            0       0         1         0
## 158   -5.618218  32.74653            1       0         0         0
## 159   -8.847223  34.82324            0       0         0         0
## 160   -6.153780  35.73856            1       0         0         0
## 161   -4.215867  35.73768            1       0         0         0
## 162   -8.695957  34.37510            1       1         0         1
## 163   -8.777397  33.64056            1       0         1         0
## 164   -7.251994  31.39577            0       0         0         0
## 165   -2.597026  32.91296            1       1         0         0
## 166   -1.302024  33.94419            1       0         0         0
## 167   -6.897877  39.28304            1       0         0         0
## 168   -4.775708  33.23886            0       0         0         0
## 169   -9.294164  32.76012            0       0         0         0
## 170  -10.551023  39.79038            0       1         0         1
## 171   -4.362962  35.07469            1       0         1         0
## 172   -8.802597  34.22394            1       0         0         0
## 173   -9.463246  33.95387            0       1         0         0
## 174  -10.849092  39.69424            0       0         0         0
## 175   -8.860809  34.00852            0       0         0         0
## 176   -7.934367  35.62788            1       1         0         1
## 177   -6.156445  39.21357            1       0         1         0
## 178   -1.497544  33.81604            1       1         1         1
## 179   -2.415815  32.93552            1       0         1         0
## 180  -10.344932  40.24872            0       0         1         0
## 181   -6.844976  39.27956            1       1         1         0
## 182   -4.269849  38.05020            1       0         1         0
## 183   -6.191095  31.22190            1       0         1         1
## 184   -1.568206  30.88958            0       0         1         0
## 185   -3.253247  34.21561            0       0         1         0
## 186   -9.954110  39.32897            0       0         1         0
## 187   -5.052858  33.49014            0       1         1         0
## 188   -2.401976  32.33061            0       0         0         0
## 189  -10.442330  36.05890            0       0         1         1
## 190   -2.535150  32.96039            1       1         1         1
## 191   -4.065121  35.28788            0       0         0         0
## 192   -2.752715  31.88174            1       0         1         0
## 193  -10.828834  34.88715            1       0         1         0
## 194   -2.776980  32.70354            0       1         1         0
## 195   -3.871249  35.65141            0       0         0         0
## 196   -5.867472  35.07340            0       1         0         0
## 197   -4.873362  38.45562            1       0         1         0
## 198   -6.184964  39.20752            1       1         0         0
## 199   -6.793946  39.25061            1       1         1         0
## 200   -3.287257  37.37458            0       0         0         0
## 201   -9.331522  33.33315            1       0         0         0
## 202   -3.353460  37.56767            1       0         0         0
## 203   -5.011343  32.80220            1       0         0         0
## 204   -2.060479  35.47691            0       0         0         0
## 205   -3.545911  36.98624            1       1         0         0
## 206   -8.074549  31.93359            0       1         0         0
## 207   -5.866409  35.13523            0       1         1         0
## 208   -2.769081  32.69200            1       1         1         0
## 209   -6.743296  32.48179            0       0         0         0
## 210   -8.590996  35.15098            1       0         1         0
## 211   -4.455599  33.95443            0       1         0         0
## 212   -8.906000  33.45583            1       0         1         0
## 213   -4.603282  34.65740            0       1         0         0
## 214   -2.609280  32.06952            0       0         1         0
## 215   -1.723663  33.96093            1       1         0         0
## 216   -2.636411  32.27621            1       0         0         0
## 217   -5.183178  39.79332            0       0         0         0
## 218   -6.811831  39.24486            0       1         1         0
## 219   -6.657472  37.14428            1       0         1         0
## 220   -5.125592  38.38524            1       0         0         0
## 221   -6.128432  39.21582            0       1         1         0
## 222   -7.490266  30.59744            0       0         0         0
## 223   -3.525608  35.34402            1       0         0         0
## 224   -8.696757  34.37410            0       0         0         1
## 225   -6.662062  37.13561            1       1         1         0
## 226   -4.185944  33.13411            1       0         1         0
## 227  -11.112992  38.47258            0       1         1         1
## 228   -7.141858  39.07478            0       1         1         0
## 229   -6.142630  39.24135            1       0         1         0
## 230   -4.188187  33.12340            0       1         1         0
## 231   -6.844786  39.27936            0       0         0         0
## 232   -6.173131  39.22521            0       0         0         0
## 233   -9.164725  33.81672            0       0         1         0
## 234   -6.212815  34.83488            1       1         0         1
## 235   -4.466974  35.69146            0       0         0         0
## 236   -2.905372  32.74710            0       1         1         0
## 237   -4.849303  34.83936            0       1         1         0
## 238   -9.011469  33.00584            0       0         0         0
## 239   -6.148424  39.22327            1       0         1         0
## 240   -2.018018  33.87930            0       1         0         0
## 241   -7.697167  35.62144            1       1         0         0
## 242   -4.744900  29.69787            1       1         0         1
## 243  -11.112724  38.47243            1       1         0         1
## 244   -3.300823  34.20970            0       1         0         0
## 245   -3.387680  36.67019            1       1         1         0
## 246   -1.513483  33.80911            1       1         0         0
## 247   -6.931571  39.26271            1       0         0         0
## 248   -4.545269  31.96504            1       0         0         0
## 249   -5.104970  32.39614            0       0         1         0
## 250   -4.638348  38.19302            1       1         0         1
## 251   -2.347185  32.29514            0       0         1         0
## 252   -6.264926  36.86952            1       1         1         0
## 253   -4.642978  38.32028            1       1         0         0
## 254  -11.039856  37.18551            0       0         0         0
## 255   -2.063752  35.55784            0       0         0         0
## 256   -6.301055  33.84649            0       1         0         0
## 257   -5.615290  38.27523            0       0         0         0
## 258   -3.103718  31.08312            1       0         1         0
## 259   -9.000066  34.54953            1       0         0         0
## 260  -10.181910  38.94369            1       1         0         0
## 261   -4.196712  34.82013            0       0         0         0
## 262  -11.040754  37.18215            0       0         0         0
## 263   -6.849305  39.14634            1       0         1         0
## 264   -3.070385  33.35457            1       0         1         0
## 265   -7.873138  30.79579            1       1         1         0
## 266   -2.523244  32.96335            1       1         1         0
## 267  -10.128376  39.13902            0       1         1         0
## 268   -4.268993  35.68586            0       0         0         0
## 269   -5.322255  34.51866            0       0         0         0
## 270   -8.764780  31.84100            0       0         1         0
## 271   -3.906508  35.81326            0       1         1         0
## 272   -2.979759  34.25998            0       1         0         0
## 273   -2.377594  33.58021            1       1         1         1
## 274   -5.887828  39.25355            0       0         0         0
## 275   -4.907854  29.66219            1       0         0         0
## 276   -2.634961  33.97212            1       0         0         0
## 277   -7.191244  31.02309            1       0         1         0
## 278   -2.103280  31.49478            0       0         0         0
## 279   -6.792464  39.24096            1       1         0         0
## 280   -3.559171  36.98752            1       1         1         1
## 281   -3.820754  37.45852            1       1         1         0
## 282   -8.370363  31.71733            0       0         0         0
## 283  -10.951186  39.02943            1       1         1         0
## 284  -10.287815  40.11716            1       0         0         0
## 285   -2.769726  32.59721            0       1         0         1
## 286   -9.327941  33.70485            0       0         1         0
## 287   -5.132928  39.09780            0       1         0         0
## 288   -8.973461  33.95759            0       1         0         0
## 289   -7.429241  31.37628            1       1         0         1
## 290   -2.539014  33.19913            1       0         1         0
## 291   -3.211082  37.26119            1       0         0         0
## 292   -7.106507  31.16539            0       1         0         0
## 293  -10.286637  40.11661            1       0         0         0
## 294   -5.879811  35.12092            0       1         0         0
## 295   -3.169872  33.30070            1       1         0         1
## 296   -5.041131  34.75544            0       0         0         0
## 297   -2.534127  32.93342            1       1         0         0
## 298   -5.329121  34.51971            0       0         0         0
## 299  -10.827532  34.88608            0       0         1         0
## 300   -6.800089  39.25587            1       0         0         0
## 301   -6.897340  39.25251            1       0         0         0
## 302   -7.782667  35.71354            1       0         0         0
## 303  -10.493106  39.32400            1       1         1         1
## 304   -9.336857  34.76603            0       1         0         0
## 305   -6.854797  30.52560            0       1         0         0
## 306   -6.484753  31.11700            0       0         0         0
## 307  -10.692438  39.39623            1       0         1         0
## 308   -2.641297  32.78498            0       0         0         1
## 309  -10.642997  38.84683            0       0         1         0
## 310   -3.739584  37.66097            1       0         0         0
## 311   -9.203381  34.56231            1       1         0         0
## 312   -2.518059  32.91151            1       1         1         0
## 313   -9.104020  33.18237            0       0         1         0
## 314   -2.801443  33.99067            1       1         0         0
## 315   -9.442549  33.55591            1       0         1         1
## 316   -4.356816  37.82229            1       1         1         0
## 317   -3.252566  34.21582            0       0         1         0
## 318   -4.545061  31.96526            1       0         1         0
## 319   -3.366650  37.31895            1       0         0         0
## 320   -1.630723  31.44443            0       0         0         0
## 321   -9.954605  39.33124            1       0         1         0
## 322   -4.489448  35.60621            0       0         1         0
## 323   -2.195641  31.44535            0       1         1         0
## 324  -11.144231  37.51044            1       1         1         1
## 325   -3.002279  31.94635            0       0         0         0
## 326   -1.335447  30.90514            0       0         1         0
## 327   -4.188567  35.02130            1       0         0         0
## 328   -5.037426  38.88133            0       0         0         0
## 329   -3.044137  31.37516            1       0         1         0
## 330   -6.345682  31.06963            0       0         0         0
## 331   -4.823232  34.75150            1       0         1         0
## 332   -1.863771  33.86567            0       0         0         0
## 333   -4.895145  38.57563            0       0         0         0
## 334   -1.208473  31.40702            0       1         1         0
## 335   -5.603523  36.56622            1       0         1         0
## 336   -5.974767  29.85589            1       1         1         1
## 337   -3.366902  36.71639            1       1         1         1
## 338   -4.199982  30.49019            0       0         1         0
## 339   -6.059043  37.09621            1       0         1         0
## 340  -10.280398  40.19799            1       0         0         1
## 341   -3.079075  32.08483            1       0         0         0
## 342   -6.341885  31.06502            1       1         1         1
## 343   -8.896037  31.69136            0       0         0         1
## 344   -7.909390  39.67025            0       0         0         0
## 345   -6.239907  39.53002            0       1         0         0
## 346   -4.268837  38.05366            1       0         0         0
## 347   -4.943768  38.91569            0       0         0         0
## 348  -10.378108  39.84106            0       1         0         1
## 349   -2.777050  32.70326            0       1         0         0
## 350   -2.963889  33.34137            0       0         0         1
## 351   -5.605833  36.56221            1       1         1         0
## 352   -3.821281  37.45938            0       1         0         0
## 353   -8.297941  35.28262            1       1         0         0
## 354   -3.443411  37.43350            1       0         0         0
## 355   -7.975373  31.62949            1       0         1         0
## 356   -2.523538  32.96288            1       1         1         0
## 357   -7.838941  35.63902            0       0         0         0
## 358  -10.860940  39.28016            1       1         0         0
## 359   -2.704197  33.48899            1       1         0         0
## 360   -2.870928  33.28540            0       0         0         1
## 361  -10.562191  39.17013            1       1         0         0
## 362   -3.348458  37.45972            0       0         0         0
## 363  -11.077934  38.27428            0       0         0         1
## 364   -4.962391  34.94210            0       0         0         0
## 365   -8.686935  36.70570            0       1         1         0
## 366   -3.564367  36.98124            1       1         1         0
## 367   -3.422855  30.73987            1       0         1         1
## 368  -10.893691  38.98678            0       0         0         0
## 369   -3.372700  36.65887            1       1         0         0
## 370   -7.380402  31.36434            0       0         0         1
## 371   -1.099997  34.01068            0       1         0         0
## 372   -3.200963  34.42227            0       0         0         0
## 373   -7.979895  31.63732            1       0         1         0
## 374   -8.825045  34.95897            0       1         1         0
## 375   -8.848541  32.28139            1       0         0         0
## 376   -5.046095  33.50275            1       1         1         0
## 377   -6.187375  39.21643            1       1         1         0
## 378   -5.873497  39.29242            0       1         1         0
## 379   -5.875086  39.25422            0       1         0         0
## 380   -6.208290  39.38595            0       0         1         0
## 381   -3.561104  33.89020            0       0         1         0
## 382  -10.603943  35.61389            1       0         1         0
## 383   -4.915051  34.93223            1       0         1         0
## 384   -6.161793  34.85769            0       0         1         0
## 385   -9.077891  34.64864            0       1         0         0
## 386   -5.763183  38.70204            0       1         0         0
## 387   -7.980074  31.63643            0       0         0         1
## 388   -6.751968  38.93444            1       0         1         0
## 389   -6.485667  35.94317            0       0         1         0
## 390   -1.249261  31.66376            0       1         1         0
## 391   -9.249496  32.83672            1       0         0         0
## 392   -8.934728  33.34384            1       1         0         0
## 393  -10.900564  39.63933            0       0         0         0
## 394   -2.961864  34.14980            0       0         0         0
## 395  -11.260035  34.79371            1       1         1         0
## 396  -10.793808  38.31887            1       0         0         1
## 397   -7.520484  39.28717            1       0         1         0
## 398   -5.238302  39.77755            1       1         0         0
## 399   -2.775613  33.79583            0       0         1         0
## 400   -6.137421  39.22995            0       0         0         0
## 401  -10.369849  39.22202            1       1         0         0
## 402   -3.864171  32.61097            1       0         0         0
## 403   -5.982628  39.28634            1       1         0         0
## 404   -7.750790  35.86440            1       0         1         0
## 405   -5.246152  39.78143            0       1         1         0
## 406   -9.347154  34.26108            1       1         1         0
## 407   -3.398257  36.53062            1       1         0         1
## 408   -2.979613  34.26952            1       1         1         0
## 409   -3.828861  30.63579            1       0         1         0
## 410   -6.125816  39.21909            0       0         0         0
## 411   -7.166858  30.53542            0       1         0         0
## 412   -6.155475  39.21215            0       0         0         0
## 413   -6.783983  39.23907            1       1         0         1
## 414   -6.742754  32.48287            0       0         0         0
## 415   -6.792668  39.24105            1       0         1         0
## 416   -9.601324  33.86540            0       0         0         0
## 417   -8.951976  33.24725            1       0         1         0
## 418   -5.677415  38.42597            1       0         1         1
## 419  -10.951173  39.02943            1       1         1         0
## 420   -2.415767  32.93514            1       1         1         0
## 421   -9.174879  32.86261            1       1         1         0
## 422   -7.786718  31.68321            1       0         1         0
## 423   -6.768802  39.26405            1       1         1         0
## 424   -3.196830  37.64922            1       0         0         0
## 425   -8.897929  33.45462            1       1         1         0
## 426   -9.006916  33.06786            1       1         1         0
## 427   -8.839791  34.80556            1       1         1         1
## 428   -7.118978  39.20020            1       0         0         0
## 429   -2.316523  32.68360            1       1         1         0
## 430   -9.001133  32.81153            1       0         0         0
## 431   -4.216691  35.73719            1       1         1         0
## 432   -7.945280  31.63928            1       1         0         0
## 433   -6.175935  39.24439            0       0         0         0
## 434   -8.123703  35.41988            0       0         0         0
## 435   -4.607088  34.46569            0       0         0         0
## 436   -6.960959  39.33519            1       1         1         0
## 437  -10.452590  39.41371            0       0         0         0
## 438   -6.538450  38.99099            1       0         1         0
## 439   -4.481284  34.19435            1       0         0         1
## 440   -1.234919  30.94733            0       1         1         0
## 441   -8.409383  35.86672            0       0         0         0
## 442   -6.485977  31.11694            0       1         0         0
## 443   -4.577621  30.30198            0       1         0         0
## 444   -3.745123  37.66582            1       1         0         1
## 445   -6.484983  35.93960            1       0         1         0
## 446   -7.490884  30.59589            0       1         1         0
## 447   -5.953726  39.26362            0       0         0         0
## 448   -5.350433  39.70199            1       1         0         0
## 449   -1.396004  34.61867            1       0         1         0
## 450   -9.493811  34.65333            1       0         0         0
## 451   -6.193548  36.37211            1       1         0         0
## 452  -10.694118  39.79462            0       0         0         0
## 453   -8.562328  35.33731            1       1         0         0
## 454  -10.098016  34.68721            1       1         0         0
## 455   -8.934525  33.34370            0       0         1         0
## 456   -8.351521  31.83402            0       0         0         0
## 457   -9.987597  38.96514            1       0         0         0
## 458   -2.386796  33.09744            1       1         0         0
## 459   -2.856078  30.54669            0       1         1         0
## 460   -4.073442  37.98994            1       0         0         0
## 461   -5.952817  36.69149            1       0         1         0
## 462   -3.429924  37.29028            1       1         1         0
## 463   -8.806513  34.97654            0       0         0         0
## 464   -4.610622  35.03752            0       0         0         0
## 465   -2.376992  33.58297            1       0         1         0
## 466  -10.863138  39.02731            0       1         1         0
## 467   -7.483167  31.18866            0       0         1         0
## 468   -3.387308  36.67108            1       0         1         0
## 469   -5.236976  39.78056            0       1         1         0
## 470   -2.456528  33.63985            1       0         0         0
## 471   -6.206686  34.83610            1       0         1         0
## 472   -1.782937  34.72699            1       1         1         0
## 473   -6.871658  38.57175            1       0         0         0
## 474   -4.204748  32.33176            0       0         0         0
## 475   -6.144322  35.73491            1       0         1         0
## 476  -10.917921  38.00300            0       0         0         0
## 477   -4.510312  34.17508            0       0         1         0
## 478   -5.929299  39.23306            0       0         0         0
## 479   -4.431526  34.46536            0       0         0         0
## 480   -4.351797  34.43500            0       1         0         0
## 481   -6.173824  35.63869            1       1         1         1
## 482   -5.136158  34.77293            1       1         1         0
## 483   -2.555089  33.05302            1       1         1         0
## 484   -6.823067  39.31011            1       1         0         1
## 485   -1.333372  30.90686            0       0         1         0
## 486   -5.087740  31.84774            0       0         0         0
## 487   -8.896828  31.69163            0       0         1         1
## 488   -8.297016  34.90485            0       0         0         0
## 489   -6.344063  31.08271            0       0         0         0
## 490   -4.580134  30.30334            0       1         1         0
## 491   -9.012380  33.06852            1       1         0         0
## 492   -5.346835  36.43177            0       0         0         0
## 493   -4.864235  30.34152            0       0         0         0
## 494   -6.161794  39.19225            1       1         1         0
## 495   -7.501528  31.43542            0       1         0         0
## 496   -6.157547  39.24593            1       1         0         0
## 497   -7.943048  31.63910            1       0         0         0
## 498   -8.509026  35.05530            1       0         0         1
## 499   -2.505295  32.00959            0       0         0         1
## 500   -7.119389  37.80367            0       0         0         0
## 501  -10.549913  39.78831            1       0         1         0
## 502   -6.880398  39.25065            1       1         0         0
## 503   -6.330410  31.06473            1       1         1         1
## 504   -4.887248  29.63958            0       0         0         0
## 505   -1.178618  31.42527            1       0         1         0
## 506   -6.522827  37.21554            0       1         1         0
## 507   -2.880233  37.37065            0       1         1         0
## 508   -5.083258  31.84803            0       0         0         0
## 509   -3.870967  32.76275            1       0         1         0
## 510   -6.334194  31.07925            1       1         1         0
## 511  -10.606220  39.62229            0       1         0         0
## 512   -9.215652  33.07898            1       0         0         0
## 513   -6.773837  36.64776            1       1         1         1
## 514   -2.533452  32.93166            1       1         0         1
## 515   -5.128472  39.10187            0       1         1         0
## 516   -7.997281  35.51670            1       0         1         0
## 517   -9.599984  33.86392            0       0         0         0
## 518   -2.479219  32.90873            1       0         0         0
## 519   -5.245700  39.76819            1       1         0         0
## 520   -3.720849  32.67924            1       0         1         1
## 521   -4.435023  30.02593            1       1         1         0
## 522   -9.174834  32.86467            1       1         0         0
## 523   -5.246045  39.78138            0       0         0         0
## 524   -2.525426  32.90297            1       1         0         0
## 525   -1.237315  34.23270            1       0         0         0
## 526   -2.107253  33.07570            1       1         1         0
## 527   -1.089506  31.80645            1       1         1         0
## 528   -3.368890  37.32185            1       0         0         1
## 529  -10.243959  38.25158            0       0         0         0
## 530   -8.496958  35.59041            1       1         0         0
## 531   -4.877587  31.58217            0       0         1         0
## 532   -1.340950  34.37664            0       0         0         0
## 533   -6.801584  39.25610            1       1         1         0
## 534   -8.282102  35.30936            1       1         0         0
## 535   -3.328359  36.63484            1       0         0         1
## 536   -9.212787  33.08299            1       0         1         0
## 537   -6.331498  31.06614            0       1         1         0
## 538   -8.929726  33.51238            1       0         0         0
## 539   -7.108497  31.16780            0       0         0         1
## 540   -8.278952  36.16308            1       0         1         0
## 541   -2.802618  33.99150            1       1         1         1
## 542   -2.518358  32.91259            1       1         1         0
## 543   -2.543599  32.97678            1       1         0         0
## 544   -3.367349  36.68591            1       1         0         0
## 545   -3.351811  37.34884            1       1         0         0
## 546   -5.246267  39.78131            1       0         1         0
## 547   -7.948720  35.78571            1       0         0         0
## 548   -9.336732  34.76600            0       1         1         1
## 549   -6.858264  39.23410            1       0         1         0
## 550   -3.374429  35.85422            1       1         1         0
## 551   -4.054862  32.24252            0       1         1         0
## 552   -6.241727  39.52942            1       1         1         0
## 553   -5.085428  31.84662            0       1         1         0
## 554   -9.174452  32.86430            1       0         0         0
## 555   -6.852880  39.25272            1       1         0         0
## 556   -2.533642  32.93235            1       1         0         0
## 557   -6.167751  35.89135            1       0         1         0
## 558  -10.244265  38.25265            0       0         1         0
## 559   -2.775401  33.79571            1       1         0         0
## 560   -6.002638  37.74761            0       1         0         0
## 561  -10.697917  35.80059            1       1         1         0
## 562   -8.296885  31.51606            0       0         0         0
## 563   -2.681389  30.57979            1       1         0         0
## 564   -6.160834  34.84365            0       1         1         0
## 565   -8.848432  34.82376            1       0         0         1
## 566   -9.253212  32.83682            1       0         1         0
## 567   -8.543366  34.44228            1       0         0         0
## 568   -3.382967  35.50345            1       1         1         1
## 569   -6.410001  35.10643            0       0         0         0
## 570   -8.687845  36.70755            1       0         0         1
## 571   -2.502878  33.55027            0       0         1         1
## 572   -2.462953  32.38394            0       0         0         0
## 573   -5.968360  39.19610            0       0         0         0
## 574   -4.801293  32.43059            0       0         0         0
## 575   -2.506915  33.54625            0       0         0         0
## 576   -5.440896  37.76881            0       0         0         0
## 577   -1.650807  31.70748            1       1         1         0
## 578   -8.883027  33.29293            0       0         1         0
## 579   -6.586633  36.08064            1       0         1         1
## 580   -9.083480  33.56219            0       1         0         0
## 581   -2.669543  32.98413            0       1         1         0
## 582   -6.484302  35.93892            1       0         0         0
## 583   -5.954697  35.96853            0       0         0         0
## 584   -4.760894  34.20092            0       0         1         1
## 585   -7.827022  33.35099            0       0         0         0
## 586   -1.335952  30.90493            0       0         0         0
## 587  -11.144555  37.51214            0       0         0         0
## 588   -6.951559  39.33051            1       0         0         0
## 589  -10.672729  35.64100            1       0         1         0
## 590   -9.083711  34.65344            0       1         0         0
## 591   -7.496951  31.03377            0       1         0         0
## 592   -2.748364  31.62747            0       0         0         1
## 593   -3.358981  36.66100            1       1         1         0
## 594   -4.881635  29.64784            1       0         1         0
## 595   -6.896591  39.25345            0       0         0         0
## 596   -6.948591  39.23188            1       0         0         0
## 597   -3.342265  35.78733            1       0         1         0
## 598   -1.876115  33.70149            1       1         0         0
## 599   -1.438035  34.58890            0       1         0         0
## 600   -6.041485  39.23010            1       0         0         0
## 601   -4.146826  32.88942            0       0         1         0
## 602   -7.045480  39.03073            0       0         0         0
## 603   -2.499938  33.54656            0       1         1         1
## 604   -4.438947  30.03459            0       0         1         0
## 605   -9.174398  32.86384            0       1         0         0
## 606   -5.693600  34.49531            1       1         1         1
## 607   -8.202698  35.99768            1       0         1         0
## 608   -7.497040  31.03245            1       0         0         0
## 609   -6.734163  38.84894            1       0         1         0
## 610   -6.784537  39.01631            1       0         0         0
## 611   -8.221546  35.46092            1       0         1         1
## 612  -11.034050  35.12097            0       0         1         0
## 613   -4.575918  30.09259            0       0         0         0
## 614   -4.454058  29.81093            1       0         1         0
## 615   -4.482062  34.19564            0       1         0         1
## 616  -10.203384  40.03890            1       0         0         0
## 617   -9.338054  34.56067            1       1         0         0
## 618   -7.955370  36.86374            0       1         0         0
## 619   -7.868047  35.40623            0       1         0         1
## 620   -6.873695  39.17482            0       1         1         0
## 621   -2.589076  32.64506            0       1         0         1
## 622   -3.217375  36.86661            1       1         1         0
## 623   -3.751652  32.85322            1       1         1         0
## 624   -4.502347  34.16541            0       1         0         0
## 625   -6.856450  39.28190            1       1         0         1
## 626  -10.847712  39.69935            1       1         0         0
## 627   -1.571293  30.88618            1       0         1         1
## 628   -6.931022  39.26420            1       1         1         0
## 629  -10.344922  40.24879            1       0         0         0
## 630   -4.193169  33.13199            0       0         1         0
## 631   -8.410753  35.36654            1       0         1         0
## 632   -6.678311  39.20479            1       0         0         0
## 633   -9.270369  33.36344            0       0         0         0
## 634  -10.281707  40.19750            1       0         0         0
## 635  -10.793825  39.59613            0       1         0         0
## 636   -7.216001  38.79324            0       0         0         0
## 637   -8.802407  34.22164            1       0         0         0
## 638   -8.905060  32.96149            1       0         0         0
## 639   -7.999127  35.85235            0       0         1         0
## 640   -4.482683  30.16062            0       1         0         0
## 641   -7.041571  30.56129            1       1         1         1
## 642   -2.711093  32.72457            0       1         0         0
## 643   -1.975942  32.91388            1       1         0         0
## 644   -2.397797  32.06342            0       1         0         0
## 645   -8.203472  36.69363            0       1         1         0
## 646   -5.246350  39.78141            0       0         0         0
## 647   -8.879760  34.82585            1       0         0         0
## 648   -4.740031  38.35021            1       0         1         0
## 649   -4.482911  30.16142            1       1         0         1
## 650   -8.906579  34.67260            1       1         0         0
## 651   -2.640628  32.78334            0       0         0         0
## 652   -6.744112  38.93101            1       0         0         0
## 653   -8.848410  32.28136            1       0         0         0
## 654   -8.205215  35.99778            0       0         1         0
## 655   -7.833434  33.35174            0       0         0         0
## 656   -5.122775  38.38481            0       0         1         0
## 657   -5.134827  34.77145            1       1         1         1
## 658   -2.608383  32.06985            1       1         1         0
## 659   -1.567965  30.88283            0       1         0         0
## 660   -6.375635  38.35002            1       0         1         0
## 661   -8.875282  34.82419            1       1         1         0
## 662  -10.834925  38.65013            0       0         0         0
## 663   -1.233503  34.22592            1       0         1         0
## 664   -6.798304  39.24894            1       1         1         0
## 665   -4.677560  38.46839            1       0         1         0
## 666   -6.345043  31.08317            0       0         0         0
## 667   -6.792645  39.24001            1       1         0         0
## 668   -9.246992  34.77573            0       1         0         0
## 669   -8.088196  36.68237            1       0         0         0
## 670   -8.296041  31.51167            0       0         0         1
## 671  -10.919520  35.27903            1       1         1         1
## 672   -7.596765  39.22961            1       1         1         0
## 673   -6.674549  39.17874            1       0         1         0
## 674   -3.522947  35.34588            1       0         1         0
## 675   -8.262122  35.30209            0       0         0         1
## 676   -7.647118  35.75620            0       1         1         1
## 677   -6.883253  39.25321            0       0         0         0
## 678  -10.911303  38.29750            1       1         0         1
## 679  -11.047807  34.76365            1       1         0         0
## 680   -6.135115  39.32389            0       0         0         0
## 681   -7.740814  35.87432            1       1         0         1
## 682   -9.988118  38.96452            1       1         1         0
## 683   -5.249295  32.34454            1       0         0         0
## 684   -6.162706  35.63959            0       0         0         1
## 685   -6.844802  39.27961            1       0         1         0
## 686   -5.125842  38.38466            1       0         0         0
## 687   -4.551515  34.84324            1       1         0         0
## 688   -7.759743  35.85600            1       1         1         0
## 689   -8.386332  33.23017            0       0         1         0
## 690   -6.743765  32.48060            0       1         0         0
## 691   -3.628043  34.26937            0       0         0         0
## 692   -9.249638  32.83648            1       1         0         0
## 693   -5.553021  37.33960            0       0         0         0
## 694  -10.128545  39.13891            0       1         0         1
## 695   -6.794004  39.25044            0       0         0         0
## 696   -7.681020  31.56045            1       0         1         0
## 697   -1.794876  34.72726            0       0         0         0
## 698   -5.024822  34.76461            0       0         0         0
## 699  -10.196750  38.56411            1       1         0         0
## 700   -3.347075  37.30240            1       1         0         1
## 701   -3.493885  36.81844            1       0         1         1
## 702   -3.360694  37.02811            1       0         1         0
## 703  -10.407368  39.16585            1       1         1         1
## 704  -10.361232  40.10445            0       0         1         0
## 705   -5.102358  39.80807            0       1         1         0
## 706  -11.014966  34.88006            1       1         1         0
## 707   -2.753136  31.65280            1       1         1         0
## 708  -10.180767  38.94161            1       0         0         0
## 709   -3.215508  36.86083            0       0         0         0
## 710   -7.751862  35.68172            1       1         0         0
## 711   -3.376479  36.67656            0       0         0         0
## 712   -6.079457  36.64711            1       1         0         1
## 713   -7.867612  35.40623            0       0         1         1
## 714   -5.926765  39.22105            0       0         1         0
## 715   -9.639440  34.57478            1       1         0         1
## 716   -8.630674  33.14908            1       0         0         0
## 717   -8.103924  35.90298            1       0         1         1
## 718   -8.696094  34.37366            1       1         1         1
## 719   -4.359322  35.07495            0       0         0         0
## 720   -6.207871  39.38608            0       0         1         0
## 721   -4.357362  37.82197            1       0         1         1
## 722   -4.624469  34.94520            0       0         0         0
## 723   -3.030877  33.25054            0       0         0         0
## 724   -2.599781  33.42122            1       1         1         0
## 725  -10.347772  40.08527            1       1         1         1
## 726   -3.743557  33.83470            0       0         0         0
## 727   -1.840512  31.14021            0       1         0         1
## 728   -6.768348  39.26735            1       0         1         0
## 729   -6.774287  36.64687            0       1         1         0
## 730   -8.433743  31.65853            0       0         0         1
## 731   -4.825238  34.75312            1       1         1         0
## 732  -10.203087  38.61948            1       1         0         0
## 733   -1.643161  31.43036            1       1         1         0
## 734   -7.481828  35.97683            0       0         0         0
## 735   -3.741618  33.83798            0       0         1         0
## 736   -8.902091  32.96400            0       1         1         0
## 737   -4.734325  34.92381            1       1         1         1
## 738   -4.874275  36.79100            0       1         0         0
## 739   -2.987156  34.19036            0       0         1         0
## 740   -4.186206  34.24277            1       1         0         0
## 741  -10.939607  34.99763            1       0         0         0
## 742   -3.430437  37.29052            1       1         1         0
## 743   -8.965028  32.89908            0       0         0         0
## 744   -4.876151  34.63017            1       1         0         0
## 745   -4.013727  34.51307            0       0         0         0
## 746   -4.916418  34.67375            0       1         0         0
## 747   -1.356994  31.63398            1       1         1         0
## 748   -6.242119  39.53025            1       1         1         0
## 749   -9.336808  34.76595            0       0         0         0
## 750   -6.149321  39.51664            1       1         0         0
## 751   -5.132168  39.09657            1       1         1         0
## 752   -5.608584  38.27904            0       0         1         0
## 753   -4.360872  29.96591            1       0         1         0
## 754   -6.054137  37.08920            0       0         0         1
## 755   -1.694281  34.29524            0       0         0         0
## 756   -4.489362  35.60642            0       0         0         0
## 757   -8.303533  32.32578            0       0         1         0
## 758   -2.824096  33.56847            1       1         1         0
## 759   -3.362605  36.48346            0       0         1         1
## 760  -10.665548  38.75009            0       0         1         0
## 761   -4.944119  38.91484            0       0         1         0
## 762   -1.176994  31.42242            0       1         1         0
## 763   -7.291475  36.06158            1       1         0         1
## 764  -10.857757  39.27922            1       0         0         1
## 765   -8.452301  35.17381            1       1         0         0
## 766   -4.120960  34.83554            1       0         1         0
## 767   -3.630122  34.29560            1       0         0         0
## 768  -10.107788  39.62153            0       0         0         0
## 769   -8.252518  31.98803            1       1         1         0
## 770   -6.758968  36.47029            1       0         1         0
## 771   -1.512548  33.80892            1       1         0         0
## 772   -4.432074  30.02836            1       1         0         1
## 773   -4.984155  39.83427            0       0         0         0
## 774   -3.102101  37.59077            1       1         0         1
## 775   -2.698431  33.48642            0       1         0         0
## 776   -3.214105  31.78429            1       1         1         0
## 777   -4.990917  39.07661            1       0         0         0
## 778   -7.797489  35.77105            1       1         1         1
## 779   -3.658031  32.23175            1       0         1         0
## 780   -2.017218  33.46502            1       1         0         0
## 781  -10.683534  39.59331            0       1         1         0
## 782   -6.807494  39.23123            1       0         1         0
## 783   -5.192490  38.76435            0       0         0         0
## 784   -4.200826  30.49374            0       0         0         0
## 785   -5.695991  36.63142            0       0         0         0
## 786   -4.641922  34.18432            0       1         0         0
## 787   -4.200235  32.32572            0       0         1         0
## 788   -4.683379  35.95498            1       0         0         0
## 789  -10.921938  39.38392            0       0         1         0
## 790   -9.011527  33.06948            1       0         0         0
## 791   -5.226239  35.17876            0       0         0         1
## 792   -3.365808  33.53942            1       1         1         1
## 793   -7.252047  31.39579            0       1         0         0
## 794   -9.169366  33.54174            1       1         1         0
## 795   -5.181991  38.79147            0       1         1         0
## 796   -3.822684  37.46291            1       1         1         0
## 797   -3.373275  36.65844            1       1         0         0
## 798   -3.030828  33.92736            1       1         1         0
## 799   -9.005242  34.54913            1       0         0         0
## 800   -4.887248  29.63958            1       1         0         0
## 801   -4.545303  31.96518            0       1         1         0
## 802   -3.042386  35.48199            0       0         1         0
## 803   -2.485763  32.92276            1       0         0         0
## 804   -3.830379  30.63567            1       1         1         0
## 805   -2.663604  32.64076            1       1         0         0
## 806   -8.011575  35.49811            1       0         1         0
## 807   -9.336969  34.76623            1       0         0         0
## 808   -2.635285  31.31249            1       0         0         0
## 809  -11.143326  37.51215            1       0         0         1
## 810   -9.336791  34.76600            1       1         0         1
## 811   -7.872945  30.79661            1       1         0         1
## 812   -3.082593  32.08669            0       0         0         1
## 813   -6.767140  39.11742            1       0         1         0
## 814  -10.923872  39.38218            0       0         1         0
## 815   -5.967492  39.19699            0       0         0         0
## 816   -4.617100  35.03143            0       1         1         0
## 817   -8.359675  32.29617            0       0         1         0
## 818   -5.131904  39.09902            0       0         0         0
## 819  -10.617617  38.81132            0       0         0         0
## 820   -6.218177  36.35919            1       0         0         1
## 821   -9.930898  39.72115            1       0         0         0
## 822   -6.735368  38.84880            1       1         1         1
## 823   -3.156105  32.37273            1       0         1         0
## 824   -7.780980  35.69260            0       0         1         0
## 825   -7.982354  31.53769            0       0         0         1
## 826   -5.246621  39.76660            0       0         0         0
## 827   -5.179832  38.79018            1       0         0         0
## 828   -8.980224  36.75909            0       0         0         0
## 829  -10.857828  39.78017            0       0         1         0
## 830   -2.497108  32.90594            1       1         0         0
## 831   -1.325962  31.82266            1       0         0         0
## 832   -8.253354  31.36132            1       1         1         1
## 833   -9.305501  33.62544            0       0         0         0
## 834   -3.752147  32.85004            0       0         1         0
## 835   -5.104153  32.39617            0       1         0         0
## 836   -2.546164  32.95737            1       1         0         0
## 837  -10.378723  39.84088            0       0         0         0
## 838   -4.112272  35.15864            0       1         0         0
## 839   -3.389938  36.76768            1       0         0         0
## 840  -10.171023  39.85875            1       1         1         0
## 841   -7.496754  31.03255            1       0         0         0
## 842   -3.400768  37.35744            1       1         1         0
## 843  -10.667499  38.74775            1       1         1         0
## 844   -6.263346  36.86894            0       0         0         0
## 845   -4.550209  34.84322            0       0         0         0
## 846   -3.287638  32.22239            0       0         0         0
## 847   -8.316859  35.55161            1       1         1         0
## 848  -10.797879  38.65343            0       0         0         0
## 849   -7.730373  35.71968            1       0         0         0
## 850   -1.507128  33.78789            1       1         1         0
## 851   -8.409450  35.86655            0       1         0         1
## 852   -5.060554  39.73325            1       1         1         0
## 853   -3.822367  37.46240            0       0         0         0
## 854   -2.529937  32.94447            0       0         0         0
## 855   -7.482223  35.96893            1       0         0         0
## 856   -5.073140  38.45363            1       1         1         0
## 857   -6.750875  30.41145            0       0         0         0
## 858   -8.781510  34.64492            0       0         0         0
## 859   -9.408772  33.91602            0       1         0         0
## 860   -6.148856  39.21399            0       0         0         0
## 861   -5.687193  36.62851            0       1         0         0
## 862   -3.618565  33.81542            1       1         1         0
## 863   -1.792115  34.73468            0       1         1         0
## 864   -8.572715  33.45564            0       0         0         0
## 865   -1.506447  33.78902            1       1         0         0
## 866   -4.834474  34.75082            0       0         0         0
## 867   -7.933247  35.78296            1       1         1         0
## 868   -9.170717  33.82011            0       0         0         0
## 869   -5.926778  39.22305            0       0         1         0
## 870   -3.053623  34.34203            0       1         0         0
## 871   -1.329375  31.80872            0       1         1         0
## 872   -4.627531  35.02776            1       0         0         0
## 873   -1.372901  34.43386            1       1         1         0
## 874  -10.683742  38.87934            1       1         0         0
## 875   -1.464741  31.73768            1       1         1         0
## 876   -5.402919  38.61264            1       0         1         0
## 877   -1.405404  33.70625            1       1         0         1
## 878   -8.936643  33.34546            1       1         0         0
## 879   -4.625868  35.75762            1       1         0         0
## 880  -10.416477  38.80636            0       0         1         0
## 881   -7.754419  35.48312            1       1         1         0
## 882   -3.574056  32.61107            0       0         1         0
## 883   -8.633744  33.15060            1       0         0         0
## 884   -8.204229  36.69396            1       1         1         0
## 885   -8.243206  35.02418            1       0         1         0
## 886   -6.815340  39.27343            0       1         1         0
## 887   -2.602053  33.42233            0       1         1         0
## 888   -8.282282  35.30944            1       1         1         0
## 889   -4.073239  37.99144            1       1         0         1
## 890   -6.044318  39.22818            0       1         0         0
## 891   -4.748464  29.69622            1       1         1         0
## 892  -10.727719  39.78729            0       0         0         0
## 893   -3.425950  30.73144            1       1         0         1
## 894  -10.684642  39.59021            0       0         0         0
## 895   -8.777538  33.64095            1       0         1         0
## 896   -3.388996  36.74088            1       1         1         0
## 897  -10.130070  39.13526            0       1         0         1
## 898   -3.276120  37.10946            1       0         0         0
## 899   -8.391658  38.94882            1       1         0         0
## 900   -6.586865  36.07748            1       1         1         1
## 901  -10.781496  39.54885            1       1         0         0
## 902   -5.085441  30.56619            1       1         1         1
## 903   -8.820650  36.25196            0       1         1         0
## 904   -3.238648  31.86982            0       1         1         0
## 905   -8.310717  31.05488            0       0         0         0
## 906   -5.313408  36.55919            0       0         0         0
## 907   -8.433683  31.66030            1       0         1         1
## 908   -6.955818  39.33102            1       1         0         0
## 909   -4.642832  38.32358            1       0         1         1
## 910   -5.054704  35.86374            1       0         0         0
## 911   -9.305675  35.28553            0       0         0         0
## 912   -2.541324  32.91309            1       0         0         0
## 913   -6.346440  31.06988            1       0         1         0
## 914   -8.937241  33.34711            1       0         0         0
## 915  -10.744102  34.73293            0       0         0         0
## 916   -3.211241  31.81910            1       1         1         0
## 917   -5.964764  35.97465            1       0         0         1
## 918   -4.745897  29.69706            0       1         0         1
## 919   -3.361153  36.68377            1       0         1         0
## 920   -7.041666  30.56138            0       1         0         0
## 921   -6.753309  30.41272            0       0         0         1
## 922   -2.637137  32.28019            1       1         0         0
## 923   -3.366356  36.68580            1       1         1         1
## 924   -4.534585  38.24079            1       1         0         0
## 925   -6.358466  39.45430            0       0         1         1
## 926   -4.545183  31.96512            0       0         1         0
## 927   -6.301227  35.88022            0       0         0         0
## 928   -4.408921  34.52967            1       0         1         0
## 929   -3.636546  32.93983            0       0         1         0
## 930   -6.139575  39.32515            1       0         1         0
## 931   -8.960022  32.89953            0       0         1         0
## 932   -8.374517  31.97839            1       1         1         0
## 933   -7.118598  39.20521            1       1         1         0
## 934   -9.337657  34.76740            1       1         0         0
## 935   -8.034076  35.76821            1       1         1         1
## 936   -8.490923  32.28890            0       0         1         0
## 937   -8.952210  33.24702            1       1         1         1
## 938   -4.335681  35.40283            0       0         0         0
## 939   -6.751094  36.46955            0       0         1         0
## 940   -2.802117  33.99140            1       0         0         0
## 941   -8.683723  35.10519            0       0         0         0
## 942   -1.677410  33.71071            0       1         0         0
## 943   -8.536823  32.94141            1       1         1         1
## 944   -9.199114  33.10054            1       0         0         0
## 945   -3.028071  33.25188            0       1         1         1
## 946   -9.325212  34.76290            1       1         1         0
## 947   -5.876844  39.29078            1       0         1         0
## 948  -10.557790  36.23737            1       1         1         0
## 949   -7.146022  31.20282            0       1         1         0
## 950   -2.122017  33.48686            0       1         0         0
## 951   -2.785471  33.78834            0       0         0         0
## 952   -7.424692  31.37070            1       0         1         0
## 953   -1.088420  31.80648            0       0         0         0
## 954   -3.162708  32.25907            1       0         0         0
## 955   -4.634835  38.20696            1       1         0         0
## 956   -2.040879  33.83973            0       0         1         0
## 957   -9.672312  39.10597            1       1         1         0
## 958   -2.538632  33.19864            1       0         1         0
## 959   -6.342315  31.08301            1       0         0         0
## 960   -2.078613  32.93989            1       1         1         0
## 961   -7.571408  36.10763            0       0         0         0
## 962   -8.977482  33.95139            1       1         0         0
## 963   -8.256622  35.09216            1       1         0         1
## 964   -7.942946  31.62918            1       0         1         0
## 965   -9.171456  33.82048            0       0         0         0
## 966  -10.737359  38.80795            1       0         0         0
## 967   -4.089253  34.73639            0       1         0         0
## 968   -1.890073  34.72970            1       1         1         0
## 969   -3.352097  36.66113            1       0         1         0
## 970   -6.072730  36.64452            1       1         0         1
## 971   -7.747411  35.71584            1       1         1         0
## 972   -2.657758  33.94021            0       1         1         0
## 973   -4.310061  35.62750            0       0         1         0
## 974   -9.119846  32.93786            0       0         0         0
## 975   -6.582218  39.07972            1       0         0         0
## 976   -6.755314  30.41356            0       0         0         0
## 977   -7.994485  31.79560            0       0         1         0
## 978  -10.793280  39.42274            1       1         0         0
## 979   -6.052412  37.08709            0       0         1         0
## 980   -2.527669  32.94528            1       1         1         0
## 981   -2.057465  31.51319            0       1         1         0
## 982   -8.302900  32.32682            0       0         1         0
## 983   -8.370214  31.71728            0       0         1         0
## 984   -5.165026  39.81222            0       0         1         0
## 985  -10.900501  39.64024            0       1         1         0
## 986   -5.748391  34.82956            0       1         0         0
## 987   -6.812393  39.24450            0       1         1         0
## 988   -6.928704  39.26278            1       0         0         0
## 989   -5.748464  34.83053            0       1         0         0
## 990   -9.237544  33.33852            0       0         0         0
## 991   -3.392292  36.74103            1       1         1         0
## 992   -8.687149  36.70807            1       1         1         1
## 993   -8.497040  35.59113            0       1         1         0
## 994  -11.132054  38.60646            1       0         1         1
## 995   -9.348936  34.77191            1       0         0         0
## 996   -1.302054  33.94417            1       0         0         0
## 997   -3.361639  36.68351            1       1         0         0
## 998   -5.769654  38.70284            0       0         1         0
## 999   -8.409383  35.86672            0       1         0         0
## 1000  -8.566789  34.44583            0       0         0         0
## 1001  -7.473740  36.12578            1       1         1         0
## 1002  -4.103362  32.40901            0       0         0         0
## 1003  -4.700120  38.11962            0       0         0         0
## 1004  -3.820722  37.45835            0       0         0         0
## 1005  -2.535342  32.93955            0       0         0         0
## 1006  -3.991295  33.38841            0       0         0         0
## 1007 -11.058681  37.33865            1       1         0         0
## 1008  -5.802079  34.40206            0       1         1         0
## 1009  -5.754774  38.69909            1       1         0         0
## 1010  -6.767303  38.98445            0       0         0         0
## 1011  -7.949883  31.60424            1       1         1         0
## 1012  -4.868917  29.64284            1       1         0         0
## 1013  -4.910217  29.66150            1       0         0         0
## 1014 -10.952199  39.27203            0       0         1         1
## 1015  -2.525437  32.90177            1       0         0         0
## 1016  -8.204114  35.99724            1       1         0         0
## 1017  -7.958475  31.61809            1       1         1         0
## 1018  -3.276007  32.79980            0       0         1         0
## 1019  -2.949926  33.36856            0       0         0         0
## 1020  -2.556107  30.60723            0       1         1         0
## 1021  -1.245187  31.66583            0       0         0         0
## 1022  -6.744098  30.40708            1       1         1         0
## 1023  -9.408100  33.91683            0       1         1         0
## 1024 -11.258996  34.79142            0       0         0         0
## 1025  -7.780918  35.69237            0       0         0         0
## 1026  -3.302949  37.51187            1       0         1         0
## 1027  -8.546793  32.54849            0       0         1         0
## 1028  -6.195374  39.22670            1       0         1         0
## 1029  -3.129820  33.64721            0       1         0         0
## 1030  -6.785439  39.23877            1       1         0         0
## 1031  -2.754981  31.87903            0       0         0         0
## 1032 -10.602689  39.62188            1       1         0         0
## 1033  -2.557304  36.78190            0       0         0         0
## 1034  -6.528858  37.21855            0       0         0         0
## 1035  -6.142729  39.22070            0       0         0         0
## 1036  -4.420343  34.75703            0       1         1         0
## 1037  -9.973875  34.62902            0       0         0         0
## 1038  -6.583188  38.55414            0       0         0         0
## 1039  -1.507042  33.78796            1       1         1         0
## 1040  -4.200494  34.82258            1       1         0         1
## 1041  -6.379011  38.35326            0       1         0         0
## 1042  -9.321775  32.78161            0       0         0         0
## 1043 -10.924964  39.38053            0       0         0         0
## 1044  -3.042396  35.48202            0       0         0         1
## 1045  -2.634303  32.79086            0       0         0         0
## 1046  -8.820687  36.25189            0       1         0         0
## 1047  -5.953565  39.26091            0       1         0         0
## 1048  -3.003309  31.94541            1       1         1         0
## 1049  -1.453420  31.06506            1       1         1         0
## 1050  -7.309372  30.63862            0       0         0         0
## 1051 -10.936574  39.28002            1       1         1         0
## 1052 -10.282454  40.18761            1       1         0         0
## 1053  -2.759560  33.61826            0       0         0         0
## 1054  -1.749394  31.61544            1       0         0         0
## 1055  -8.240094  35.44110            0       0         0         1
## 1056  -7.657839  35.45411            0       1         1         0
## 1057  -8.654806  35.12939            1       1         1         0
## 1058 -10.493125  39.32407            0       0         0         0
## 1059  -2.639400  33.97032            1       0         0         0
## 1060  -9.208730  33.08781            1       0         0         0
## 1061  -8.874971  34.82141            1       1         1         0
## 1062  -6.131042  39.30377            1       0         1         0
## 1063  -3.364465  33.54148            1       1         1         1
## 1064  -2.849018  30.53578            0       0         0         0
## 1065  -5.717323  38.23610            1       0         1         1
## 1066 -10.702943  39.13491            1       0         0         0
## 1067  -4.110708  35.18611            0       0         0         0
## 1068  -3.011582  33.93829            1       0         1         0
## 1069  -2.639184  32.95502            0       0         1         0
## 1070  -4.577699  30.09297            1       0         1         0
## 1071  -4.887558  29.64393            1       1         1         0
## 1072  -3.042507  35.48205            0       0         0         0
## 1073  -2.543495  32.90502            1       1         0         0
## 1074  -9.362257  34.79626            1       0         0         0
## 1075  -6.300749  35.50043            1       1         1         1
## 1076  -2.987681  34.19190            1       1         1         0
## 1077  -3.372336  36.65839            1       1         1         0
## 1078  -9.421972  33.95901            0       1         0         0
## 1079  -3.279447  32.88017            1       1         0         0
## 1080  -7.120795  39.20260            1       1         1         0
## 1081  -7.814538  35.78913            0       0         1         1
## 1082  -5.236558  39.77960            1       0         0         0
## 1083  -6.786935  39.11268            0       1         0         0
## 1084  -2.948407  34.14765            0       0         0         0
## 1085  -4.193376  33.13089            0       0         0         0
## 1086  -3.828789  32.60401            1       0         1         0
## 1087  -8.692032  35.10012            1       1         1         0
## 1088  -5.181955  39.09144            1       0         0         0
## 1089 -10.617497  38.81129            1       0         1         0
## 1090  -4.310329  34.22565            1       1         1         1
## 1091  -3.274321  32.79393            1       1         1         0
## 1092 -10.509894  38.99350            1       0         0         0
## 1093  -6.211118  31.22427            0       1         0         0
## 1094  -1.854728  31.58990            0       1         1         0
## 1095  -7.252124  31.39579            1       0         0         1
## 1096  -2.577908  32.13885            1       1         0         0
## 1097  -7.376220  31.36464            1       0         0         0
## 1098 -10.281816  40.19749            0       0         0         0
## 1099  -7.291695  36.06155            0       0         0         1
## 1100  -5.175875  34.62329            0       1         1         0
## 1101  -6.751050  36.46960            0       1         0         1
## 1102  -8.896721  31.69141            0       0         0         1
## 1103  -4.433357  30.02851            0       0         0         0
## 1104  -5.078245  39.10406            1       1         0         0
## 1105 -10.692603  39.81413            1       1         1         0
## 1106  -3.076902  32.08708            0       1         1         1
## 1107  -5.930022  39.29880            0       0         0         0
## 1108  -5.897271  35.21064            0       1         0         0
## 1109  -9.354617  34.41985            1       1         1         1
## 1110  -3.317067  36.70742            0       0         1         1
## 1111  -7.837171  38.34423            1       1         0         1
## 1112  -2.744255  31.88140            0       0         0         0
## 1113  -8.189757  31.84927            0       1         0         0
## 1114 -10.674655  35.64220            1       1         0         0
## 1115  -9.318674  32.77968            1       0         0         0
## 1116  -4.646342  35.04234            0       0         0         0
## 1117  -3.787501  30.49837            0       0         1         0
## 1118  -6.333513  31.08038            1       1         0         0
## 1119 -10.936330  34.99597            0       1         1         0
## 1120  -9.405334  39.59772            0       1         0         0
## 1121  -8.541288  31.90556            0       0         0         0
## 1122  -6.167220  39.21019            1       1         0         0
## 1123  -7.958412  31.61411            1       0         1         0
## 1124  -4.487604  35.61584            0       1         0         0
## 1125  -1.248912  31.66388            1       1         1         0
## 1126  -3.408707  31.51607            0       0         1         0
## 1127  -2.506179  32.91077            1       1         1         0
## 1128  -9.670500  39.10818            0       0         0         0
## 1129  -9.003208  32.80798            0       0         1         0
## 1130  -7.783640  35.67740            1       0         1         0
## 1131  -4.828142  34.75095            0       1         0         0
## 1132  -1.941336  32.86262            0       1         1         0
## 1133  -8.913861  33.43317            0       0         0         0
## 1134  -2.553917  30.60878            0       0         0         0
## 1135  -9.949313  37.90564            1       1         1         0
## 1136  -3.368412  36.73275            1       1         0         1
## 1137  -8.564994  32.12666            0       0         0         0
## 1138  -6.931875  39.26458            1       0         0         0
## 1139  -6.816883  30.48970            1       1         0         1
## 1140  -4.730659  38.33666            1       1         0         0
## 1141 -11.042250  37.43294            1       0         0         0
## 1142  -9.011570  33.00484            1       0         1         0
## 1143  -8.240115  35.44104            0       0         1         1
## 1144  -9.171341  33.81924            0       1         1         0
## 1145  -7.202537  31.08025            1       1         0         0
## 1146  -4.479575  34.19142            1       1         1         0
## 1147  -5.076110  38.45355            1       1         1         0
## 1148  -8.204259  36.69424            1       1         0         0
## 1149  -9.239578  33.33965            0       0         0         1
## 1150  -5.036571  36.23245            0       0         0         0
## 1151 -10.632288  38.84619            1       1         0         0
## 1152  -8.433944  31.66007            1       0         1         0
## 1153  -6.815037  39.15245            1       1         0         0
## 1154  -6.422808  31.22119            0       0         0         0
## 1155  -3.029920  33.26524            0       0         1         0
## 1156  -8.933314  33.34415            1       1         0         1
## 1157  -5.246162  39.78157            0       0         0         0
## 1158  -4.475330  34.18779            0       1         0         0
## 1159 -10.604963  35.61390            1       0         1         0
## 1160  -6.898221  37.49584            0       0         1         0
## 1161  -6.184958  39.20786            1       1         1         1
## 1162  -9.490176  33.27444            0       0         1         1
## 1163  -6.147715  39.51641            1       0         0         0
## 1164  -6.897652  39.28292            1       0         1         1
## 1165  -4.573104  35.65115            0       0         0         1
## 1166  -6.125615  39.21900            0       0         0         0
## 1167  -1.511382  33.80774            0       0         0         0
## 1168  -7.480956  31.18938            1       0         1         0
## 1169 -10.785433  38.61889            0       0         0         0
## 1170  -6.908738  39.17039            1       1         1         0
## 1171  -6.873981  30.52882            0       0         0         0
## 1172  -4.529464  38.23771            1       0         0         0
## 1173  -5.415161  39.72593            1       1         0         0
## 1174  -2.554943  33.05497            1       0         0         0
## 1175 -11.078110  38.27464            0       1         0         0
## 1176  -6.208129  39.38594            0       0         1         0
## 1177 -10.131074  39.13991            0       0         1         0
## 1178  -4.545238  31.96532            0       0         0         1
## 1179  -4.801082  32.43040            0       0         0         0
## 1180  -7.118777  37.80533            1       0         1         0
## 1181  -5.445350  38.03467            0       0         0         0
## 1182 -10.248619  38.69714            1       0         0         0
## 1183  -8.546546  32.54826            0       0         0         0
## 1184  -4.874166  36.79103            0       0         0         0
## 1185  -2.879652  32.23385            0       1         0         0
## 1186  -2.026642  33.46306            1       0         1         0
## 1187  -1.236945  30.94802            1       0         0         0
## 1188  -1.939928  32.86013            0       1         1         0
## 1189  -8.237302  35.43624            0       0         1         0
## 1190  -2.775935  33.79542            0       0         1         0
## 1191  -5.078630  39.12394            1       0         0         0
## 1192  -3.015183  33.04971            1       1         1         0
## 1193  -4.536829  38.24079            1       1         0         1
## 1194  -1.248176  31.66149            1       1         1         0
## 1195  -6.833379  39.24081            1       0         0         0
## 1196  -8.535848  32.94236            0       1         1         0
## 1197  -7.897603  31.59961            1       1         1         0
## 1198  -7.951425  35.78691            0       1         0         0
## 1199  -5.037125  38.88051            0       0         0         0
## 1200  -7.277879  31.04180            0       1         0         0
## 1201  -9.442633  33.55587            0       0         0         0
## 1202  -6.138801  39.23038            0       0         0         0
## 1203  -2.015420  33.94363            1       1         1         0
## 1204  -4.470482  35.69451            0       0         0         0
## 1205  -6.174307  39.21255            1       1         1         0
## 1206  -8.185828  31.52245            0       0         1         0
## 1207  -6.717176  38.73739            1       1         1         0
## 1208  -4.078846  37.13652            0       1         0         0
## 1209  -2.548617  32.98186            1       1         1         0
## 1210  -2.552243  32.91020            1       1         1         0
## 1211  -6.867696  39.28217            1       1         0         0
## 1212  -2.961180  34.16304            1       0         0         0
## 1213  -2.636654  32.27992            1       0         1         0
## 1214  -9.569345  34.87792            0       0         0         1
## 1215  -2.656405  31.57546            1       0         1         0
## 1216  -2.662600  32.64005            1       1         0         0
## 1217  -3.565175  36.95175            0       0         1         0
## 1218  -1.087705  31.80655            1       0         0         0
## 1219  -8.875161  34.82138            1       1         0         0
## 1220  -8.818194  34.84048            1       0         0         0
## 1221  -5.246048  39.78142            0       0         1         0
## 1222  -4.545293  31.96516            0       0         0         0
## 1223  -6.149396  39.51521            0       1         1         0
## 1224 -10.861290  39.02940            0       1         0         0
## 1225  -5.702095  34.49524            1       0         0         0
## 1226  -6.743388  30.40857            0       1         0         0
## 1227  -6.802138  39.04799            0       1         0         0
## 1228  -2.740385  31.39077            1       0         0         0
## 1229  -4.205279  34.83163            0       0         0         0
## 1230  -8.062827  36.00712            0       1         1         1
## 1231  -3.672029  33.43527            1       1         1         1
## 1232  -9.320334  32.78026            0       0         1         0
## 1233 -11.117437  35.18501            0       0         0         0
## 1234  -2.198380  31.44758            0       1         1         0
## 1235  -8.936705  33.34808            1       0         0         0
## 1236  -9.081679  34.80899            1       1         1         0
## 1237  -4.645499  35.04322            0       1         0         1
## 1238  -4.619285  35.76662            0       0         0         0
## 1239  -6.580177  39.08224            1       1         0         0
## 1240  -6.857164  39.27358            1       1         1         0
## 1241  -9.861860  38.89359            1       0         0         0
## 1242  -7.945408  31.63786            0       0         0         0
## 1243  -7.980466  31.63574            1       0         0         0
## 1244  -6.360085  37.13779            0       0         1         0
## 1245  -4.673296  29.99765            1       1         0         0
## 1246  -2.961771  34.16602            0       0         0         0
## 1247  -5.066668  31.93906            1       1         0         1
## 1248  -8.189974  31.84973            1       0         1         0
## 1249  -3.477845  37.57739            0       0         1         0
## 1250  -2.508970  35.60500            0       0         0         0
## 1251  -5.262932  39.78371            1       0         0         0
## 1252 -11.039236  34.75534            0       0         1         0
## 1253 -10.274178  40.17478            1       0         1         1
## 1254  -9.860296  38.89422            0       0         0         0
## 1255  -7.374329  30.62932            1       1         1         0
## 1256  -8.569586  34.45042            1       1         0         0
## 1257  -6.883073  39.25367            1       0         0         0
## 1258  -5.077282  39.10379            1       0         0         1
## 1259  -8.911420  33.43468            1       0         1         0
## 1260  -5.042673  33.49187            0       1         0         0
## 1261  -9.296204  32.77090            1       1         0         0
## 1262  -8.847476  34.82358            1       1         0         0
## 1263  -3.351815  37.02198            1       1         0         1
## 1264  -5.329071  34.51967            0       0         0         0
## 1265  -6.891166  38.56030            0       0         1         0
## 1266  -8.897497  33.45377            0       1         0         1
## 1267  -8.571663  33.45149            1       0         0         1
## 1268  -6.575886  36.05810            1       1         1         0
## 1269 -10.942641  39.24212            0       0         1         0
## 1270  -3.517377  32.39407            0       0         0         1
## 1271  -9.174110  32.86404            0       0         0         0
## 1272 -11.028368  39.25391            1       1         1         0
## 1273  -1.370831  34.08924            1       1         1         0
## 1274  -8.204944  35.99792            0       0         1         0
## 1275  -6.331423  31.06528            0       1         0         0
## 1276  -4.189685  35.02100            0       0         0         1
## 1277  -8.295835  34.90755            0       0         1         0
## 1278  -4.341213  35.39678            0       1         0         0
## 1279  -8.590790  35.15396            1       0         1         1
## 1280 -10.518433  38.68013            1       1         0         0
## 1281  -3.808550  32.22603            0       0         0         0
## 1282  -6.798603  39.16722            1       1         1         0
## 1283  -8.167511  36.33343            1       1         1         0
## 1284  -3.426084  30.73260            1       0         0         1
## 1285  -3.830539  30.63431            1       0         1         0
## 1286  -8.497178  35.59163            0       0         1         0
## 1287  -9.294835  32.75985            1       0         1         0
## 1288  -5.505384  32.49113            0       0         0         0
## 1289  -7.957530  31.61707            1       1         1         0
## 1290 -10.618727  38.81156            1       1         0         0
## 1291 -10.718672  38.77085            0       0         0         0
## 1292 -10.859750  39.78383            0       0         0         0
## 1293 -10.821988  39.53047            1       1         1         1
## 1294  -6.833252  39.24086            1       1         0         0
## 1295  -6.784750  39.15751            0       1         0         0
## 1296  -6.774998  37.75401            1       1         1         0
## 1297  -8.074447  31.93379            1       0         1         1
## 1298  -8.520152  39.09367            1       1         1         0
## 1299  -8.563262  35.33710            1       1         1         0
## 1300  -7.291474  36.06154            1       0         0         0
## 1301  -3.535957  32.41699            0       0         0         0
## 1302  -6.881212  39.28669            1       0         1         0
## 1303  -8.611124  31.29043            0       0         0         0
## 1304  -7.252479  37.73303            0       0         1         0
## 1305  -8.047945  35.46859            1       1         1         0
## 1306  -8.584176  35.20690            1       1         1         1
## 1307  -9.468258  33.95033            0       1         0         0
## 1308  -1.858006  33.05043            0       1         0         0
## 1309  -5.403271  38.61076            0       0         0         0
## 1310  -4.141928  33.45479            0       1         0         0
## 1311  -6.885232  39.15516            1       1         0         0
## 1312  -8.863944  34.01013            0       1         0         0
## 1313  -1.813507  33.39918            0       0         0         0
## 1314  -6.808917  39.10798            1       0         1         0
## 1315  -6.819884  39.23896            1       0         0         0
## 1316  -9.296518  32.77075            0       0         0         0
## 1317  -3.541056  33.13700            0       0         0         0
## 1318  -9.861525  38.89591            1       0         0         0
## 1319  -5.970089  39.19655            0       0         0         0
## 1320  -7.481221  31.18948            0       0         0         1
## 1321  -2.457498  32.91673            0       1         0         0
## 1322  -6.766904  39.11711            0       0         0         0
## 1323  -2.766226  32.11302            0       0         0         0
## 1324  -8.015630  31.60780            0       0         0         0
## 1325  -6.845011  39.27910            1       1         1         0
## 1326  -7.957522  31.61655            1       1         0         0
## 1327  -5.443251  38.03571            1       1         1         0
## 1328  -4.410158  34.77274            0       1         0         0
## 1329  -2.477641  32.20389            1       1         0         0
## 1330 -10.730171  39.79008            0       0         0         1
## 1331  -1.842942  31.14182            0       0         1         0
## 1332  -7.199297  31.05353            0       0         0         0
## 1333  -8.488180  32.28749            0       0         0         0
## 1334 -10.181007  38.94339            0       1         1         0
## 1335  -3.330566  36.63986            1       1         1         0
## 1336  -3.532103  33.10909            0       0         1         0
## 1337  -3.828594  32.60323            1       1         0         0
## 1338  -6.834060  39.24094            1       0         0         0
## 1339  -2.868922  32.52956            1       1         1         0
## 1340  -8.842268  34.81681            1       1         0         0
## 1341  -5.255828  32.36004            1       0         0         1
## 1342  -3.367226  36.68713            1       1         0         0
## 1343  -4.677816  35.95593            0       0         0         1
## 1344  -7.599822  36.99752            0       0         0         0
## 1345  -6.175132  37.60666            1       1         1         0
## 1346  -6.819436  37.64590            1       0         0         0
## 1347  -4.578554  33.05226            1       0         0         0
## 1348  -4.683479  34.89565            0       0         0         0
## 1349  -9.296036  32.77076            1       0         0         0
## 1350  -3.313394  37.13128            1       1         1         0
## 1351  -1.804956  33.40066            0       0         0         0
## 1352  -3.834086  32.68197            0       1         0         0
## 1353  -3.390898  35.50080            1       0         0         0
## 1354  -1.328819  31.80836            1       0         0         0
## 1355  -4.199558  32.32511            0       1         0         0
## 1356 -10.716993  38.77125            0       0         0         0
## 1357  -2.639351  32.27665            0       0         0         0
## 1358  -4.909873  29.66181            0       0         0         0
## 1359  -2.555321  33.04835            1       1         1         0
## 1360  -9.309252  33.62369            0       0         0         0
## 1361  -3.116547  33.63500            0       0         0         0
## 1362 -10.280367  40.11473            1       1         1         0
## 1363  -3.574209  33.39663            1       1         1         0
## 1364  -7.697058  35.62115            1       0         0         0
## 1365  -5.592471  38.25013            0       0         0         0
## 1366  -1.498631  33.81373            1       1         1         0
## 1367  -4.731770  38.33659            1       0         0         0
## 1368  -1.968789  32.91859            1       1         0         0
## 1369  -7.045029  30.56190            1       0         1         1
## 1370  -6.150041  39.51527            1       1         1         0
## 1371  -6.582160  39.08075            1       0         0         0
## 1372  -8.911144  33.46021            1       1         1         0
## 1373  -8.217617  31.68497            0       1         1         0
## 1374  -7.656825  35.45321            0       0         0         0
## 1375  -8.128389  30.96691            0       0         0         1
## 1376  -6.880545  39.28634            0       0         0         0
## 1377  -7.901711  31.59238            0       1         1         0
## 1378  -5.747892  34.82993            1       1         1         1
## 1379  -6.874888  30.53203            0       1         1         0
## 1380  -5.041033  33.49203            0       1         0         0
## 1381  -9.989919  38.96651            1       1         0         0
## 1382  -4.432813  30.02746            1       0         0         1
## 1383  -4.146769  32.88496            1       0         0         0
## 1384  -7.326880  35.54300            0       0         1         0
## 1385  -3.376518  36.67711            1       1         0         0
## 1386  -5.182547  38.78996            1       0         1         0
## 1387  -3.901757  35.81303            1       1         1         0
## 1388 -10.853176  39.27811            1       1         1         0
## 1389  -8.252193  31.98853            1       0         0         0
## 1390 -10.272671  40.16403            1       0         0         1
## 1391  -5.986547  38.22086            1       1         1         0
## 1392  -4.357457  37.82201            1       0         0         1
## 1393  -7.783844  35.66376            1       1         0         0
## 1394  -2.774221  32.61751            0       1         0         0
## 1395  -6.172539  35.73678            1       0         0         0
## 1396 -10.987258  35.62965            0       0         0         0
## 1397  -5.961231  35.97312            1       1         1         1
## 1398  -4.906134  35.78076            1       1         1         1
## 1399  -8.230081  35.43240            1       1         0         1
## 1400  -8.591173  35.15342            1       0         0         0
## 1401  -5.981867  35.44181            1       1         1         1
## 1402  -3.360554  33.92838            1       1         1         0
## 1403  -5.246029  39.78162            0       1         0         0
## 1404  -1.323663  31.79133            1       1         1         1
## 1405  -7.646819  35.75635            0       0         0         0
## 1406  -2.878944  37.36677            1       1         1         1
## 1407  -3.483882  37.57666            0       1         0         0
## 1408 -10.550582  39.78867            0       0         1         0
## 1409  -2.552190  32.90921            0       0         0         0
## 1410  -9.441318  33.56298            1       0         0         1
## 1411  -3.313353  36.70905            1       1         0         1
## 1412 -10.453933  39.40890            0       0         0         0
## 1413  -2.822872  33.36669            0       0         0         1
## 1414  -6.335614  31.06467            0       1         0         0
## 1415 -10.489456  39.02757            1       0         0         0
## 1416 -10.779807  39.54819            0       0         0         0
## 1417 -10.816626  39.52980            0       1         0         0
## 1418  -4.482634  35.05801            0       0         1         0
## 1419  -8.555560  34.44041            0       0         0         0
## 1420 -10.406698  39.16537            1       1         1         0
## 1421  -4.984155  39.83425            0       0         1         0
## 1422  -2.820199  33.37472            0       1         1         0
## 1423  -3.183415  35.47565            0       1         0         0
## 1424  -2.463518  33.63358            1       1         1         0
## 1425  -2.501594  32.88812            1       0         1         0
## 1426  -3.354894  37.02816            1       1         1         0
## 1427 -10.442568  36.06212            0       0         0         0
## 1428  -4.201522  30.48920            0       1         1         0
## 1429  -9.448775  34.44471            1       0         1         1
## 1430  -8.409128  35.86672            0       1         1         0
## 1431  -5.877589  39.28965            0       0         0         0
## 1432  -5.078551  39.12222            0       1         0         0
## 1433  -6.174566  39.21972            0       1         0         0
## 1434  -4.143758  33.45603            0       0         0         0
## 1435  -6.346204  31.06996            1       0         1         0
## 1436  -9.153371  33.48439            0       0         0         0
## 1437 -10.733520  39.51668            0       1         0         0
## 1438  -2.562278  32.92273            1       0         0         0
## 1439 -10.952359  39.34114            1       0         1         0
## 1440  -3.529821  32.41743            0       0         0         0
## 1441 -10.262463  39.92201            0       0         0         0
## 1442 -10.734911  39.51145            1       1         1         0
## 1443 -10.406595  39.16513            1       1         1         0
## 1444 -10.366193  38.76088            1       1         1         0
## 1445  -6.833240  39.24099            0       0         0         0
## 1446  -5.591854  38.25097            0       0         0         0
## 1447  -4.303707  34.21886            1       1         0         0
## 1448  -1.346914  31.65839            1       0         1         0
## 1449 -11.098781  39.30737            1       1         0         0
## 1450  -7.994345  31.79559            0       0         1         0
## 1451  -4.677372  35.95597            0       0         0         1
## 1452  -4.026007  34.50814            1       1         1         1
## 1453  -6.319659  31.08185            1       1         0         0
## 1454 -10.697105  39.39365            1       1         1         0
## 1455 -11.042434  37.43106            0       1         0         0
## 1456  -5.246212  39.78156            0       0         0         0
## 1457  -7.516174  39.23449            1       0         0         0
## 1458  -6.808057  39.25017            1       1         1         0
## 1459  -3.230813  31.81441            0       0         0         0
## 1460  -6.844884  39.23454            1       0         0         0
## 1461  -8.288632  35.30630            0       0         0         0
## 1462  -9.442603  33.55586            0       0         0         0
## 1463  -4.905149  35.77963            1       1         1         1
## 1464 -10.835639  38.64884            1       1         1         1
## 1465  -3.030816  34.35169            1       1         1         1
## 1466  -5.874116  39.25850            0       0         1         0
## 1467  -3.203744  34.41586            0       0         1         0
## 1468  -2.287084  32.26856            1       0         0         0
## 1469  -3.008850  37.58281            1       1         1         0
## 1470  -3.005696  37.58405            1       1         0         0
## 1471  -6.252552  30.91319            0       0         1         0
## 1472  -1.902157  35.41788            0       1         1         0
## 1473  -5.260576  39.78331            1       0         1         0
## 1474  -2.526170  32.90252            1       1         0         0
## 1475 -11.114904  38.47047            0       0         0         0
## 1476  -8.072963  31.93342            1       1         1         0
## 1477  -7.781061  35.69213            0       1         1         0
## 1478  -2.348638  32.29561            0       0         0         0
## 1479  -3.110210  32.72898            1       1         1         1
## 1480  -5.156076  38.44841            0       0         0         0
## 1481  -8.868727  34.95338            0       0         0         0
## 1482  -6.762835  38.98394            1       0         1         1
## 1483  -6.165228  39.20935            0       0         0         0
## 1484  -5.051254  33.48712            0       0         0         0
## 1485  -3.346076  37.30234            1       1         1         1
## 1486  -5.094561  39.77253            0       1         0         0
## 1487 -10.283449  40.11816            1       0         0         0
## 1488  -8.496129  35.59115            1       0         1         0
## 1489  -1.324223  31.79124            1       0         1         0
## 1490  -6.744328  36.09118            0       0         0         0
## 1491  -3.279386  32.21993            0       1         1         0
## 1492  -6.801701  39.05391            1       1         0         0
## 1493  -4.894028  38.57581            1       1         1         0
## 1494  -9.656229  33.90275            1       1         1         0
## 1495  -2.769367  32.59830            1       1         1         0
## 1496 -11.078765  38.27433            0       0         0         0
## 1497  -6.180251  39.23729            1       1         1         0
## 1498  -8.285460  35.30856            1       1         1         1
## 1499  -5.177701  39.79283            0       0         0         0
## 1500  -1.324367  31.79133            1       1         1         0
## 1501 -10.781260  39.54818            0       0         0         0
## 1502  -4.984044  39.83425            0       0         1         0
## 1503  -8.904659  34.66930            1       1         0         0
## 1504  -8.906187  33.45562            0       0         0         0
## 1505  -7.468961  36.12839            1       1         1         1
## 1506  -8.609636  31.29035            0       0         0         0
## 1507 -10.561740  39.17122            1       1         1         0
## 1508  -4.108853  35.18651            0       0         0         0
## 1509  -5.187207  38.76915            1       0         0         0
## 1510  -3.263644  32.22343            0       0         1         0
## 1511  -4.199660  32.32598            0       1         1         0
## 1512  -1.402118  34.39060            0       1         0         0
## 1513  -3.627718  33.39548            1       1         0         0
## 1514  -2.989378  34.19545            1       1         1         0
## 1515  -6.298305  35.48931            0       1         0         0
## 1516  -2.958909  34.15203            1       0         1         0
## 1517  -3.290587  32.24776            1       0         1         1
## 1518  -2.580367  32.13700            1       1         0         0
## 1519  -6.180251  39.23729            1       0         1         0
## 1520  -2.767162  32.60761            0       1         0         0
## 1521  -4.225829  34.61311            1       1         0         1
## 1522  -2.317028  32.68445            1       1         1         0
## 1523  -9.012511  33.06826            1       0         1         1
## 1524  -5.072166  38.45411            1       0         0         0
## 1525  -1.371133  34.08894            0       1         0         0
## 1526  -2.287163  32.26921            1       1         1         1
## 1527  -3.209626  37.31099            0       1         0         0
## 1528  -4.943269  38.91512            1       1         0         0
## 1529  -6.888472  39.16117            1       1         1         0
## 1530  -8.973632  33.95745            1       0         0         0
## 1531  -7.798882  35.77168            1       0         0         1
## 1532  -6.917841  39.25849            1       0         1         0
## 1533  -6.813962  30.48862            0       1         0         0
## 1534  -8.283058  35.30969            1       1         1         0
## 1535  -7.680544  31.56242            1       0         0         0
## 1536  -2.193328  31.44266            0       1         1         0
## 1537  -1.335291  33.80024            1       1         1         0
## 1538  -3.240666  33.42970            1       0         0         1
## 1539  -7.954961  36.86503            1       1         0         1
## 1540 -10.361872  40.10192            1       0         0         0
## 1541  -4.879503  34.63683            0       1         1         0
## 1542  -7.680511  36.03972            1       0         1         0
## 1543 -10.560232  36.23843            0       0         0         0
## 1544  -4.108829  35.18654            0       1         0         0
## 1545  -6.172697  35.73670            0       0         0         0
## 1546  -5.446184  38.03563            0       0         0         1
## 1547  -5.246176  39.78152            0       0         1         0
## 1548  -3.372394  37.34017            1       1         0         0
## 1549  -6.743822  36.09175            1       0         0         0
## 1550  -8.017376  31.60421            0       0         0         0
## 1551 -10.663162  38.75215            0       1         1         0
## 1552  -6.720384  38.73755            1       1         0         0
## 1553 -10.818248  39.52731            1       1         0         0
## 1554  -6.814287  37.68486            1       1         0         0
## 1555  -8.848242  32.28191            1       0         0         0
## 1556  -7.872670  30.79677            0       1         1         0
## 1557  -8.299517  35.28403            1       1         0         0
## 1558  -9.575299  33.77273            0       1         0         0
## 1559  -4.230434  35.42796            1       1         0         0
## 1560  -6.584905  36.07362            0       0         0         0
## 1561  -6.823028  39.31091            1       1         0         0
## 1562  -5.873696  39.29160            0       0         0         0
## 1563  -5.323720  34.51856            0       0         1         0
## 1564  -4.648166  35.04097            1       1         1         0
## 1565  -3.101723  31.08703            0       1         0         0
## 1566  -1.875248  33.70188            0       1         0         0
## 1567 -11.050098  34.75486            1       1         1         1
## 1568  -9.957604  34.61850            0       1         0         0
## 1569  -6.265062  36.86318            0       1         0         0
## 1570  -9.408402  33.91706            0       1         0         0
## 1571  -2.526941  34.05992            0       0         0         0
## 1572  -5.992601  37.75381            0       0         0         0
## 1573  -3.042940  31.37638            1       1         1         0
## 1574  -5.873522  39.25880            0       0         0         0
## 1575  -2.951463  33.91648            0       0         1         0
## 1576  -3.871301  35.65138            0       1         0         0
## 1577  -2.755046  31.87911            0       0         0         1
## 1578  -4.954600  39.78724            0       1         0         0
## 1579  -8.252495  31.98901            1       1         1         0
## 1580  -1.461846  31.68683            0       1         1         1
## 1581  -8.374812  31.97821            0       0         1         0
## 1582  -8.392441  38.94695            1       1         1         0
## 1583  -8.848334  34.82286            1       0         0         0
## 1584  -3.996728  34.54162            1       1         1         0
## 1585  -3.568046  36.94879            0       1         1         0
## 1586  -3.622045  33.81446            1       0         1         0
## 1587  -6.742766  32.48257            0       0         1         0
## 1588  -3.808663  32.22639            1       0         1         0
## 1589  -6.538357  38.99085            1       1         1         0
## 1590  -1.556631  31.64424            1       1         1         0
## 1591  -5.505623  32.49358            1       0         0         0
## 1592  -7.252623  37.73266            1       0         0         0
## 1593  -4.881701  29.64791            1       1         1         1
## 1594  -5.956557  36.69484            0       0         0         1
## 1595  -2.763815  32.60413            1       1         0         0
## 1596  -6.484378  31.11691            0       0         0         0
## 1597  -3.822062  37.46193            1       1         0         0
## 1598  -9.464686  33.94887            1       0         0         0
## 1599  -8.088045  36.68110            0       1         1         0
## 1600  -3.005139  31.92481            1       1         0         1
## 1601 -11.217201  34.97810            1       0         0         0
## 1602  -8.820627  36.25205            1       1         0         0
## 1603  -7.872740  30.79650            0       1         0         0
## 1604  -8.316642  35.55187            0       0         0         0
## 1605  -9.334995  34.76437            0       0         0         0
## 1606  -6.897663  38.55779            1       1         1         0
## 1607  -8.905791  33.45594            1       1         0         0
## 1608  -2.501981  32.88888            1       1         1         0
## 1609 -11.039624  37.18491            0       1         0         0
## 1610  -6.819832  39.23836            1       0         1         0
## 1611 -10.275122  40.18637            1       1         0         0
## 1612  -7.255795  31.39926            1       1         1         0
## 1613  -1.986809  33.06927            1       1         1         0
## 1614  -7.154886  31.06596            0       0         1         0
## 1615  -7.784096  35.71351            1       1         1         0
## 1616  -4.804338  34.22029            0       1         0         0
## 1617  -7.937941  31.62741            0       0         0         0
## 1618  -3.983516  34.53671            0       0         1         0
## 1619  -3.571770  32.61084            0       0         1         0
## 1620  -7.044389  30.55955            0       0         1         0
## 1621  -4.638137  38.19882            1       1         0         0
## 1622  -6.790044  39.05432            1       0         1         0
## 1623  -4.216021  35.74168            1       1         1         1
## 1624  -9.336776  33.32216            0       0         0         0
## 1625  -8.977339  33.94898            0       1         0         0
## 1626  -3.130516  32.91876            0       0         0         0
## 1627  -3.196323  34.41477            0       0         1         0
## 1628  -5.992340  37.75255            1       1         1         0
## 1629  -9.591888  34.87660            1       0         1         1
## 1630  -5.181477  39.09101            0       0         0         0
## 1631  -7.393303  38.96921            1       1         0         0
## 1632  -5.170935  38.46550            1       0         1         0
## 1633  -2.563796  33.27545            1       0         1         0
## 1634  -3.128570  33.49541            0       0         1         0
## 1635  -6.484169  31.11612            1       1         0         0
## 1636  -4.793995  38.29087            1       1         1         1
## 1637  -8.616441  39.26453            0       0         0         0
## 1638  -6.778774  36.64757            0       0         1         0
## 1639  -8.773721  33.64296            1       1         0         0
## 1640  -4.312438  35.74456            1       0         0         0
## 1641  -3.220784  32.69438            0       0         0         0
## 1642  -3.278784  37.09615            1       1         1         1
## 1643  -2.539368  32.91289            1       0         1         0
## 1644  -4.700035  38.11984            1       0         1         0
## 1645  -8.253512  35.10657            0       0         0         0
## 1646  -6.213538  31.22455            0       0         0         0
## 1647  -1.858816  33.04993            1       1         0         0
## 1648  -9.239853  33.33894            0       0         1         0
## 1649  -6.321523  31.08085            1       0         0         1
## 1650  -5.725303  37.09664            1       1         1         0
## 1651  -4.762395  34.20166            0       1         0         0
## 1652  -9.309995  33.62291            1       1         0         0
## 1653  -6.165643  39.20898            0       0         0         0
## 1654  -4.847666  38.51229            1       1         0         0
## 1655  -2.490681  32.98829            1       1         0         0
## 1656 -10.345759  40.25116            1       1         1         0
## 1657  -7.746597  35.71928            1       1         1         0
## 1658  -8.213781  34.83908            1       1         0         0
## 1659  -3.128526  33.51308            0       0         0         0
## 1660  -4.142308  33.45834            0       0         0         0
## 1661  -9.905980  38.98556            0       1         0         0
## 1662  -3.952103  35.44045            1       0         0         0
## 1663  -6.575295  39.07677            1       0         0         0
## 1664  -5.054095  35.86419            0       0         1         0
## 1665  -6.856505  39.28311            1       1         1         0
## 1666  -6.420854  31.02019            1       1         0         0
## 1667  -7.736564  35.69494            1       0         1         0
## 1668  -2.662391  32.64137            0       0         1         1
## 1669  -5.440945  37.73055            1       0         1         1
## 1670  -7.144943  39.07801            1       0         1         0
## 1671  -8.891691  33.54492            1       0         0         0
## 1672  -7.945384  31.63919            1       0         1         0
## 1673  -6.345850  31.06956            1       0         0         1
## 1674  -6.659096  39.17855            1       0         0         0
## 1675 -10.853015  39.27820            1       1         1         0
## 1676  -4.771495  34.91792            0       1         0         0
## 1677  -9.174854  32.86412            1       1         0         0
## 1678  -6.849239  39.14637            1       1         0         0
## 1679  -6.775203  37.75313            1       1         0         0
## 1680  -6.811465  39.10764            1       0         0         0
## 1681 -10.274652  40.16780            1       1         1         0
## 1682  -9.010983  33.00515            1       1         0         0
## 1683  -9.326336  33.33306            0       0         0         0
## 1684  -8.843741  34.80464            1       1         0         0
## 1685  -5.883608  36.44749            0       0         0         0
## 1686  -3.952100  35.44060            0       1         1         0
## 1687  -2.377648  33.58031            1       0         0         0
## 1688  -5.019357  38.70771            1       0         0         1
## 1689  -5.612598  32.74700            0       1         1         0
## 1690  -8.572309  33.45624            1       1         1         1
## 1691  -4.324633  37.88633            1       0         0         0
## 1692 -10.442166  36.05909            0       1         0         0
## 1693 -10.106704  39.62071            1       0         0         0
## 1694  -8.173272  36.33574            1       1         1         1
## 1695  -5.865750  35.19121            0       0         0         0
## 1696  -3.997215  33.37929            1       0         0         0
## 1697  -1.496014  33.81085            0       0         0         0
## 1698  -4.575166  30.09850            0       1         1         0
## 1699 -10.369790  39.22200            1       1         0         0
## 1700  -5.016971  32.81002            0       0         0         0
## 1701  -6.744070  30.40721            1       0         1         0
## 1702  -2.564949  36.78456            0       1         0         0
## 1703  -6.418922  39.54607            0       0         0         0
## 1704  -6.825991  37.65313            1       1         1         0
## 1705  -4.347483  32.88209            1       0         1         0
## 1706  -5.036151  36.23784            0       0         0         0
## 1707 -11.402195  36.43081            1       1         0         0
## 1708  -4.379514  35.47740            0       1         0         0
## 1709  -9.669812  39.10841            0       0         0         1
## 1710 -10.202919  38.84235            0       1         0         0
## 1711  -6.484725  35.93951            1       1         1         0
## 1712  -5.337003  39.73044            0       1         0         0
## 1713 -10.751565  38.53242            0       0         0         0
## 1714  -8.882983  32.79953            0       0         0         0
## 1715  -2.916553  32.16530            0       0         0         0
## 1716  -4.848358  29.74423            1       1         0         0
## 1717  -3.415501  31.52227            1       0         0         0
## 1718  -2.317051  32.68439            1       1         1         0
## 1719  -1.364433  34.43741            0       0         1         0
## 1720  -4.199139  30.49044            1       1         1         0
## 1721  -2.506684  32.00984            1       0         0         0
## 1722  -3.253151  37.00724            1       1         0         0
## 1723 -10.933880  39.28597            1       1         1         0
## 1724  -6.858386  39.23360            1       0         1         0
## 1725  -6.131434  39.31614            1       0         0         0
## 1726 -10.694773  39.39374            1       1         1         0
## 1727  -5.246111  39.78152            1       0         1         0
## 1728  -3.053619  34.34180            0       0         1         0
## 1729  -8.502466  35.08090            0       0         0         0
## 1730  -3.638685  32.95432            0       1         1         0
## 1731 -11.132198  38.60738            1       1         1         0
## 1732  -8.965131  32.89897            1       0         0         0
## 1733  -7.326877  35.54285            1       0         0         0
## 1734 -10.692207  39.39712            1       1         1         0
## 1735  -3.749834  32.85768            1       0         0         0
## 1736  -1.811149  33.40906            1       0         0         0
## 1737  -2.122842  33.05959            1       1         1         0
## 1738  -6.524381  37.21406            0       0         0         0
## 1739  -4.510074  35.06841            0       0         0         0
## 1740  -7.838677  38.34612            1       1         0         0
## 1741  -6.139624  37.59064            1       1         1         0
## 1742  -2.774411  33.79147            0       0         1         0
## 1743 -10.794144  39.42216            1       1         0         0
## 1744  -6.849290  39.14593            1       1         1         0
## 1745  -8.059813  35.46360            1       1         0         0
## 1746  -9.927538  39.72514            0       0         0         0
## 1747  -8.847350  34.82324            1       1         0         0
## 1748  -4.891229  29.74253            0       0         0         0
## 1749  -4.794421  38.28562            1       0         0         0
## 1750  -2.078227  32.93930            0       1         1         0
## 1751  -7.491411  30.59690            0       0         0         0
## 1752  -5.246169  39.78152            0       0         0         0
## 1753  -9.133788  32.74885            0       0         0         0
## 1754  -4.436389  34.87024            1       0         1         0
## 1755  -9.251326  32.83648            1       1         0         0
## 1756  -7.855481  31.17657            1       0         1         0
## 1757  -1.749973  31.61606            1       1         1         0
## 1758 -11.263935  34.79114            0       0         0         1
## 1759  -6.204194  31.22394            0       1         0         0
## 1760 -10.202887  38.61961            1       0         0         0
## 1761  -4.890348  29.74325            0       0         0         1
## 1762 -11.049011  34.76160            0       1         0         0
## 1763  -7.774221  35.69569            1       0         1         0
## 1764  -5.442208  38.03753            0       0         0         0
## 1765  -6.240166  39.52770            0       1         1         0
## 1766  -5.104936  32.39602            1       0         0         1
## 1767  -6.844722  39.27924            1       0         0         0
## 1768  -8.937450  33.18943            1       0         1         0
## 1769  -5.695753  36.63119            0       0         0         0
## 1770  -6.070210  36.64538            1       1         0         0
## 1771  -6.617259  39.09648            1       1         0         0
## 1772  -8.313724  35.27435            1       1         0         0
## 1773  -5.085805  30.56337            1       1         0         0
## 1774  -5.456934  33.82835            0       0         0         0
## 1775  -2.584752  32.64708            0       0         0         0
## 1776  -9.119015  32.93943            1       1         0         0
## 1777  -7.196613  31.09202            0       1         0         0
## 1778  -5.016726  38.70963            1       0         1         0
## 1779  -8.911367  33.43452            0       0         0         0
## 1780 -10.251400  38.69593            0       1         0         1
## 1781  -3.252763  33.43796            0       0         0         0
## 1782  -7.453471  31.38635            0       1         1         1
## 1783  -4.552511  34.84270            0       0         0         0
## 1784  -7.117449  31.23510            1       1         1         1
## 1785  -4.853477  34.87766            1       1         1         0
## 1786  -5.015404  38.70849            0       0         0         0
## 1787 -10.860995  39.27997            0       0         1         0
## 1788  -5.738672  34.84156            1       1         1         1
## 1789  -8.896624  31.69146            0       0         0         0
## 1790  -6.794218  39.23238            1       0         0         0
## 1791  -2.011927  33.94685            1       0         1         0
## 1792  -2.487316  32.92427            1       1         1         0
## 1793  -5.173541  38.46678            1       0         0         0
## 1794 -10.716805  38.76730            0       0         0         0
## 1795  -5.029538  38.69550            1       0         0         0
## 1796  -6.636902  38.35509            1       1         1         0
## 1797  -7.775075  31.10261            0       0         1         0
## 1798  -1.960005  35.35634            0       0         0         1
## 1799  -7.957994  31.61841            1       0         0         1
## 1800  -9.973396  34.62808            0       1         0         0
## 1801 -10.664190  38.75097            0       0         0         0
## 1802  -8.072968  31.93338            1       0         0         0
## 1803 -11.074049  38.27657            0       1         0         1
## 1804  -1.985535  33.06592            0       0         1         0
## 1805  -4.684252  34.89663            1       1         1         1
## 1806  -6.867777  39.28387            1       1         0         0
## 1807 -11.056857  37.33766            1       1         1         1
## 1808 -11.108296  35.20304            0       1         1         0
## 1809  -7.701168  31.28270            0       0         0         0
## 1810  -6.923374  39.25581            1       1         0         1
## 1811  -2.533532  32.93136            1       0         0         0
## 1812  -2.504959  32.01061            1       1         1         0
## 1813  -7.782660  35.66713            1       0         0         0
## 1814 -10.796302  39.42368            0       0         0         0
## 1815  -8.409273  35.86652            0       1         1         1
## 1816  -8.302826  32.32665            0       0         1         0
## 1817 -10.795314  39.42262            0       0         1         1
## 1818 -10.226628  40.22047            1       0         0         0
## 1819  -8.088016  36.68237            1       1         1         0
## 1820  -7.118782  37.80586            1       0         1         0
## 1821  -6.823234  39.23002            1       1         1         0
## 1822  -8.039318  35.76125            0       1         1         0
## 1823  -5.872647  39.29254            0       0         1         0
## 1824  -6.395152  30.97914            0       1         1         0
## 1825 -10.237950  39.47138            0       0         0         1
## 1826  -6.882901  39.25327            1       0         0         0
## 1827  -3.448597  37.42518            1       1         1         0
## 1828  -4.188611  35.02128            1       1         1         1
## 1829  -4.056461  33.08408            1       1         0         0
## 1830  -7.774946  31.10267            1       1         1         1
## 1831  -3.358762  36.60110            0       0         0         0
## 1832  -9.773358  39.60115            0       0         0         1
## 1833  -6.884961  39.15519            1       0         0         0
## 1834  -4.345548  32.89008            0       0         0         0
## 1835  -8.350217  31.83529            1       1         0         0
## 1836  -6.923583  39.25703            1       1         0         0
## 1837  -4.372977  35.07264            1       1         1         0
## 1838 -10.712195  39.44463            0       0         0         0
## 1839  -5.777245  39.30055            0       0         0         0
## 1840  -4.984201  39.83419            0       1         1         0
## 1841  -3.439856  31.89303            1       1         0         0
## 1842  -4.140427  33.46406            0       1         0         0
## 1843  -6.837059  39.18588            1       0         0         0
## 1844  -8.012022  35.49688            1       1         1         0
## 1845  -3.333017  33.92523            0       0         1         0
## 1846  -3.667719  35.60286            1       0         1         0
## 1847  -6.341594  31.06431            1       0         0         0
## 1848  -6.892275  39.22910            1       1         1         1
## 1849  -6.211128  39.21805            1       0         0         1
## 1850  -3.388338  36.94392            1       0         1         0
## 1851  -6.881226  39.28643            0       0         0         0
## 1852  -9.438225  33.56092            1       0         0         1
## 1853  -4.119316  34.82136            0       1         1         0
## 1854 -10.521873  38.67520            1       1         0         0
## 1855  -1.324265  31.79129            1       0         0         0
## 1856  -5.169510  39.80646            0       1         0         0
## 1857  -3.016358  33.04483            1       1         1         0
## 1858  -7.731434  35.70265            1       0         0         1
## 1859  -6.883011  39.25342            1       1         0         1
## 1860 -10.719292  38.77158            0       1         0         0
## 1861  -3.162447  33.30108            1       0         0         0
## 1862  -4.906169  35.78085            0       0         0         0
## 1863  -6.148665  35.73767            1       0         0         0
## 1864  -8.089743  35.83677            1       1         0         1
## 1865 -10.442327  36.06147            1       0         0         1
## 1866  -8.052735  31.50348            1       1         1         0
## 1867  -5.200430  38.71752            1       0         0         1
## 1868  -6.220632  36.35454            0       0         1         1
## 1869  -3.512551  35.95517            0       1         1         0
## 1870  -9.987725  38.96400            1       1         1         0
## 1871  -5.242975  39.76736            1       1         0         0
## 1872  -2.640704  33.93040            0       1         1         0
## 1873  -6.483856  31.11671            0       1         1         1
## 1874  -5.981871  35.44183            0       1         0         1
## 1875  -5.246220  39.78233            1       1         1         0
## 1876  -4.567826  33.03933            1       1         1         0
## 1877 -10.861374  39.02941            1       1         1         0
## 1878  -3.251487  30.90944            1       1         1         0
## 1879  -4.311841  35.74577            1       0         0         0
## 1880  -6.921514  37.77748            0       0         0         0
## 1881  -9.489001  33.27174            0       0         1         0
## 1882 -10.182372  40.01454            1       0         0         0
## 1883  -4.646231  35.04335            1       0         1         0
## 1884 -10.663274  38.75023            0       1         1         0
## 1885  -6.779442  39.23631            1       1         0         1
## 1886  -4.808834  34.75382            1       1         0         0
## 1887  -4.292207  35.55142            1       0         1         1
## 1888  -6.331494  38.38498            1       1         0         0
## 1889  -1.593010  31.14144            1       0         0         0
## 1890  -1.870342  34.73408            0       0         0         0
## 1891  -8.102938  35.90314            0       0         0         0
## 1892  -9.057494  33.28735            1       0         1         0
## 1893  -6.857194  39.28204            1       0         1         0
## 1894  -9.083033  34.64290            0       0         0         0
## 1895  -6.223189  36.35387            1       1         0         0
## 1896  -2.770246  32.69655            1       1         1         0
## 1897  -6.616494  39.11045            1       1         0         0
## 1898  -3.320310  36.33822            1       0         0         0
## 1899 -10.560745  39.17486            0       0         0         0
## 1900  -4.310558  35.74179            1       0         0         0
## 1901  -7.955387  36.86436            0       1         1         0
## 1902 -10.950543  39.34136            1       0         1         0
## 1903  -5.071152  32.79159            1       1         0         0
## 1904  -8.243182  35.02466            0       0         1         0
## 1905 -10.704898  35.80127            1       0         1         0
## 1906  -3.741828  37.66342            1       1         0         1
## 1907  -8.386770  33.23058            1       0         0         0
## 1908 -10.281636  40.19760            1       0         1         0
## 1909  -9.336108  34.76667            0       1         0         0
## 1910  -6.783918  39.01765            1       1         0         0
## 1911  -9.986419  38.96440            1       0         0         0
## 1912  -2.401749  32.32909            1       1         1         0
## 1913  -9.464455  33.95018            0       0         0         0
## 1914  -2.528950  32.96297            1       0         1         1
## 1915  -2.879020  32.23297            1       0         0         0
## 1916  -1.456329  31.69376            1       1         1         0
## 1917  -5.873222  39.29424            0       1         0         0
## 1918  -9.283068  35.28421            1       1         0         0
## 1919  -6.151672  39.22428            1       0         1         0
## 1920  -4.796414  38.29167            1       1         0         1
## 1921  -3.329766  36.63739            1       1         0         0
## 1922  -6.827707  37.65220            1       0         1         1
## 1923  -4.809622  34.75340            0       0         0         0
## 1924  -5.986630  38.22105            0       0         0         0
## 1925  -6.897030  39.25355            1       0         0         0
## 1926  -4.528917  38.23805            0       0         0         0
## 1927  -3.335765  33.92738            0       1         0         0
## 1928  -4.642531  34.16671            0       1         0         0
## 1929  -4.574809  30.09948            0       0         0         0
## 1930  -3.153624  33.66235            0       0         0         0
## 1931  -2.747094  33.23101            0       1         0         1
## 1932  -4.909710  29.66180            1       1         1         1
## 1933  -4.324997  37.88642            1       0         1         0
## 1934  -6.750118  30.40934            0       1         0         0
## 1935  -8.885678  33.30232            1       0         0         0
## 1936  -1.511051  33.80825            1       1         0         0
## 1937  -1.084000  31.80719            1       1         1         0
## 1938  -6.909753  37.49554            0       1         1         0
## 1939  -5.715105  38.23726            1       0         0         0
## 1940  -1.375401  34.43289            0       1         0         0
## 1941  -7.389503  31.36446            0       0         1         0
## 1942 -10.793116  38.32066            0       1         0         0
## 1943 -11.098611  39.30909            0       0         0         0
## 1944 -10.704977  39.13345            0       0         1         1
## 1945  -7.167618  30.53641            1       0         1         0
## 1946  -6.948321  39.23169            1       0         1         0
## 1947  -4.957011  39.78686            1       1         0         0
## 1948  -6.146456  39.32883            0       0         0         0
## 1949  -4.548923  35.79580            1       1         1         0
## 1950  -2.715496  33.14014            0       0         0         0
## 1951  -8.539092  32.94157            0       1         0         0
## 1952  -6.888139  39.16064            1       1         1         1
## 1953  -4.824996  32.85682            0       0         0         0
## 1954  -6.041551  39.23003            1       0         1         0
## 1955  -8.016228  35.49347            0       0         0         0
## 1956  -3.788439  30.49477            1       1         0         0
## 1957  -3.199934  37.64567            1       1         0         0
## 1958  -9.669902  39.10836            1       0         0         0
## 1959  -6.087422  39.32903            0       0         0         0
## 1960  -8.841048  34.81143            1       1         1         0
## 1961  -5.926811  39.22311            0       0         1         0
## 1962  -4.820650  39.08783            1       1         1         0
## 1963  -4.625886  35.75632            1       0         0         1
## 1964  -4.269811  38.05066            1       1         1         0
## 1965  -8.409393  35.86655            0       0         0         0
## 1966  -2.486009  32.90195            0       1         1         0
## 1967  -9.221034  33.64046            1       0         1         0
## 1968  -2.560882  33.26424            1       0         1         0
## 1969  -3.448631  37.42520            1       1         0         0
## 1970  -9.404283  39.59920            0       0         0         0
## 1971  -5.283339  35.08206            1       0         1         0
## 1972  -5.337002  39.73052            1       0         0         0
## 1973  -3.005113  31.92495            1       1         1         1
## 1974 -10.204856  38.84306            0       1         0         0
## 1975  -2.564527  36.78431            0       0         0         1
## 1976  -6.616821  39.11027            1       0         0         0
## 1977  -8.551020  32.55034            1       0         0         0
## 1978  -6.869432  39.27548            0       0         0         0
## 1979  -2.402847  31.70872            1       0         0         0
## 1980  -6.163826  35.88974            0       0         0         0
## 1981  -3.828950  32.60460            1       1         1         0
## 1982  -7.104716  31.23705            0       1         0         0
## 1983  -9.408092  33.91681            0       1         1         0
## 1984  -4.453210  38.32891            0       0         0         0
## 1985  -5.246653  39.76678            0       0         0         0
## 1986  -5.176406  34.62006            0       0         1         0
## 1987  -8.465831  32.15776            1       0         1         0
## 1988 -11.023215  35.12412            0       1         0         0
## 1989  -8.526254  32.03569            0       0         0         0
## 1990  -8.361413  32.29751            1       0         0         0
## 1991  -5.873933  39.25830            1       0         0         0
## 1992  -2.879095  37.36977            1       0         0         0
## 1993  -9.029688  32.46648            0       0         0         0
## 1994  -5.700216  34.49165            1       1         0         0
## 1995  -3.390610  36.66734            1       1         1         0
## 1996  -3.387117  35.49957            1       1         1         1
## 1997  -8.033446  35.77037            0       0         0         1
## 1998  -6.883157  39.25347            1       0         0         0
## 1999  -6.598281  38.54620            0       0         1         0
## 2000  -6.794265  39.23270            1       0         0         0
## 2001 -10.735214  34.74395            0       1         1         0
## 2002  -8.253602  31.36164            1       1         1         1
## 2003  -3.607367  36.71279            0       1         0         1
## 2004 -10.692302  39.79992            1       0         0         1
## 2005  -7.408982  37.66951            0       1         0         0
## 2006  -6.721359  38.73640            1       0         0         1
## 2007  -6.193025  39.25603            1       1         1         0
## 2008  -6.142661  39.24159            1       1         1         0
## 2009 -10.965968  35.27540            0       0         0         0
## 2010  -9.971204  34.63016            1       1         1         0
## 2011  -6.814491  39.15244            1       1         1         0
## 2012  -8.934923  33.34461            1       0         0         0
## 2013  -2.665976  32.98017            1       1         1         0
## 2014  -6.150823  39.51708            0       1         1         0
## 2015  -7.872884  30.79704            0       0         1         0
## 2016  -2.705877  33.48917            1       0         0         1
## 2017 -10.258433  39.92180            1       0         0         0
## 2018  -7.599161  31.27127            1       1         0         0
## 2019  -3.133942  32.90605            1       0         0         1
## 2020  -6.816965  39.08526            0       0         1         0
## 2021  -4.419273  34.76239            0       0         0         0
## 2022  -8.062195  36.00653            1       0         1         1
## 2023  -4.734734  34.92388            1       1         1         1
## 2024  -6.808147  39.23252            1       1         0         0
## 2025  -7.510278  31.04500            0       1         0         0
## 2026  -8.967764  32.90095            0       1         0         0
## 2027  -7.646870  35.75628            0       1         1         0
## 2028  -5.236417  39.77872            0       0         0         0
## 2029  -8.635636  31.42947            0       0         0         0
## 2030  -1.241344  34.36808            1       1         1         0
## 2031  -6.849673  39.22526            1       0         1         0
## 2032  -4.776154  33.23853            0       1         0         0
## 2033  -3.209157  37.31183            1       1         0         0
## 2034  -7.302427  30.63091            0       1         1         0
## 2035 -10.274334  40.17459            0       0         0         0
## 2036  -8.541338  31.90562            1       0         1         0
## 2037  -2.843314  33.08111            1       0         0         0
## 2038  -4.460808  35.68938            1       0         1         0
## 2039  -2.602632  33.42278            1       1         0         0
## 2040  -6.209196  39.21827            1       1         1         1
## 2041  -9.050734  33.29010            0       0         0         0
## 2042  -3.432013  31.50893            1       1         1         0
## 2043  -6.849671  39.22503            0       0         0         0
## 2044  -4.453946  38.32841            0       0         0         0
## 2045  -6.187648  39.21582            1       0         0         0
## 2046  -6.200187  39.25399            1       0         1         0
## 2047  -4.493813  35.07229            0       0         0         0
## 2048  -3.351819  37.34918            1       1         0         1
## 2049  -4.200111  34.82145            1       0         0         0
## 2050  -2.121309  33.05953            1       1         0         1
## 2051  -7.849743  31.43522            1       0         1         1
## 2052  -7.954386  31.60717            1       0         0         0
## 2053  -4.474563  34.18417            0       1         0         0
## 2054  -5.875356  39.25609            1       0         0         0
## 2055  -4.071376  37.98837            1       1         1         0
## 2056  -5.134907  34.77139            1       1         0         0
## 2057  -1.750169  31.61119            1       0         0         0
## 2058 -10.378582  39.84099            1       1         0         1
## 2059  -4.395134  34.52822            0       1         0         0
## 2060  -8.167450  36.33011            1       1         0         0
## 2061  -6.162934  39.19122            0       0         1         0
## 2062  -5.074657  38.45269            0       0         0         0
## 2063  -4.435247  34.86985            1       1         1         0
## 2064  -4.612594  29.78251            1       1         1         0
## 2065  -6.858850  39.23302            1       1         0         0
## 2066  -3.391698  37.55031            1       1         1         0
## 2067  -4.874983  38.44760            0       0         0         0
## 2068  -6.854998  30.52992            0       1         0         0
## 2069  -6.816958  39.08603            1       0         1         0
## 2070  -5.769218  37.25095            0       0         0         0
## 2071  -5.185362  38.77041            1       1         0         1
## 2072  -2.120816  33.49131            1       1         1         0
## 2073  -3.204742  35.94439            1       0         0         0
## 2074  -4.088917  34.73578            1       0         1         0
## 2075 -10.817017  39.52649            1       1         1         0
## 2076  -9.171430  33.81922            0       0         0         0
## 2077 -10.926600  35.27890            1       1         0         0
## 2078  -4.760870  34.58139            1       1         1         1
## 2079  -8.803570  34.22392            1       0         1         0
## 2080 -10.258666  39.92090            1       1         1         0
## 2081  -8.973382  33.95753            0       1         0         0
## 2082  -2.578178  36.77668            0       0         0         0
## 2083  -4.776107  33.23834            0       0         0         0
## 2084  -3.355509  36.49439            0       0         0         0
## 2085 -10.793753  39.42271            0       1         1         0
## 2086  -4.191869  33.12874            0       0         0         0
## 2087  -2.856371  33.28018            0       1         1         0
## 2088  -8.088099  36.68166            0       0         0         0
## 2089  -1.331263  33.80811            1       0         0         0
## 2090  -4.200126  32.32583            0       0         1         0
## 2091 -10.488654  39.02789            1       1         0         0
## 2092  -6.154415  39.22299            1       0         1         0
## 2093 -11.125137  35.17390            1       1         0         0
## 2094 -10.488128  39.02829            1       1         0         1
## 2095 -11.023280  35.12392            0       0         0         1
## 2096  -8.189482  31.85022            0       0         0         0
## 2097  -1.557957  31.46215            1       1         1         0
## 2098  -9.336072  34.76558            1       0         1         0
## 2099  -2.344145  32.29518            0       1         0         0
## 2100 -11.057877  35.11873            0       1         1         0
## 2101  -1.344749  31.65857            1       0         1         0
## 2102  -1.321872  31.81752            1       1         1         0
## 2103  -6.192821  39.25603            1       1         0         0
## 2104  -3.366351  36.68724            1       1         1         0
## 2105  -3.005197  31.92445            1       0         1         0
## 2106  -4.105939  35.18116            1       1         1         1
## 2107  -2.538485  32.23759            1       1         1         0
## 2108  -3.031613  33.93113            0       0         1         0
## 2109  -8.806570  34.97652            1       0         1         0
## 2110  -9.369359  34.23857            1       0         1         0
## 2111  -6.181934  39.22333            0       1         0         0
## 2112  -3.358118  33.90985            1       0         1         0
## 2113  -1.853442  31.59029            0       1         1         1
## 2114  -2.743992  31.62895            0       0         0         0
## 2115  -8.305117  32.33495            1       0         1         0
## 2116  -4.310531  35.74016            0       0         0         0
## 2117  -5.124884  38.38488            1       0         0         0
## 2118  -6.933936  30.60138            0       0         0         0
## 2119  -7.752823  35.67893            1       1         1         0
## 2120  -2.766215  32.11263            1       1         1         0
## 2121  -4.552331  34.84274            0       1         0         0
## 2122  -1.880742  34.73088            1       0         1         1
## 2123 -10.493082  39.32410            1       0         0         0
## 2124  -8.553637  36.00417            0       0         0         0
## 2125  -1.794625  34.73343            1       0         0         1
## 2126  -8.906178  33.46299            0       1         0         0
## 2127  -1.556770  31.65016            0       1         1         0
## 2128  -8.251539  31.36193            0       1         0         1
## 2129  -6.743933  30.40716            1       1         1         0
## 2130  -8.954343  33.24194            0       0         0         1
## 2131  -6.661419  37.13609            1       1         1         0
## 2132  -2.627673  33.93041            0       1         0         0
## 2133  -6.418362  39.54793            0       0         1         0
## 2134 -10.686849  39.59189            0       1         0         0
## 2135  -3.523085  35.33449            0       1         1         0
## 2136 -10.196281  38.56199            0       1         0         0
## 2137  -4.844656  29.97259            0       0         0         1
## 2138  -2.559999  32.65545            1       1         0         0
## 2139 -10.867336  39.42960            1       1         1         0
## 2140  -7.393134  38.96937            1       1         1         0
## 2141  -2.596270  32.91345            1       1         0         0
## 2142  -2.554960  30.60707            1       0         1         0
## 2143  -8.600415  35.04390            1       0         1         1
## 2144  -9.759835  39.61860            1       1         0         0
## 2145  -1.874057  33.70225            1       0         0         1
## 2146  -3.394689  36.73829            1       1         1         0
## 2147  -6.869069  39.27626            1       1         0         0
## 2148  -3.376864  36.67659            1       1         1         0
## 2149  -5.017065  32.81012            1       0         0         0
## 2150  -4.701840  38.12082            1       0         0         0
## 2151  -3.331969  36.34391            1       1         0         0
## 2152  -6.222641  36.35265            1       0         1         1
## 2153  -7.769515  36.91530            1       0         1         0
## 2154  -6.965644  39.51337            0       1         0         0
## 2155  -6.783986  39.23880            1       1         1         1
## 2156  -8.953842  32.56485            1       1         0         0
## 2157 -10.606257  39.62233            0       0         0         0
## 2158  -4.872925  38.45612            1       0         1         0
## 2159  -6.220814  39.23285            0       0         1         0
## 2160  -4.450097  33.95166            0       1         0         1
## 2161  -4.853394  32.47505            1       0         0         0
## 2162  -6.222024  39.23324            1       0         0         0
## 2163  -3.680953  30.58997            1       0         0         0
## 2164  -3.681005  30.58993            1       1         0         1
## 2165  -3.042596  35.48211            0       0         1         0
## 2166  -2.759691  33.61841            0       0         0         0
## 2167  -6.210093  39.21912            1       0         1         1
## 2168  -2.887019  31.73253            1       1         1         1
## 2169  -7.556017  31.02547            0       0         1         0
## 2170  -4.510161  35.06835            0       0         0         0
## 2171 -10.706165  39.13305            1       1         0         0
## 2172 -11.014758  39.44334            1       0         0         0
## 2173  -5.078118  39.12214            1       1         0         0
## 2174  -5.414959  39.72396            0       0         1         0
## 2175  -6.326811  39.54995            0       0         0         0
## 2176  -2.802009  33.99103            1       1         1         0
## 2177  -2.827298  33.36686            1       1         0         0
## 2178  -5.874485  39.25644            0       1         1         0
## 2179  -3.078675  32.08505            0       0         0         0
## 2180 -10.951162  39.02943            1       1         1         0
## 2181  -4.843111  38.52186            0       0         0         0
## 2182  -5.695882  36.63144            1       0         0         0
## 2183  -6.759269  36.47060            1       1         1         1
## 2184  -8.631544  33.14788            1       1         0         0
## 2185  -9.054468  33.28924            0       0         0         0
## 2186  -6.566066  35.51695            1       1         1         0
## 2187  -6.227999  39.24173            1       1         0         0
## 2188  -7.748700  35.71592            1       0         1         0
## 2189  -4.887371  29.64412            1       1         0         0
## 2190  -4.983524  39.08415            0       0         0         0
## 2191  -6.485057  35.93949            1       1         1         0
## 2192  -6.833660  39.18554            1       1         1         0
## 2193  -9.427888  33.95596            0       0         1         0
## 2194  -5.246128  39.78123            0       0         0         0
## 2195  -7.838083  35.63740            0       1         1         0
## 2196  -9.305561  33.62524            0       0         1         0
## 2197  -2.643967  32.77833            1       1         1         0
## 2198  -6.169415  39.20041            1       1         0         0
## 2199  -8.908516  32.96499            0       1         0         0
## 2200  -6.813240  37.68254            1       1         1         1
## 2201  -8.898331  33.45403            0       0         0         0
## 2202  -8.916061  33.53401            1       1         0         1
## 2203  -6.616194  39.11210            0       1         0         0
## 2204  -4.186219  33.13551            0       0         0         0
## 2205  -2.877713  32.24622            1       1         1         0
## 2206 -10.861404  39.02941            0       0         0         0
## 2207  -3.239739  33.45499            0       1         1         0
## 2208  -4.865199  30.33689            0       0         1         0
## 2209  -2.680874  30.57971            0       1         1         0
## 2210  -3.373630  36.84828            0       1         0         0
## 2211  -8.481461  32.08486            1       1         1         0
## 2212  -3.345385  36.83518            0       0         0         1
## 2213 -10.835524  38.64745            1       1         1         1
## 2214  -6.207886  39.38627            0       0         0         0
## 2215  -3.720725  32.67925            0       1         0         0
## 2216 -10.096560  34.68139            0       0         0         1
## 2217  -8.603330  35.04272            1       0         1         0
## 2218  -8.302891  32.32756            0       1         1         0
## 2219 -10.920679  39.37978            0       0         1         0
## 2220  -7.731098  35.70030            1       0         0         0
## 2221 -10.362627  40.10336            1       0         0         1
## 2222 -11.133291  38.60670            0       0         0         0
## 2223  -3.376985  36.67632            1       1         0         0
## 2224  -6.948180  39.23120            1       1         0         0
## 2225  -2.763421  33.61448            1       0         0         0
## 2226  -3.516945  32.39224            1       0         1         0
## 2227  -5.968306  39.19658            0       0         0         0
## 2228  -8.774777  33.64481            1       0         0         0
## 2229  -3.372749  36.68573            1       1         1         0
## 2230  -4.363440  29.96320            0       0         1         0
## 2231  -2.109268  33.07542            0       1         1         1
## 2232  -2.415731  31.70042            0       0         0         0
## 2233  -1.507109  33.78726            1       0         1         0
## 2234 -10.859110  39.78019            1       1         1         0
## 2235  -6.797048  39.22951            1       1         0         0
## 2236  -5.350492  39.70171            1       1         1         0
## 2237  -5.010447  39.81179            0       0         0         0
## 2238 -10.692349  39.80029            0       1         0         0
## 2239  -1.778787  34.06960            0       0         1         0
## 2240  -2.533517  33.19509            1       1         1         0
## 2241  -5.935282  37.27536            1       0         0         0
## 2242  -5.130952  38.97426            0       0         0         0
## 2243  -8.231383  35.43057            0       0         1         0
## 2244  -6.897896  39.28340            0       1         1         0
## 2245 -10.286861  40.11686            1       0         0         0
## 2246  -3.347630  37.58006            1       1         1         0
## 2247  -9.933617  39.72449            0       1         0         0
## 2248  -8.391695  38.94911            0       0         0         0
## 2249  -6.185138  39.20795            0       0         1         0
## 2250  -1.341735  34.38516            1       1         0         0
## 2251  -8.411658  38.93983            0       1         1         0
## 2252  -5.716561  38.23595            1       1         0         0
## 2253  -6.885230  39.15550            0       0         0         0
## 2254  -6.143292  39.24144            0       0         1         0
## 2255  -4.208795  35.76789            1       0         0         0
## 2256  -9.847005  38.89747            0       0         0         0
## 2257  -6.192247  39.25564            1       0         1         0
## 2258  -4.361087  37.82408            1       1         1         0
## 2259  -5.934199  37.27861            0       0         0         0
## 2260  -2.546274  32.95749            1       1         1         0
## 2261  -7.600261  36.99795            0       1         0         0
## 2262  -3.863650  32.60694            0       0         1         1
## 2263  -3.349058  36.83625            1       0         0         1
## 2264  -9.336880  34.76610            1       0         1         0
## 2265  -6.137947  39.22995            1       1         0         0
## 2266  -8.131375  30.96871            0       0         1         0
## 2267  -6.849222  39.14526            1       1         1         0
## 2268  -5.076301  32.06909            0       0         0         0
## 2269  -8.128375  30.96699            0       0         0         0
## 2270  -1.783800  34.71444            0       1         0         0
## 2271  -9.165565  33.54238            0       1         0         0
## 2272  -4.900306  38.57287            1       1         1         0
## 2273  -2.596186  32.91290            1       1         0         0
## 2274  -4.373068  35.07338            1       0         0         0
## 2275  -3.043482  31.37582            1       1         1         0
## 2276  -9.239894  33.33897            0       0         0         0
## 2277  -2.525669  32.90239            0       1         0         0
## 2278  -3.282207  32.87863            1       0         1         0
## 2279  -9.336880  34.76602            0       0         0         0
## 2280  -8.905866  33.46194            1       1         0         0
## 2281  -3.680934  30.58989            0       0         0         1
## 2282 -11.041374  37.42902            0       1         1         0
## 2283  -6.971225  39.09557            1       1         0         0
## 2284  -5.125565  32.38959            0       0         0         0
## 2285  -2.644822  33.94641            0       0         1         0
## 2286 -10.715983  39.99636            0       0         0         0
## 2287 -10.281193  40.19734            1       0         0         1
## 2288  -6.192945  39.25620            1       0         0         0
## 2289  -5.177328  34.61952            1       1         1         0
## 2290  -6.843848  39.23462            1       0         1         0
## 2291 -10.234855  39.47383            0       1         1         0
## 2292  -8.052346  31.50338            0       0         0         0
## 2293 -10.709727  39.44401            1       1         1         0
## 2294  -4.548847  35.79581            1       0         0         1
## 2295  -4.774028  34.91749            0       1         1         0
## 2296  -1.584951  30.89356            0       1         1         0
## 2297  -9.057411  33.28771            1       1         0         0
## 2298  -3.830560  33.29128            1       0         0         0
## 2299  -3.461972  35.69868            1       0         0         0
## 2300  -7.128164  39.20790            0       0         0         0
## 2301  -3.478265  37.57771            1       1         1         0
## 2302  -5.042164  32.81342            1       0         0         0
## 2303  -4.185813  34.24530            1       0         1         0
## 2304  -4.199103  30.49058            1       1         0         0
## 2305  -4.875886  34.63680            1       1         0         0
## 2306  -4.435467  34.87067            1       1         0         0
## 2307  -4.409648  34.77309            0       1         0         0
## 2308  -3.446921  37.43409            0       0         0         0
## 2309  -2.575756  36.77407            1       1         1         0
## 2310  -1.088651  31.80475            0       1         1         1
## 2311  -5.020879  38.70638            1       0         1         1
## 2312  -8.171884  36.33536            0       1         0         0
## 2313  -4.281833  35.55610            1       0         1         0
## 2314  -3.338444  36.82906            1       1         1         0
## 2315  -5.988458  37.75491            0       1         1         0
## 2316  -8.788280  35.15073            1       1         0         0
## 2317  -7.390101  31.36502            0       0         0         0
## 2318  -2.746781  33.23087            1       1         1         1
## 2319  -6.226674  39.24024            0       0         0         0
## 2320  -5.029515  38.69537            0       0         0         0
## 2321  -4.210228  35.76519            1       0         0         0
## 2322  -6.626127  37.51913            0       1         0         0
## 2323  -7.999446  35.84875            0       0         0         0
## 2324  -8.217790  31.68495            0       1         0         0
## 2325  -4.931873  34.94236            1       1         1         1
## 2326  -6.079373  36.64923            1       1         0         0
## 2327  -7.779478  35.67066            1       1         1         0
## 2328  -3.563382  36.94721            1       1         1         0
## 2329  -8.296796  34.90609            1       0         1         0
## 2330  -8.848387  34.82302            0       0         0         0
## 2331  -2.841258  35.51343            0       0         1         0
## 2332  -3.281202  32.98756            0       1         1         0
## 2333 -10.181494  38.94267            1       1         1         0
## 2334  -4.268824  38.05358            1       1         1         0
## 2335 -10.942599  39.24223            0       0         0         0
## 2336  -5.779123  39.30257            0       0         1         0
## 2337 -10.737771  38.80796            1       0         0         0
## 2338  -4.916466  34.67373            0       0         0         0
## 2339  -6.300675  35.50063            1       0         1         0
## 2340  -9.317070  32.77234            0       1         0         0
## 2341  -6.152432  39.22363            1       0         1         0
## 2342  -8.605054  39.26018            0       0         0         0
## 2343  -9.332098  33.70054            0       0         0         0
## 2344  -2.929762  36.22740            0       1         1         0
## 2345  -6.923380  37.77178            1       1         1         1
## 2346  -6.923232  39.25726            1       0         1         0
## 2347  -9.948024  37.90626            0       0         0         0
## 2348  -2.490325  32.91200            0       0         0         0
## 2349  -6.227388  39.24078            0       0         0         0
## 2350  -2.540962  32.91277            1       1         0         0
## 2351  -5.588207  38.26388            1       0         1         0
## 2352  -7.846355  31.43902            0       0         0         0
## 2353 -10.717003  38.77125            1       0         0         0
## 2354  -5.490354  29.78235            1       1         0         0
## 2355  -3.292362  32.23032            0       1         1         0
## 2356  -3.749451  32.85053            0       1         0         0
## 2357  -6.301227  35.88024            0       1         1         0
## 2358  -2.801814  33.99176            1       1         0         1
## 2359 -10.511224  38.99688            1       1         1         0
## 2360  -4.268846  38.05023            1       1         1         0
## 2361  -7.994518  31.79431            0       0         0         0
## 2362  -8.467723  32.15757            0       0         0         0
## 2363  -7.498066  36.46825            0       0         0         0
## 2364 -11.208179  34.97160            0       1         1         0
## 2365  -9.079714  34.80920            0       1         1         0
## 2366  -5.173220  38.46609            0       0         0         0
## 2367  -1.378760  34.62302            0       1         1         0
## 2368  -5.884347  36.44609            1       0         1         0
## 2369  -8.460533  32.15881            1       1         0         0
## 2370  -6.699767  39.18783            1       0         0         1
## 2371  -3.545484  36.98615            1       1         0         0
## 2372  -5.618916  32.74555            1       1         1         0
## 2373  -4.848599  34.82812            0       0         1         0
## 2374  -6.791110  39.14621            1       1         1         1
## 2375  -6.773442  37.75378            1       0         1         0
## 2376  -7.724768  35.71993            1       0         0         0
## 2377  -9.000733  32.81140            1       1         0         1
## 2378  -6.759903  39.12668            1       0         0         1
## 2379  -1.864644  33.86878            0       1         1         0
## 2380  -2.845481  33.08505            1       0         1         0
## 2381  -7.114282  31.22827            1       0         0         1
## 2382 -11.017188  34.88400            1       1         1         0
## 2383  -7.287441  36.06037            1       1         1         1
## 2384  -5.022515  32.81919            1       1         1         0
## 2385  -8.775107  33.64467            1       1         1         0
## 2386  -3.216424  37.25918            1       0         0         0
## 2387  -6.885340  39.15525            1       1         0         0
## 2388  -3.332828  36.64142            1       1         1         1
## 2389  -7.309945  30.63526            0       0         0         0
## 2390  -2.043977  33.84529            1       1         1         0
## 2391 -10.511789  38.99269            1       0         0         0
## 2392  -3.693129  37.42715            1       1         0         0
## 2393  -6.867703  39.28417            1       1         1         0
## 2394  -6.163440  36.02292            1       1         1         0
## 2395  -2.877357  32.24718            1       1         1         0
## 2396  -1.369111  34.08745            1       1         0         0
## 2397  -6.210602  34.83528            0       0         0         1
## 2398  -6.184842  39.20873            0       0         0         0
## 2399 -10.732628  39.51362            0       1         0         0
## 2400  -4.984132  39.83273            0       0         0         0
## 2401  -6.888529  39.16086            1       1         1         1
## 2402  -8.768113  31.84190            0       0         0         0
## 2403  -9.000420  32.81158            1       0         0         0
## 2404  -8.255859  35.09254            0       0         0         1
## 2405  -6.880665  39.24543            1       1         0         0
## 2406  -9.434773  33.94877            0       1         0         0
## 2407  -2.034700  33.02638            1       1         0         0
## 2408  -1.232019  30.94882            1       0         1         0
## 2409  -4.566916  35.65825            1       0         0         0
## 2410  -6.123283  38.40803            1       1         1         0
## 2411 -10.442424  36.05887            0       1         1         1
## 2412 -10.281243  40.19089            0       1         0         0
## 2413  -6.896688  39.25344            1       0         0         0
## 2414  -9.334529  34.76649            1       1         1         0
## 2415  -8.820653  36.25187            1       1         1         0
## 2416  -7.323596  30.63086            0       1         0         0
## 2417  -5.935244  37.27330            0       0         0         0
## 2418  -6.138336  39.23007            0       0         0         0
## 2419  -1.726999  33.97483            1       0         0         0
## 2420  -6.363027  37.13973            0       1         1         0
## 2421  -1.238753  34.36521            0       0         0         0
## 2422  -7.481743  31.48242            0       0         1         0
## 2423  -7.564924  36.10861            1       0         0         0
## 2424  -6.376413  38.35185            1       0         0         0
## 2425  -6.175003  36.02788            0       1         1         0
## 2426  -4.983787  39.83453            0       0         1         0
## 2427  -6.194602  39.22579            0       1         1         0
## 2428  -3.406508  36.68098            1       1         1         1
## 2429  -2.459225  33.63088            1       0         0         0
## 2430  -3.680934  30.58989            0       1         0         0
## 2431  -8.931036  33.50725            1       1         0         0
## 2432  -7.680594  31.56070            0       0         1         0
## 2433  -5.123551  38.38284            1       1         1         1
## 2434  -4.825455  34.75298            1       0         1         0
## 2435  -4.399826  34.53083            1       1         0         1
## 2436  -6.085549  39.22238            0       0         1         0
## 2437  -4.226137  34.61280            0       1         0         0
## 2438  -2.748351  33.23057            1       1         0         0
## 2439  -6.228635  39.24224            0       0         0         0
## 2440  -6.220605  36.35456            0       0         0         1
## 2441  -1.446567  34.58732            0       1         0         0
## 2442  -3.377202  36.95809            1       0         1         0
## 2443  -6.891271  39.24113            1       1         0         1
## 2444  -4.984065  39.83414            0       0         0         0
## 2445  -6.813025  37.68301            1       0         1         0
## 2446  -5.769774  37.25102            0       0         0         0
## 2447  -5.777695  39.30213            0       0         0         0
## 2448  -3.725601  32.68026            0       0         1         0
## 2449  -9.464867  33.94933            1       1         1         0
## 2450  -8.294439  31.51348            1       0         1         0
## 2451  -7.778176  35.67418            1       0         0         0
## 2452  -7.697109  35.62000            1       1         0         0
## 2453  -6.324541  39.54777            1       1         0         0
## 2454  -6.162488  34.84314            1       1         0         0
## 2455  -8.373691  31.71754            0       0         0         0
## 2456  -7.216939  38.79336            0       0         1         0
## 2457  -6.822772  39.31010            1       0         0         0
## 2458  -5.802374  34.39091            0       1         0         0
## 2459  -3.871173  32.76154            1       1         0         0
## 2460  -5.861110  35.69626            0       0         0         0
## 2461  -7.833512  33.35175            1       0         1         0
## 2462  -3.389477  36.67771            0       1         0         0
## 2463  -5.870462  35.13794            0       0         1         0
## 2464  -4.303021  33.89077            1       1         1         1
## 2465  -3.439988  31.89243            0       1         0         0
## 2466  -6.172647  35.73794            1       1         0         0
## 2467 -10.692602  39.80857            1       0         0         0
## 2468  -8.609685  31.29039            0       0         0         0
## 2469  -3.032019  33.93111            1       0         1         0
## 2470 -10.607418  39.62223            0       1         0         0
## 2471  -7.779580  35.67041            1       0         0         0
## 2472  -9.111658  32.77026            1       1         0         0
## 2473  -6.145171  37.59335            1       0         1         0
## 2474  -1.984335  33.06309            0       1         1         1
## 2475  -4.293488  34.23201            0       1         0         0
## 2476  -5.088435  31.84673            1       0         0         1
## 2477  -2.547869  33.07483            1       1         1         0
## 2478  -4.432242  34.47053            0       1         1         0
## 2479  -4.435569  30.02751            0       0         0         0
## 2480  -9.002353  34.54873            1       1         1         1
## 2481  -3.750704  32.84776            0       0         0         0
## 2482  -7.999026  35.85124            0       0         0         0
## 2483 -10.965874  35.27532            0       0         0         0
## 2484  -6.094198  39.33015            0       1         0         0
## 2485  -2.662026  30.59727            0       0         0         0
## 2486  -1.912952  34.72767            0       1         1         0
## 2487  -2.488087  32.92426            1       1         0         1
## 2488  -5.870125  35.13630            1       1         1         0
## 2489  -4.821143  39.08807            1       0         0         0
## 2490  -9.971182  34.63029            1       0         1         0
## 2491  -1.372582  34.43296            1       0         0         0
## 2492  -2.643612  33.96664            1       1         0         0
## 2493  -6.960911  39.33483            0       0         0         0
## 2494  -6.636907  38.35490            1       1         0         0
## 2495  -5.204877  38.70711            1       0         1         1
## 2496  -1.703092  34.30154            0       1         0         0
## 2497  -3.281817  32.87833            1       0         0         0
## 2498  -6.839376  39.23981            1       0         1         0
## 2499  -1.883169  34.73212            1       1         0         0
## 2500  -4.744596  29.69764            1       1         1         0
## 2501  -9.283015  35.28414            1       1         0         0
## 2502  -6.418864  39.54636            0       0         0         0
## 2503  -5.123980  38.38456            0       0         0         0
## 2504  -2.853575  32.88580            0       0         0         0
## 2505  -6.770632  39.26108            0       0         0         0
## 2506 -10.606037  39.62248            1       1         1         1
## 2507  -2.805099  33.98563            0       0         0         0
## 2508  -8.386757  33.23049            0       1         1         0
## 2509  -6.884871  39.15548            1       1         1         1
## 2510  -9.082944  34.64934            1       1         0         0
## 2511  -4.746318  29.69797            0       0         0         0
## 2512  -9.296736  32.77153            1       0         1         0
## 2513 -10.558671  36.23353            1       1         0         0
## 2514  -3.011971  37.59019            0       0         0         1
## 2515 -10.673124  35.64078            0       0         0         0
## 2516  -3.279333  32.21992            0       0         0         0
## 2517  -6.301347  33.84543            1       0         0         0
## 2518  -8.253856  35.10660            1       0         1         0
## 2519  -1.804953  33.40095            0       0         0         0
## 2520  -4.332709  35.40905            0       1         0         0
## 2521  -8.818602  34.83856            1       0         1         0
## 2522 -10.641517  38.84598            0       0         0         0
## 2523  -8.352503  31.83386            1       1         1         0
## 2524  -7.753067  35.68071            0       0         1         0
## 2525 -10.835110  38.64666            1       0         0         1
## 2526  -9.270252  33.36336            0       1         1         0
## 2527  -1.454525  31.69071            1       1         0         0
## 2528 -10.367245  38.76086            1       0         0         0
## 2529  -2.523361  32.96318            1       0         1         0
## 2530  -6.324547  39.54782            1       0         1         0
## 2531  -6.784001  39.01803            1       0         1         0
## 2532  -6.852824  39.25283            1       1         0         0
## 2533  -1.986262  33.06912            0       1         0         0
## 2534  -2.844751  33.08226            0       0         1         0
## 2535  -3.305779  37.12887            1       0         0         0
## 2536  -6.618154  39.09545            0       0         1         0
## 2537  -4.110701  35.18621            0       0         0         0
## 2538  -6.800162  39.25555            1       0         0         0
## 2539  -9.118740  32.93533            1       1         0         0
## 2540  -2.565998  32.95756            1       1         1         0
## 2541  -5.246001  39.78180            0       1         0         0
## 2542  -4.590288  34.66215            1       1         0         0
## 2543  -9.296743  32.77008            1       1         1         0
## 2544 -10.197055  38.56472            0       0         0         0
## 2545  -4.162463  35.42498            1       1         0         0
## 2546  -6.792855  39.24032            1       0         1         0
## 2547  -3.212941  37.26080            1       1         1         1
## 2548  -4.193070  33.13313            0       0         0         0
## 2549  -8.017115  31.60288            0       1         1         1
## 2550  -9.952802  39.32797            1       0         0         1
## 2551  -2.878349  37.36655            1       1         1         0
## 2552  -5.037293  38.88071            1       0         1         0
## 2553  -8.047179  35.46886            1       1         0         1
## 2554  -4.160797  35.42911            1       1         0         1
## 2555 -10.239330  39.47103            1       0         0         0
## 2556  -7.976987  35.78910            0       1         0         0
## 2557  -6.164732  35.75660            1       0         0         0
## 2558  -6.162856  39.21655            1       0         0         0
## 2559 -10.509265  38.99613            0       0         0         0
## 2560  -1.498287  33.81350            1       1         1         0
## 2561  -9.012510  33.06821            1       0         0         0
## 2562 -10.407199  39.16724            0       0         1         0
## 2563  -4.576166  30.09278            0       0         0         0
## 2564  -6.423994  31.21978            0       0         0         1
## 2565  -4.100988  32.40647            0       0         1         1
## 2566 -10.606219  39.62167            0       0         0         0
## 2567  -3.866168  32.60687            1       1         1         0
## 2568  -8.301017  35.28326            1       0         0         1
## 2569  -3.362432  36.96540            0       1         0         0
## 2570  -8.308666  32.33490            0       0         0         0
## 2571  -4.455672  33.95451            0       0         0         0
## 2572  -6.198856  39.25436            0       1         0         0
## 2573  -2.600689  33.42217            1       1         1         0
## 2574  -4.846267  29.97225            1       1         1         0
## 2575  -2.634796  31.31107            1       0         1         0
## 2576  -7.484150  35.98475            1       0         0         0
## 2577  -2.107515  33.07513            0       1         0         0
## 2578  -6.742400  30.40853            1       1         0         0
## 2579  -3.371392  36.67972            1       1         0         0
## 2580  -7.780345  35.66010            1       0         0         0
## 2581  -7.470026  36.12703            1       1         0         0
## 2582 -10.442333  36.05903            1       1         1         1
## 2583  -8.605276  39.26031            1       0         0         0
## 2584  -3.342537  37.29894            1       1         1         0
## 2585  -8.875097  34.82136            1       1         0         0
## 2586  -5.036496  38.88018            1       1         1         1
## 2587  -4.548916  35.79573            1       1         1         1
## 2588  -3.304250  37.12804            0       0         0         0
## 2589  -4.748347  29.69617            1       1         0         0
## 2590  -4.984093  39.83420            0       0         0         0
## 2591  -5.076253  39.10349            0       0         0         0
## 2592  -8.546476  32.54829            0       0         0         0
## 2593  -5.169807  39.80693            0       1         1         0
## 2594  -3.381781  33.91404            0       0         0         1
## 2595  -3.535543  32.41665            0       0         0         0
## 2596 -10.401762  40.18278            1       0         0         0
## 2597  -5.759667  34.43152            1       1         0         1
## 2598  -6.267233  30.95852            0       0         0         0
## 2599 -10.862547  39.02895            1       1         1         0
## 2600  -3.495200  36.81891            0       0         1         0
## 2601  -3.367032  37.31875            1       0         0         1
## 2602  -5.112555  31.04547            1       1         1         0
## 2603  -8.392059  38.94891            1       1         1         1
## 2604  -2.531286  32.94753            0       1         0         0
## 2605  -8.905322  33.40721            1       1         0         0
## 2606  -6.207937  39.38624            1       1         0         0
## 2607 -10.950933  39.02943            0       0         0         0
## 2608  -4.000029  34.54301            0       1         0         0
## 2609  -3.420540  34.09644            0       1         0         0
## 2610  -6.931571  39.26271            0       0         0         0
## 2611 -10.649655  38.81035            1       0         1         0
## 2612  -2.756886  31.39904            0       1         1         0
## 2613  -6.182165  39.23485            1       0         1         0
## 2614 -10.708052  39.44510            0       1         0         1
## 2615 -10.966740  35.27480            1       1         0         0
## 2616  -2.522959  32.96438            1       1         0         0
## 2617  -7.128646  31.20492            0       0         0         0
## 2618  -8.958252  33.93230            1       1         0         0
## 2619  -3.345230  37.30217            1       1         1         0
## 2620 -10.196360  38.56435            0       0         0         0
## 2621  -2.375551  33.58196            1       0         0         0
## 2622  -2.539902  32.24270            1       1         0         0
## 2623  -5.168036  34.62012            0       0         0         0
## 2624  -3.127338  33.49245            1       1         1         0
## 2625  -2.486275  32.90212            1       1         1         0
## 2626  -1.884580  34.72346            0       0         0         0
## 2627  -8.016373  31.60447            0       0         1         0
## 2628  -7.784375  35.66180            1       1         0         0
## 2629  -6.375561  38.35108            0       0         0         0
## 2630 -11.402996  36.43014            0       1         0         0
## 2631  -8.302337  31.06769            0       0         0         0
##      mobile_money_classification if_else(Q2 == 1, "Male", "Female")
## 1                              0                             Female
## 2                              3                               Male
## 3                              2                             Female
## 4                              3                               Male
## 5                              3                               Male
## 6                              1                               Male
## 7                              3                             Female
## 8                              3                             Female
## 9                              1                             Female
## 10                             3                             Female
## 11                             3                             Female
## 12                             2                             Female
## 13                             1                               Male
## 14                             0                             Female
## 15                             2                             Female
## 16                             0                             Female
## 17                             2                             Female
## 18                             3                             Female
## 19                             3                               Male
## 20                             3                             Female
## 21                             3                             Female
## 22                             3                             Female
## 23                             3                               Male
## 24                             1                             Female
## 25                             3                               Male
## 26                             3                             Female
## 27                             3                             Female
## 28                             3                             Female
## 29                             3                             Female
## 30                             3                             Female
## 31                             2                             Female
## 32                             3                               Male
## 33                             3                             Female
## 34                             1                               Male
## 35                             2                             Female
## 36                             1                               Male
## 37                             1                               Male
## 38                             3                               Male
## 39                             1                             Female
## 40                             3                               Male
## 41                             1                             Female
## 42                             1                             Female
## 43                             3                             Female
## 44                             2                             Female
## 45                             3                               Male
## 46                             2                             Female
## 47                             1                             Female
## 48                             3                               Male
## 49                             3                             Female
## 50                             2                               Male
## 51                             1                             Female
## 52                             1                             Female
## 53                             1                             Female
## 54                             3                               Male
## 55                             3                               Male
## 56                             1                               Male
## 57                             1                               Male
## 58                             3                             Female
## 59                             0                             Female
## 60                             3                               Male
## 61                             3                               Male
## 62                             3                             Female
## 63                             3                               Male
## 64                             1                             Female
## 65                             0                             Female
## 66                             3                               Male
## 67                             3                             Female
## 68                             3                               Male
## 69                             3                               Male
## 70                             3                             Female
## 71                             1                             Female
## 72                             3                               Male
## 73                             1                               Male
## 74                             3                             Female
## 75                             2                               Male
## 76                             3                               Male
## 77                             1                               Male
## 78                             1                               Male
## 79                             3                               Male
## 80                             0                             Female
## 81                             3                             Female
## 82                             2                             Female
## 83                             0                               Male
## 84                             0                             Female
## 85                             0                             Female
## 86                             1                             Female
## 87                             0                               Male
## 88                             3                               Male
## 89                             3                               Male
## 90                             3                               Male
## 91                             1                               Male
## 92                             3                             Female
## 93                             3                             Female
## 94                             0                               Male
## 95                             0                             Female
## 96                             2                             Female
## 97                             0                               Male
## 98                             1                             Female
## 99                             3                               Male
## 100                            3                               Male
## 101                            3                               Male
## 102                            3                             Female
## 103                            3                             Female
## 104                            3                               Male
## 105                            1                             Female
## 106                            3                               Male
## 107                            1                             Female
## 108                            3                             Female
## 109                            2                               Male
## 110                            2                             Female
## 111                            3                               Male
## 112                            0                             Female
## 113                            0                             Female
## 114                            0                             Female
## 115                            0                               Male
## 116                            2                             Female
## 117                            2                             Female
## 118                            1                               Male
## 119                            0                               Male
## 120                            2                               Male
## 121                            1                             Female
## 122                            0                             Female
## 123                            3                               Male
## 124                            3                             Female
## 125                            1                             Female
## 126                            0                               Male
## 127                            3                               Male
## 128                            1                               Male
## 129                            1                             Female
## 130                            2                             Female
## 131                            3                               Male
## 132                            3                             Female
## 133                            0                             Female
## 134                            0                               Male
## 135                            3                             Female
## 136                            2                             Female
## 137                            1                             Female
## 138                            3                               Male
## 139                            3                               Male
## 140                            2                             Female
## 141                            1                               Male
## 142                            3                               Male
## 143                            2                             Female
## 144                            0                             Female
## 145                            3                               Male
## 146                            2                               Male
## 147                            0                             Female
## 148                            3                             Female
## 149                            0                             Female
## 150                            3                             Female
## 151                            2                               Male
## 152                            1                             Female
## 153                            3                               Male
## 154                            3                               Male
## 155                            0                             Female
## 156                            3                             Female
## 157                            1                             Female
## 158                            2                             Female
## 159                            0                             Female
## 160                            2                               Male
## 161                            2                             Female
## 162                            3                               Male
## 163                            3                               Male
## 164                            0                             Female
## 165                            3                               Male
## 166                            2                               Male
## 167                            2                               Male
## 168                            0                             Female
## 169                            0                             Female
## 170                            1                             Female
## 171                            3                             Female
## 172                            2                             Female
## 173                            1                               Male
## 174                            0                               Male
## 175                            0                             Female
## 176                            3                               Male
## 177                            3                               Male
## 178                            3                             Female
## 179                            3                             Female
## 180                            1                             Female
## 181                            3                             Female
## 182                            3                               Male
## 183                            3                             Female
## 184                            1                               Male
## 185                            1                             Female
## 186                            1                               Male
## 187                            1                               Male
## 188                            0                               Male
## 189                            1                               Male
## 190                            3                               Male
## 191                            0                             Female
## 192                            3                             Female
## 193                            3                               Male
## 194                            1                             Female
## 195                            0                               Male
## 196                            1                             Female
## 197                            3                               Male
## 198                            3                               Male
## 199                            3                               Male
## 200                            0                             Female
## 201                            2                               Male
## 202                            2                             Female
## 203                            2                               Male
## 204                            0                               Male
## 205                            3                               Male
## 206                            1                               Male
## 207                            1                             Female
## 208                            3                               Male
## 209                            0                               Male
## 210                            3                             Female
## 211                            1                             Female
## 212                            3                             Female
## 213                            1                             Female
## 214                            1                             Female
## 215                            3                               Male
## 216                            2                               Male
## 217                            0                             Female
## 218                            1                               Male
## 219                            3                             Female
## 220                            2                             Female
## 221                            1                               Male
## 222                            0                             Female
## 223                            2                             Female
## 224                            1                             Female
## 225                            3                               Male
## 226                            3                               Male
## 227                            1                             Female
## 228                            1                             Female
## 229                            3                               Male
## 230                            1                             Female
## 231                            0                             Female
## 232                            0                               Male
## 233                            1                               Male
## 234                            3                               Male
## 235                            0                             Female
## 236                            1                             Female
## 237                            1                             Female
## 238                            0                               Male
## 239                            3                             Female
## 240                            1                             Female
## 241                            3                               Male
## 242                            3                               Male
## 243                            3                             Female
## 244                            1                               Male
## 245                            3                             Female
## 246                            3                               Male
## 247                            2                             Female
## 248                            2                               Male
## 249                            1                             Female
## 250                            3                             Female
## 251                            1                               Male
## 252                            3                               Male
## 253                            3                               Male
## 254                            0                             Female
## 255                            0                               Male
## 256                            1                             Female
## 257                            0                               Male
## 258                            3                               Male
## 259                            2                               Male
## 260                            3                             Female
## 261                            0                             Female
## 262                            0                             Female
## 263                            3                               Male
## 264                            3                             Female
## 265                            3                               Male
## 266                            3                               Male
## 267                            1                               Male
## 268                            0                             Female
## 269                            0                             Female
## 270                            1                               Male
## 271                            1                             Female
## 272                            1                               Male
## 273                            3                             Female
## 274                            0                             Female
## 275                            2                               Male
## 276                            2                               Male
## 277                            3                               Male
## 278                            0                               Male
## 279                            3                               Male
## 280                            3                             Female
## 281                            3                               Male
## 282                            0                             Female
## 283                            3                               Male
## 284                            2                               Male
## 285                            1                             Female
## 286                            1                               Male
## 287                            1                             Female
## 288                            1                             Female
## 289                            3                               Male
## 290                            3                               Male
## 291                            2                             Female
## 292                            1                             Female
## 293                            2                             Female
## 294                            1                             Female
## 295                            3                             Female
## 296                            0                             Female
## 297                            3                               Male
## 298                            0                             Female
## 299                            1                             Female
## 300                            2                             Female
## 301                            2                             Female
## 302                            2                             Female
## 303                            3                               Male
## 304                            1                             Female
## 305                            1                             Female
## 306                            0                             Female
## 307                            3                             Female
## 308                            1                             Female
## 309                            1                               Male
## 310                            2                             Female
## 311                            3                               Male
## 312                            3                               Male
## 313                            1                             Female
## 314                            3                               Male
## 315                            3                               Male
## 316                            3                             Female
## 317                            1                               Male
## 318                            3                               Male
## 319                            2                               Male
## 320                            0                             Female
## 321                            3                               Male
## 322                            1                             Female
## 323                            1                               Male
## 324                            3                             Female
## 325                            0                               Male
## 326                            1                               Male
## 327                            2                             Female
## 328                            0                             Female
## 329                            3                               Male
## 330                            0                             Female
## 331                            3                             Female
## 332                            0                               Male
## 333                            0                             Female
## 334                            1                               Male
## 335                            3                               Male
## 336                            3                               Male
## 337                            3                               Male
## 338                            1                             Female
## 339                            3                               Male
## 340                            3                             Female
## 341                            2                               Male
## 342                            3                               Male
## 343                            1                               Male
## 344                            0                             Female
## 345                            1                               Male
## 346                            2                             Female
## 347                            0                               Male
## 348                            1                             Female
## 349                            1                             Female
## 350                            1                             Female
## 351                            3                             Female
## 352                            1                             Female
## 353                            3                             Female
## 354                            2                               Male
## 355                            3                               Male
## 356                            3                             Female
## 357                            0                             Female
## 358                            3                             Female
## 359                            3                               Male
## 360                            1                             Female
## 361                            3                             Female
## 362                            0                               Male
## 363                            1                               Male
## 364                            0                             Female
## 365                            1                             Female
## 366                            3                             Female
## 367                            3                               Male
## 368                            0                             Female
## 369                            3                             Female
## 370                            1                             Female
## 371                            1                             Female
## 372                            0                             Female
## 373                            3                             Female
## 374                            1                             Female
## 375                            2                               Male
## 376                            3                             Female
## 377                            3                               Male
## 378                            1                             Female
## 379                            1                             Female
## 380                            1                             Female
## 381                            1                               Male
## 382                            3                             Female
## 383                            3                             Female
## 384                            1                               Male
## 385                            1                             Female
## 386                            1                             Female
## 387                            1                             Female
## 388                            3                             Female
## 389                            1                               Male
## 390                            1                               Male
## 391                            2                               Male
## 392                            3                               Male
## 393                            0                               Male
## 394                            0                               Male
## 395                            3                             Female
## 396                            3                             Female
## 397                            3                             Female
## 398                            3                             Female
## 399                            1                             Female
## 400                            0                             Female
## 401                            3                               Male
## 402                            2                             Female
## 403                            3                               Male
## 404                            3                             Female
## 405                            1                             Female
## 406                            3                             Female
## 407                            3                               Male
## 408                            3                             Female
## 409                            3                             Female
## 410                            0                             Female
## 411                            1                             Female
## 412                            0                               Male
## 413                            3                             Female
## 414                            0                             Female
## 415                            3                             Female
## 416                            0                               Male
## 417                            3                             Female
## 418                            3                               Male
## 419                            3                               Male
## 420                            3                               Male
## 421                            3                             Female
## 422                            3                               Male
## 423                            3                             Female
## 424                            2                             Female
## 425                            3                             Female
## 426                            3                               Male
## 427                            3                             Female
## 428                            2                               Male
## 429                            3                               Male
## 430                            2                             Female
## 431                            3                               Male
## 432                            3                             Female
## 433                            0                             Female
## 434                            0                             Female
## 435                            0                               Male
## 436                            3                               Male
## 437                            0                             Female
## 438                            3                               Male
## 439                            3                               Male
## 440                            1                             Female
## 441                            0                               Male
## 442                            1                             Female
## 443                            1                               Male
## 444                            3                             Female
## 445                            3                               Male
## 446                            1                               Male
## 447                            0                               Male
## 448                            3                             Female
## 449                            3                               Male
## 450                            2                               Male
## 451                            3                             Female
## 452                            0                             Female
## 453                            3                             Female
## 454                            3                               Male
## 455                            1                             Female
## 456                            0                             Female
## 457                            2                               Male
## 458                            3                             Female
## 459                            1                             Female
## 460                            2                             Female
## 461                            3                               Male
## 462                            3                             Female
## 463                            0                               Male
## 464                            0                             Female
## 465                            3                             Female
## 466                            1                               Male
## 467                            1                             Female
## 468                            3                             Female
## 469                            1                             Female
## 470                            2                             Female
## 471                            3                               Male
## 472                            3                             Female
## 473                            2                             Female
## 474                            0                               Male
## 475                            3                             Female
## 476                            0                             Female
## 477                            1                             Female
## 478                            0                             Female
## 479                            0                             Female
## 480                            1                             Female
## 481                            3                               Male
## 482                            3                               Male
## 483                            3                             Female
## 484                            3                               Male
## 485                            1                             Female
## 486                            0                             Female
## 487                            1                             Female
## 488                            0                             Female
## 489                            0                             Female
## 490                            1                             Female
## 491                            3                               Male
## 492                            0                             Female
## 493                            0                               Male
## 494                            3                               Male
## 495                            1                             Female
## 496                            3                               Male
## 497                            2                             Female
## 498                            3                             Female
## 499                            1                               Male
## 500                            0                             Female
## 501                            3                             Female
## 502                            3                               Male
## 503                            3                             Female
## 504                            0                             Female
## 505                            3                               Male
## 506                            1                             Female
## 507                            1                             Female
## 508                            0                             Female
## 509                            3                             Female
## 510                            3                               Male
## 511                            1                             Female
## 512                            2                               Male
## 513                            3                             Female
## 514                            3                             Female
## 515                            1                             Female
## 516                            3                               Male
## 517                            0                             Female
## 518                            2                             Female
## 519                            3                               Male
## 520                            3                               Male
## 521                            3                               Male
## 522                            3                               Male
## 523                            0                             Female
## 524                            3                             Female
## 525                            2                             Female
## 526                            3                               Male
## 527                            3                               Male
## 528                            3                             Female
## 529                            0                             Female
## 530                            3                               Male
## 531                            1                               Male
## 532                            0                             Female
## 533                            3                             Female
## 534                            3                             Female
## 535                            3                             Female
## 536                            3                               Male
## 537                            1                             Female
## 538                            2                               Male
## 539                            1                             Female
## 540                            3                               Male
## 541                            3                             Female
## 542                            3                               Male
## 543                            3                             Female
## 544                            3                               Male
## 545                            3                             Female
## 546                            3                               Male
## 547                            2                               Male
## 548                            1                               Male
## 549                            3                             Female
## 550                            3                             Female
## 551                            1                               Male
## 552                            3                               Male
## 553                            1                             Female
## 554                            2                             Female
## 555                            3                             Female
## 556                            3                               Male
## 557                            3                             Female
## 558                            1                               Male
## 559                            3                               Male
## 560                            1                             Female
## 561                            3                               Male
## 562                            0                             Female
## 563                            3                             Female
## 564                            1                             Female
## 565                            3                             Female
## 566                            3                             Female
## 567                            2                             Female
## 568                            3                               Male
## 569                            0                             Female
## 570                            3                             Female
## 571                            1                             Female
## 572                            0                             Female
## 573                            0                             Female
## 574                            0                             Female
## 575                            0                             Female
## 576                            0                             Female
## 577                            3                               Male
## 578                            1                             Female
## 579                            3                               Male
## 580                            1                               Male
## 581                            1                               Male
## 582                            2                             Female
## 583                            0                             Female
## 584                            1                               Male
## 585                            0                             Female
## 586                            0                               Male
## 587                            0                               Male
## 588                            2                             Female
## 589                            3                             Female
## 590                            1                             Female
## 591                            1                               Male
## 592                            1                             Female
## 593                            3                             Female
## 594                            3                             Female
## 595                            0                             Female
## 596                            2                               Male
## 597                            3                               Male
## 598                            3                               Male
## 599                            1                             Female
## 600                            2                             Female
## 601                            1                             Female
## 602                            0                             Female
## 603                            1                               Male
## 604                            1                             Female
## 605                            1                             Female
## 606                            3                             Female
## 607                            3                             Female
## 608                            2                             Female
## 609                            3                             Female
## 610                            2                               Male
## 611                            3                             Female
## 612                            1                             Female
## 613                            0                               Male
## 614                            3                               Male
## 615                            1                             Female
## 616                            2                               Male
## 617                            3                               Male
## 618                            1                             Female
## 619                            1                             Female
## 620                            1                             Female
## 621                            1                               Male
## 622                            3                             Female
## 623                            3                               Male
## 624                            1                               Male
## 625                            3                             Female
## 626                            3                             Female
## 627                            3                             Female
## 628                            3                               Male
## 629                            2                               Male
## 630                            1                             Female
## 631                            3                               Male
## 632                            2                               Male
## 633                            0                             Female
## 634                            2                               Male
## 635                            1                             Female
## 636                            0                               Male
## 637                            2                             Female
## 638                            2                             Female
## 639                            1                             Female
## 640                            1                               Male
## 641                            3                               Male
## 642                            1                             Female
## 643                            3                               Male
## 644                            1                             Female
## 645                            1                             Female
## 646                            0                             Female
## 647                            2                             Female
## 648                            3                               Male
## 649                            3                             Female
## 650                            3                               Male
## 651                            0                             Female
## 652                            2                               Male
## 653                            2                               Male
## 654                            1                             Female
## 655                            0                             Female
## 656                            1                             Female
## 657                            3                             Female
## 658                            3                               Male
## 659                            1                             Female
## 660                            3                               Male
## 661                            3                             Female
## 662                            0                               Male
## 663                            3                               Male
## 664                            3                               Male
## 665                            3                             Female
## 666                            0                             Female
## 667                            3                               Male
## 668                            1                               Male
## 669                            2                               Male
## 670                            1                             Female
## 671                            3                               Male
## 672                            3                               Male
## 673                            3                             Female
## 674                            3                             Female
## 675                            1                             Female
## 676                            1                             Female
## 677                            0                             Female
## 678                            3                             Female
## 679                            3                               Male
## 680                            0                               Male
## 681                            3                             Female
## 682                            3                               Male
## 683                            2                               Male
## 684                            1                             Female
## 685                            3                             Female
## 686                            2                               Male
## 687                            3                               Male
## 688                            3                             Female
## 689                            1                             Female
## 690                            1                             Female
## 691                            0                             Female
## 692                            3                             Female
## 693                            0                             Female
## 694                            1                             Female
## 695                            0                               Male
## 696                            3                               Male
## 697                            0                             Female
## 698                            0                             Female
## 699                            3                             Female
## 700                            3                               Male
## 701                            3                               Male
## 702                            3                             Female
## 703                            3                             Female
## 704                            1                               Male
## 705                            1                             Female
## 706                            3                               Male
## 707                            3                             Female
## 708                            2                             Female
## 709                            0                               Male
## 710                            3                             Female
## 711                            0                             Female
## 712                            3                             Female
## 713                            1                             Female
## 714                            1                               Male
## 715                            3                               Male
## 716                            2                             Female
## 717                            3                             Female
## 718                            3                               Male
## 719                            0                             Female
## 720                            1                             Female
## 721                            3                               Male
## 722                            0                             Female
## 723                            0                             Female
## 724                            3                             Female
## 725                            3                             Female
## 726                            0                               Male
## 727                            1                               Male
## 728                            3                             Female
## 729                            1                             Female
## 730                            1                             Female
## 731                            3                               Male
## 732                            3                             Female
## 733                            3                               Male
## 734                            0                             Female
## 735                            1                               Male
## 736                            1                             Female
## 737                            3                             Female
## 738                            1                             Female
## 739                            1                             Female
## 740                            3                             Female
## 741                            2                               Male
## 742                            3                             Female
## 743                            0                               Male
## 744                            3                             Female
## 745                            0                             Female
## 746                            1                               Male
## 747                            3                             Female
## 748                            3                               Male
## 749                            0                             Female
## 750                            3                             Female
## 751                            3                               Male
## 752                            1                               Male
## 753                            3                             Female
## 754                            1                             Female
## 755                            0                             Female
## 756                            0                             Female
## 757                            1                             Female
## 758                            3                               Male
## 759                            1                             Female
## 760                            1                             Female
## 761                            1                             Female
## 762                            1                             Female
## 763                            3                             Female
## 764                            3                               Male
## 765                            3                               Male
## 766                            3                             Female
## 767                            2                               Male
## 768                            0                             Female
## 769                            3                             Female
## 770                            3                             Female
## 771                            3                               Male
## 772                            3                             Female
## 773                            0                               Male
## 774                            3                               Male
## 775                            1                               Male
## 776                            3                             Female
## 777                            2                               Male
## 778                            3                             Female
## 779                            3                               Male
## 780                            3                               Male
## 781                            1                             Female
## 782                            3                             Female
## 783                            0                             Female
## 784                            0                               Male
## 785                            0                             Female
## 786                            1                             Female
## 787                            1                               Male
## 788                            2                               Male
## 789                            1                             Female
## 790                            2                               Male
## 791                            1                             Female
## 792                            3                             Female
## 793                            1                               Male
## 794                            3                               Male
## 795                            1                             Female
## 796                            3                             Female
## 797                            3                             Female
## 798                            3                               Male
## 799                            2                             Female
## 800                            3                               Male
## 801                            1                               Male
## 802                            1                               Male
## 803                            2                               Male
## 804                            3                               Male
## 805                            3                               Male
## 806                            3                             Female
## 807                            2                             Female
## 808                            2                             Female
## 809                            3                               Male
## 810                            3                               Male
## 811                            3                             Female
## 812                            1                               Male
## 813                            3                             Female
## 814                            1                               Male
## 815                            0                               Male
## 816                            1                             Female
## 817                            1                               Male
## 818                            0                               Male
## 819                            0                             Female
## 820                            3                               Male
## 821                            2                             Female
## 822                            3                             Female
## 823                            3                               Male
## 824                            1                             Female
## 825                            1                             Female
## 826                            0                             Female
## 827                            2                             Female
## 828                            0                               Male
## 829                            1                               Male
## 830                            3                             Female
## 831                            2                             Female
## 832                            3                               Male
## 833                            0                             Female
## 834                            1                               Male
## 835                            1                             Female
## 836                            3                             Female
## 837                            0                               Male
## 838                            1                             Female
## 839                            2                               Male
## 840                            3                               Male
## 841                            2                             Female
## 842                            3                             Female
## 843                            3                               Male
## 844                            0                             Female
## 845                            0                             Female
## 846                            0                             Female
## 847                            3                               Male
## 848                            0                             Female
## 849                            2                             Female
## 850                            3                             Female
## 851                            1                             Female
## 852                            3                               Male
## 853                            0                             Female
## 854                            0                               Male
## 855                            2                               Male
## 856                            3                             Female
## 857                            0                             Female
## 858                            0                             Female
## 859                            1                               Male
## 860                            0                             Female
## 861                            1                             Female
## 862                            3                             Female
## 863                            1                               Male
## 864                            0                             Female
## 865                            3                               Male
## 866                            0                             Female
## 867                            3                               Male
## 868                            0                             Female
## 869                            1                               Male
## 870                            1                               Male
## 871                            1                             Female
## 872                            2                             Female
## 873                            3                             Female
## 874                            3                               Male
## 875                            3                               Male
## 876                            3                             Female
## 877                            3                               Male
## 878                            3                               Male
## 879                            3                               Male
## 880                            1                               Male
## 881                            3                               Male
## 882                            1                               Male
## 883                            2                               Male
## 884                            3                             Female
## 885                            3                               Male
## 886                            1                               Male
## 887                            1                             Female
## 888                            3                               Male
## 889                            3                             Female
## 890                            1                             Female
## 891                            3                               Male
## 892                            0                             Female
## 893                            3                               Male
## 894                            0                               Male
## 895                            3                               Male
## 896                            3                             Female
## 897                            1                             Female
## 898                            2                             Female
## 899                            3                             Female
## 900                            3                             Female
## 901                            3                               Male
## 902                            3                             Female
## 903                            1                             Female
## 904                            1                             Female
## 905                            0                               Male
## 906                            0                               Male
## 907                            3                             Female
## 908                            3                             Female
## 909                            3                               Male
## 910                            2                               Male
## 911                            0                               Male
## 912                            2                             Female
## 913                            3                             Female
## 914                            2                             Female
## 915                            0                               Male
## 916                            3                               Male
## 917                            3                               Male
## 918                            1                             Female
## 919                            3                             Female
## 920                            1                             Female
## 921                            1                             Female
## 922                            3                             Female
## 923                            3                               Male
## 924                            3                               Male
## 925                            1                             Female
## 926                            1                               Male
## 927                            0                               Male
## 928                            3                             Female
## 929                            1                             Female
## 930                            3                             Female
## 931                            1                             Female
## 932                            3                               Male
## 933                            3                               Male
## 934                            3                               Male
## 935                            3                               Male
## 936                            1                               Male
## 937                            3                               Male
## 938                            0                               Male
## 939                            1                               Male
## 940                            2                               Male
## 941                            0                               Male
## 942                            1                             Female
## 943                            3                               Male
## 944                            2                               Male
## 945                            1                               Male
## 946                            3                             Female
## 947                            3                             Female
## 948                            3                               Male
## 949                            1                               Male
## 950                            1                             Female
## 951                            0                             Female
## 952                            3                               Male
## 953                            0                               Male
## 954                            2                             Female
## 955                            3                             Female
## 956                            1                               Male
## 957                            3                               Male
## 958                            3                             Female
## 959                            2                             Female
## 960                            3                               Male
## 961                            0                             Female
## 962                            3                             Female
## 963                            3                             Female
## 964                            3                               Male
## 965                            0                             Female
## 966                            2                             Female
## 967                            1                             Female
## 968                            3                               Male
## 969                            3                               Male
## 970                            3                               Male
## 971                            3                             Female
## 972                            1                             Female
## 973                            1                             Female
## 974                            0                               Male
## 975                            2                             Female
## 976                            0                             Female
## 977                            1                               Male
## 978                            3                             Female
## 979                            1                             Female
## 980                            3                             Female
## 981                            1                             Female
## 982                            1                               Male
## 983                            1                               Male
## 984                            1                             Female
## 985                            1                             Female
## 986                            1                             Female
## 987                            1                             Female
## 988                            2                             Female
## 989                            1                             Female
## 990                            0                             Female
## 991                            3                             Female
## 992                            3                             Female
## 993                            1                               Male
## 994                            3                             Female
## 995                            2                             Female
## 996                            2                               Male
## 997                            3                             Female
## 998                            1                             Female
## 999                            1                             Female
## 1000                           0                               Male
## 1001                           3                             Female
## 1002                           0                             Female
## 1003                           0                             Female
## 1004                           0                               Male
## 1005                           0                               Male
## 1006                           0                             Female
## 1007                           3                             Female
## 1008                           1                             Female
## 1009                           3                               Male
## 1010                           0                             Female
## 1011                           3                               Male
## 1012                           3                             Female
## 1013                           2                               Male
## 1014                           1                             Female
## 1015                           2                               Male
## 1016                           3                             Female
## 1017                           3                               Male
## 1018                           1                             Female
## 1019                           0                             Female
## 1020                           1                               Male
## 1021                           0                             Female
## 1022                           3                               Male
## 1023                           1                               Male
## 1024                           0                             Female
## 1025                           0                               Male
## 1026                           3                             Female
## 1027                           1                             Female
## 1028                           3                               Male
## 1029                           1                               Male
## 1030                           3                               Male
## 1031                           0                             Female
## 1032                           3                             Female
## 1033                           0                             Female
## 1034                           0                             Female
## 1035                           0                               Male
## 1036                           1                               Male
## 1037                           0                             Female
## 1038                           0                               Male
## 1039                           3                             Female
## 1040                           3                               Male
## 1041                           1                             Female
## 1042                           0                             Female
## 1043                           0                             Female
## 1044                           1                             Female
## 1045                           0                               Male
## 1046                           1                             Female
## 1047                           1                             Female
## 1048                           3                               Male
## 1049                           3                               Male
## 1050                           0                               Male
## 1051                           3                             Female
## 1052                           3                               Male
## 1053                           0                             Female
## 1054                           2                               Male
## 1055                           1                             Female
## 1056                           1                               Male
## 1057                           3                               Male
## 1058                           0                             Female
## 1059                           2                               Male
## 1060                           2                             Female
## 1061                           3                             Female
## 1062                           3                             Female
## 1063                           3                             Female
## 1064                           0                               Male
## 1065                           3                             Female
## 1066                           2                             Female
## 1067                           0                               Male
## 1068                           3                             Female
## 1069                           1                             Female
## 1070                           3                               Male
## 1071                           3                             Female
## 1072                           0                             Female
## 1073                           3                               Male
## 1074                           2                               Male
## 1075                           3                             Female
## 1076                           3                             Female
## 1077                           3                               Male
## 1078                           1                               Male
## 1079                           3                               Male
## 1080                           3                             Female
## 1081                           1                             Female
## 1082                           2                             Female
## 1083                           1                               Male
## 1084                           0                               Male
## 1085                           0                             Female
## 1086                           3                             Female
## 1087                           3                             Female
## 1088                           2                               Male
## 1089                           3                             Female
## 1090                           3                               Male
## 1091                           3                               Male
## 1092                           2                             Female
## 1093                           1                               Male
## 1094                           1                             Female
## 1095                           3                               Male
## 1096                           3                               Male
## 1097                           2                               Male
## 1098                           0                             Female
## 1099                           1                             Female
## 1100                           1                             Female
## 1101                           1                             Female
## 1102                           1                               Male
## 1103                           0                               Male
## 1104                           3                               Male
## 1105                           3                               Male
## 1106                           1                             Female
## 1107                           0                             Female
## 1108                           1                               Male
## 1109                           3                               Male
## 1110                           1                               Male
## 1111                           3                               Male
## 1112                           0                             Female
## 1113                           1                             Female
## 1114                           3                               Male
## 1115                           2                               Male
## 1116                           0                             Female
## 1117                           1                             Female
## 1118                           3                             Female
## 1119                           1                             Female
## 1120                           1                               Male
## 1121                           0                               Male
## 1122                           3                               Male
## 1123                           3                             Female
## 1124                           1                               Male
## 1125                           3                             Female
## 1126                           1                               Male
## 1127                           3                             Female
## 1128                           0                               Male
## 1129                           1                               Male
## 1130                           3                             Female
## 1131                           1                             Female
## 1132                           1                             Female
## 1133                           0                             Female
## 1134                           0                               Male
## 1135                           3                               Male
## 1136                           3                             Female
## 1137                           0                               Male
## 1138                           2                               Male
## 1139                           3                               Male
## 1140                           3                               Male
## 1141                           2                               Male
## 1142                           3                               Male
## 1143                           1                             Female
## 1144                           1                               Male
## 1145                           3                               Male
## 1146                           3                               Male
## 1147                           3                               Male
## 1148                           3                             Female
## 1149                           1                             Female
## 1150                           0                             Female
## 1151                           3                             Female
## 1152                           3                             Female
## 1153                           3                             Female
## 1154                           0                               Male
## 1155                           1                               Male
## 1156                           3                             Female
## 1157                           0                               Male
## 1158                           1                             Female
## 1159                           3                               Male
## 1160                           1                             Female
## 1161                           3                             Female
## 1162                           1                               Male
## 1163                           2                               Male
## 1164                           3                             Female
## 1165                           1                             Female
## 1166                           0                             Female
## 1167                           0                               Male
## 1168                           3                             Female
## 1169                           0                               Male
## 1170                           3                               Male
## 1171                           0                             Female
## 1172                           2                             Female
## 1173                           3                               Male
## 1174                           2                             Female
## 1175                           1                             Female
## 1176                           1                               Male
## 1177                           1                             Female
## 1178                           1                             Female
## 1179                           0                             Female
## 1180                           3                               Male
## 1181                           0                             Female
## 1182                           2                             Female
## 1183                           0                             Female
## 1184                           0                             Female
## 1185                           1                             Female
## 1186                           3                             Female
## 1187                           2                             Female
## 1188                           1                             Female
## 1189                           1                             Female
## 1190                           1                               Male
## 1191                           2                               Male
## 1192                           3                               Male
## 1193                           3                             Female
## 1194                           3                             Female
## 1195                           2                             Female
## 1196                           1                             Female
## 1197                           3                             Female
## 1198                           1                               Male
## 1199                           0                             Female
## 1200                           1                               Male
## 1201                           0                             Female
## 1202                           0                             Female
## 1203                           3                               Male
## 1204                           0                             Female
## 1205                           3                               Male
## 1206                           1                             Female
## 1207                           3                               Male
## 1208                           1                             Female
## 1209                           3                             Female
## 1210                           3                               Male
## 1211                           3                             Female
## 1212                           2                             Female
## 1213                           3                             Female
## 1214                           1                             Female
## 1215                           3                             Female
## 1216                           3                               Male
## 1217                           1                             Female
## 1218                           2                               Male
## 1219                           3                             Female
## 1220                           2                             Female
## 1221                           1                             Female
## 1222                           0                               Male
## 1223                           1                               Male
## 1224                           1                               Male
## 1225                           2                             Female
## 1226                           1                             Female
## 1227                           1                             Female
## 1228                           2                               Male
## 1229                           0                               Male
## 1230                           1                             Female
## 1231                           3                               Male
## 1232                           1                             Female
## 1233                           0                             Female
## 1234                           1                               Male
## 1235                           2                             Female
## 1236                           3                             Female
## 1237                           1                             Female
## 1238                           0                               Male
## 1239                           3                             Female
## 1240                           3                               Male
## 1241                           2                               Male
## 1242                           0                             Female
## 1243                           2                             Female
## 1244                           1                               Male
## 1245                           3                             Female
## 1246                           0                               Male
## 1247                           3                             Female
## 1248                           3                               Male
## 1249                           1                             Female
## 1250                           0                             Female
## 1251                           2                               Male
## 1252                           1                             Female
## 1253                           3                             Female
## 1254                           0                               Male
## 1255                           3                               Male
## 1256                           3                               Male
## 1257                           2                             Female
## 1258                           3                               Male
## 1259                           3                               Male
## 1260                           1                             Female
## 1261                           3                               Male
## 1262                           3                               Male
## 1263                           3                             Female
## 1264                           0                               Male
## 1265                           1                               Male
## 1266                           1                               Male
## 1267                           3                             Female
## 1268                           3                               Male
## 1269                           1                               Male
## 1270                           1                             Female
## 1271                           0                             Female
## 1272                           3                               Male
## 1273                           3                               Male
## 1274                           1                             Female
## 1275                           1                               Male
## 1276                           1                             Female
## 1277                           1                             Female
## 1278                           1                               Male
## 1279                           3                             Female
## 1280                           3                             Female
## 1281                           0                             Female
## 1282                           3                               Male
## 1283                           3                             Female
## 1284                           3                               Male
## 1285                           3                             Female
## 1286                           1                             Female
## 1287                           3                             Female
## 1288                           0                             Female
## 1289                           3                               Male
## 1290                           3                               Male
## 1291                           0                             Female
## 1292                           0                               Male
## 1293                           3                               Male
## 1294                           3                               Male
## 1295                           1                               Male
## 1296                           3                               Male
## 1297                           3                             Female
## 1298                           3                             Female
## 1299                           3                             Female
## 1300                           2                               Male
## 1301                           0                             Female
## 1302                           3                             Female
## 1303                           0                               Male
## 1304                           1                             Female
## 1305                           3                               Male
## 1306                           3                               Male
## 1307                           1                               Male
## 1308                           1                             Female
## 1309                           0                               Male
## 1310                           1                             Female
## 1311                           3                             Female
## 1312                           1                               Male
## 1313                           0                             Female
## 1314                           3                               Male
## 1315                           2                             Female
## 1316                           0                             Female
## 1317                           0                             Female
## 1318                           2                               Male
## 1319                           0                             Female
## 1320                           1                               Male
## 1321                           1                             Female
## 1322                           0                               Male
## 1323                           0                             Female
## 1324                           0                             Female
## 1325                           3                               Male
## 1326                           3                             Female
## 1327                           3                               Male
## 1328                           1                               Male
## 1329                           3                             Female
## 1330                           1                             Female
## 1331                           1                               Male
## 1332                           0                               Male
## 1333                           0                             Female
## 1334                           1                               Male
## 1335                           3                               Male
## 1336                           1                             Female
## 1337                           3                             Female
## 1338                           2                               Male
## 1339                           3                             Female
## 1340                           3                               Male
## 1341                           3                               Male
## 1342                           3                             Female
## 1343                           1                             Female
## 1344                           0                               Male
## 1345                           3                               Male
## 1346                           2                             Female
## 1347                           2                             Female
## 1348                           0                               Male
## 1349                           2                             Female
## 1350                           3                             Female
## 1351                           0                             Female
## 1352                           1                             Female
## 1353                           2                               Male
## 1354                           2                             Female
## 1355                           1                             Female
## 1356                           0                               Male
## 1357                           0                               Male
## 1358                           0                             Female
## 1359                           3                             Female
## 1360                           0                             Female
## 1361                           0                             Female
## 1362                           3                             Female
## 1363                           3                             Female
## 1364                           2                               Male
## 1365                           0                               Male
## 1366                           3                             Female
## 1367                           2                               Male
## 1368                           3                               Male
## 1369                           3                             Female
## 1370                           3                             Female
## 1371                           2                             Female
## 1372                           3                               Male
## 1373                           1                               Male
## 1374                           0                             Female
## 1375                           1                             Female
## 1376                           0                             Female
## 1377                           1                               Male
## 1378                           3                               Male
## 1379                           1                             Female
## 1380                           1                             Female
## 1381                           3                             Female
## 1382                           3                               Male
## 1383                           2                               Male
## 1384                           1                             Female
## 1385                           3                               Male
## 1386                           3                             Female
## 1387                           3                             Female
## 1388                           3                             Female
## 1389                           2                             Female
## 1390                           3                               Male
## 1391                           3                               Male
## 1392                           3                               Male
## 1393                           3                               Male
## 1394                           1                             Female
## 1395                           2                             Female
## 1396                           0                               Male
## 1397                           3                               Male
## 1398                           3                               Male
## 1399                           3                               Male
## 1400                           2                             Female
## 1401                           3                               Male
## 1402                           3                               Male
## 1403                           1                             Female
## 1404                           3                               Male
## 1405                           0                             Female
## 1406                           3                               Male
## 1407                           1                               Male
## 1408                           1                             Female
## 1409                           0                               Male
## 1410                           3                               Male
## 1411                           3                               Male
## 1412                           0                             Female
## 1413                           1                             Female
## 1414                           1                               Male
## 1415                           2                               Male
## 1416                           0                               Male
## 1417                           1                             Female
## 1418                           1                             Female
## 1419                           0                             Female
## 1420                           3                               Male
## 1421                           1                               Male
## 1422                           1                             Female
## 1423                           1                               Male
## 1424                           3                               Male
## 1425                           3                             Female
## 1426                           3                             Female
## 1427                           0                             Female
## 1428                           1                             Female
## 1429                           3                             Female
## 1430                           1                             Female
## 1431                           0                             Female
## 1432                           1                             Female
## 1433                           1                               Male
## 1434                           0                             Female
## 1435                           3                             Female
## 1436                           0                               Male
## 1437                           1                               Male
## 1438                           2                               Male
## 1439                           3                             Female
## 1440                           0                               Male
## 1441                           0                             Female
## 1442                           3                               Male
## 1443                           3                             Female
## 1444                           3                             Female
## 1445                           0                               Male
## 1446                           0                             Female
## 1447                           3                               Male
## 1448                           3                               Male
## 1449                           3                               Male
## 1450                           1                             Female
## 1451                           1                             Female
## 1452                           3                               Male
## 1453                           3                             Female
## 1454                           3                               Male
## 1455                           1                             Female
## 1456                           0                               Male
## 1457                           2                             Female
## 1458                           3                               Male
## 1459                           0                             Female
## 1460                           2                             Female
## 1461                           0                             Female
## 1462                           0                             Female
## 1463                           3                               Male
## 1464                           3                               Male
## 1465                           3                               Male
## 1466                           1                               Male
## 1467                           1                             Female
## 1468                           2                               Male
## 1469                           3                               Male
## 1470                           3                             Female
## 1471                           1                               Male
## 1472                           1                               Male
## 1473                           3                               Male
## 1474                           3                               Male
## 1475                           0                             Female
## 1476                           3                             Female
## 1477                           1                             Female
## 1478                           0                               Male
## 1479                           3                               Male
## 1480                           0                               Male
## 1481                           0                               Male
## 1482                           3                               Male
## 1483                           0                               Male
## 1484                           0                             Female
## 1485                           3                               Male
## 1486                           1                             Female
## 1487                           2                             Female
## 1488                           3                             Female
## 1489                           3                             Female
## 1490                           0                             Female
## 1491                           1                             Female
## 1492                           3                             Female
## 1493                           3                               Male
## 1494                           3                               Male
## 1495                           3                             Female
## 1496                           0                               Male
## 1497                           3                             Female
## 1498                           3                             Female
## 1499                           0                               Male
## 1500                           3                               Male
## 1501                           0                             Female
## 1502                           1                             Female
## 1503                           3                             Female
## 1504                           0                               Male
## 1505                           3                             Female
## 1506                           0                               Male
## 1507                           3                               Male
## 1508                           0                             Female
## 1509                           2                               Male
## 1510                           1                               Male
## 1511                           1                             Female
## 1512                           1                             Female
## 1513                           3                               Male
## 1514                           3                             Female
## 1515                           1                               Male
## 1516                           3                             Female
## 1517                           3                               Male
## 1518                           3                             Female
## 1519                           3                             Female
## 1520                           1                               Male
## 1521                           3                               Male
## 1522                           3                             Female
## 1523                           3                               Male
## 1524                           2                               Male
## 1525                           1                               Male
## 1526                           3                               Male
## 1527                           1                               Male
## 1528                           3                               Male
## 1529                           3                               Male
## 1530                           2                             Female
## 1531                           3                             Female
## 1532                           3                             Female
## 1533                           1                             Female
## 1534                           3                               Male
## 1535                           2                               Male
## 1536                           1                               Male
## 1537                           3                               Male
## 1538                           3                             Female
## 1539                           3                               Male
## 1540                           2                               Male
## 1541                           1                             Female
## 1542                           3                             Female
## 1543                           0                               Male
## 1544                           1                             Female
## 1545                           0                               Male
## 1546                           1                               Male
## 1547                           1                             Female
## 1548                           3                               Male
## 1549                           2                             Female
## 1550                           0                             Female
## 1551                           1                               Male
## 1552                           3                               Male
## 1553                           3                               Male
## 1554                           3                             Female
## 1555                           2                               Male
## 1556                           1                             Female
## 1557                           3                             Female
## 1558                           1                             Female
## 1559                           3                               Male
## 1560                           0                             Female
## 1561                           3                             Female
## 1562                           0                               Male
## 1563                           1                             Female
## 1564                           3                             Female
## 1565                           1                             Female
## 1566                           1                             Female
## 1567                           3                             Female
## 1568                           1                             Female
## 1569                           1                               Male
## 1570                           1                               Male
## 1571                           0                             Female
## 1572                           0                             Female
## 1573                           3                               Male
## 1574                           0                             Female
## 1575                           1                             Female
## 1576                           1                               Male
## 1577                           1                               Male
## 1578                           1                               Male
## 1579                           3                               Male
## 1580                           1                             Female
## 1581                           1                               Male
## 1582                           3                               Male
## 1583                           2                             Female
## 1584                           3                               Male
## 1585                           1                               Male
## 1586                           3                               Male
## 1587                           1                             Female
## 1588                           3                               Male
## 1589                           3                               Male
## 1590                           3                               Male
## 1591                           2                               Male
## 1592                           2                               Male
## 1593                           3                             Female
## 1594                           1                             Female
## 1595                           3                               Male
## 1596                           0                             Female
## 1597                           3                             Female
## 1598                           2                               Male
## 1599                           1                             Female
## 1600                           3                               Male
## 1601                           2                             Female
## 1602                           3                               Male
## 1603                           1                             Female
## 1604                           0                               Male
## 1605                           0                             Female
## 1606                           3                             Female
## 1607                           3                               Male
## 1608                           3                             Female
## 1609                           1                             Female
## 1610                           3                             Female
## 1611                           3                             Female
## 1612                           3                             Female
## 1613                           3                             Female
## 1614                           1                               Male
## 1615                           3                             Female
## 1616                           1                             Female
## 1617                           0                             Female
## 1618                           1                             Female
## 1619                           1                             Female
## 1620                           1                               Male
## 1621                           3                               Male
## 1622                           3                             Female
## 1623                           3                               Male
## 1624                           0                             Female
## 1625                           1                               Male
## 1626                           0                             Female
## 1627                           1                             Female
## 1628                           3                               Male
## 1629                           3                             Female
## 1630                           0                             Female
## 1631                           3                               Male
## 1632                           3                             Female
## 1633                           3                             Female
## 1634                           1                             Female
## 1635                           3                               Male
## 1636                           3                               Male
## 1637                           0                             Female
## 1638                           1                               Male
## 1639                           3                             Female
## 1640                           2                               Male
## 1641                           0                             Female
## 1642                           3                             Female
## 1643                           3                               Male
## 1644                           3                             Female
## 1645                           0                             Female
## 1646                           0                             Female
## 1647                           3                             Female
## 1648                           1                             Female
## 1649                           3                             Female
## 1650                           3                               Male
## 1651                           1                               Male
## 1652                           3                             Female
## 1653                           0                             Female
## 1654                           3                               Male
## 1655                           3                             Female
## 1656                           3                               Male
## 1657                           3                               Male
## 1658                           3                             Female
## 1659                           0                               Male
## 1660                           0                               Male
## 1661                           1                             Female
## 1662                           2                             Female
## 1663                           2                               Male
## 1664                           1                             Female
## 1665                           3                               Male
## 1666                           3                             Female
## 1667                           3                               Male
## 1668                           1                               Male
## 1669                           3                             Female
## 1670                           3                               Male
## 1671                           2                               Male
## 1672                           3                             Female
## 1673                           3                             Female
## 1674                           2                               Male
## 1675                           3                               Male
## 1676                           1                               Male
## 1677                           3                             Female
## 1678                           3                               Male
## 1679                           3                               Male
## 1680                           2                               Male
## 1681                           3                               Male
## 1682                           3                             Female
## 1683                           0                             Female
## 1684                           3                               Male
## 1685                           0                               Male
## 1686                           1                             Female
## 1687                           2                             Female
## 1688                           3                               Male
## 1689                           1                               Male
## 1690                           3                               Male
## 1691                           2                             Female
## 1692                           1                             Female
## 1693                           2                             Female
## 1694                           3                             Female
## 1695                           0                             Female
## 1696                           2                             Female
## 1697                           0                             Female
## 1698                           1                             Female
## 1699                           3                               Male
## 1700                           0                             Female
## 1701                           3                             Female
## 1702                           1                               Male
## 1703                           0                             Female
## 1704                           3                               Male
## 1705                           3                             Female
## 1706                           0                             Female
## 1707                           3                               Male
## 1708                           1                             Female
## 1709                           1                               Male
## 1710                           1                               Male
## 1711                           3                             Female
## 1712                           1                             Female
## 1713                           0                               Male
## 1714                           0                             Female
## 1715                           0                             Female
## 1716                           3                               Male
## 1717                           2                             Female
## 1718                           3                             Female
## 1719                           1                               Male
## 1720                           3                             Female
## 1721                           2                             Female
## 1722                           3                               Male
## 1723                           3                             Female
## 1724                           3                             Female
## 1725                           2                               Male
## 1726                           3                               Male
## 1727                           3                               Male
## 1728                           1                             Female
## 1729                           0                             Female
## 1730                           1                               Male
## 1731                           3                             Female
## 1732                           2                             Female
## 1733                           2                             Female
## 1734                           3                             Female
## 1735                           2                             Female
## 1736                           2                               Male
## 1737                           3                             Female
## 1738                           0                             Female
## 1739                           0                               Male
## 1740                           3                               Male
## 1741                           3                             Female
## 1742                           1                               Male
## 1743                           3                             Female
## 1744                           3                             Female
## 1745                           3                               Male
## 1746                           0                             Female
## 1747                           3                               Male
## 1748                           0                             Female
## 1749                           2                             Female
## 1750                           1                             Female
## 1751                           0                             Female
## 1752                           0                             Female
## 1753                           0                               Male
## 1754                           3                             Female
## 1755                           3                               Male
## 1756                           3                             Female
## 1757                           3                               Male
## 1758                           1                             Female
## 1759                           1                             Female
## 1760                           2                               Male
## 1761                           1                             Female
## 1762                           1                             Female
## 1763                           3                             Female
## 1764                           0                             Female
## 1765                           1                               Male
## 1766                           3                             Female
## 1767                           2                               Male
## 1768                           3                             Female
## 1769                           0                               Male
## 1770                           3                               Male
## 1771                           3                             Female
## 1772                           3                               Male
## 1773                           3                             Female
## 1774                           0                             Female
## 1775                           0                             Female
## 1776                           3                               Male
## 1777                           1                             Female
## 1778                           3                             Female
## 1779                           0                               Male
## 1780                           1                               Male
## 1781                           0                             Female
## 1782                           1                             Female
## 1783                           0                               Male
## 1784                           3                             Female
## 1785                           3                             Female
## 1786                           0                             Female
## 1787                           1                             Female
## 1788                           3                             Female
## 1789                           0                             Female
## 1790                           2                             Female
## 1791                           3                               Male
## 1792                           3                             Female
## 1793                           2                             Female
## 1794                           0                             Female
## 1795                           2                             Female
## 1796                           3                               Male
## 1797                           1                               Male
## 1798                           1                             Female
## 1799                           3                               Male
## 1800                           1                             Female
## 1801                           0                             Female
## 1802                           2                               Male
## 1803                           1                             Female
## 1804                           1                               Male
## 1805                           3                               Male
## 1806                           3                               Male
## 1807                           3                             Female
## 1808                           1                               Male
## 1809                           0                             Female
## 1810                           3                             Female
## 1811                           2                               Male
## 1812                           3                             Female
## 1813                           2                               Male
## 1814                           0                             Female
## 1815                           1                             Female
## 1816                           1                               Male
## 1817                           1                             Female
## 1818                           2                             Female
## 1819                           3                               Male
## 1820                           3                             Female
## 1821                           3                               Male
## 1822                           1                             Female
## 1823                           1                               Male
## 1824                           1                               Male
## 1825                           1                             Female
## 1826                           2                             Female
## 1827                           3                               Male
## 1828                           3                             Female
## 1829                           3                               Male
## 1830                           3                               Male
## 1831                           0                             Female
## 1832                           1                             Female
## 1833                           2                             Female
## 1834                           0                             Female
## 1835                           3                               Male
## 1836                           3                               Male
## 1837                           3                               Male
## 1838                           0                             Female
## 1839                           0                             Female
## 1840                           1                               Male
## 1841                           3                               Male
## 1842                           1                               Male
## 1843                           2                             Female
## 1844                           3                               Male
## 1845                           1                             Female
## 1846                           3                             Female
## 1847                           2                             Female
## 1848                           3                               Male
## 1849                           3                               Male
## 1850                           3                             Female
## 1851                           0                             Female
## 1852                           3                               Male
## 1853                           1                               Male
## 1854                           3                               Male
## 1855                           2                             Female
## 1856                           1                             Female
## 1857                           3                               Male
## 1858                           3                               Male
## 1859                           3                             Female
## 1860                           1                             Female
## 1861                           2                             Female
## 1862                           0                             Female
## 1863                           2                             Female
## 1864                           3                               Male
## 1865                           3                             Female
## 1866                           3                               Male
## 1867                           3                             Female
## 1868                           1                             Female
## 1869                           1                             Female
## 1870                           3                               Male
## 1871                           3                               Male
## 1872                           1                             Female
## 1873                           1                               Male
## 1874                           1                             Female
## 1875                           3                             Female
## 1876                           3                               Male
## 1877                           3                               Male
## 1878                           3                             Female
## 1879                           2                             Female
## 1880                           0                               Male
## 1881                           1                               Male
## 1882                           2                             Female
## 1883                           3                             Female
## 1884                           1                             Female
## 1885                           3                               Male
## 1886                           3                             Female
## 1887                           3                               Male
## 1888                           3                             Female
## 1889                           2                             Female
## 1890                           0                             Female
## 1891                           0                             Female
## 1892                           3                               Male
## 1893                           3                             Female
## 1894                           0                               Male
## 1895                           3                               Male
## 1896                           3                               Male
## 1897                           3                               Male
## 1898                           2                               Male
## 1899                           0                             Female
## 1900                           2                             Female
## 1901                           1                             Female
## 1902                           3                             Female
## 1903                           3                             Female
## 1904                           1                             Female
## 1905                           3                               Male
## 1906                           3                             Female
## 1907                           2                             Female
## 1908                           3                             Female
## 1909                           1                             Female
## 1910                           3                             Female
## 1911                           2                             Female
## 1912                           3                               Male
## 1913                           0                               Male
## 1914                           3                               Male
## 1915                           2                             Female
## 1916                           3                             Female
## 1917                           1                             Female
## 1918                           3                             Female
## 1919                           3                               Male
## 1920                           3                             Female
## 1921                           3                               Male
## 1922                           3                               Male
## 1923                           0                             Female
## 1924                           0                             Female
## 1925                           2                             Female
## 1926                           0                             Female
## 1927                           1                               Male
## 1928                           1                               Male
## 1929                           0                             Female
## 1930                           0                               Male
## 1931                           1                               Male
## 1932                           3                               Male
## 1933                           3                               Male
## 1934                           1                             Female
## 1935                           2                               Male
## 1936                           3                             Female
## 1937                           3                             Female
## 1938                           1                             Female
## 1939                           2                               Male
## 1940                           1                               Male
## 1941                           1                             Female
## 1942                           1                               Male
## 1943                           0                             Female
## 1944                           1                             Female
## 1945                           3                               Male
## 1946                           3                               Male
## 1947                           3                             Female
## 1948                           0                               Male
## 1949                           3                             Female
## 1950                           0                             Female
## 1951                           1                               Male
## 1952                           3                               Male
## 1953                           0                             Female
## 1954                           3                             Female
## 1955                           0                             Female
## 1956                           3                             Female
## 1957                           3                             Female
## 1958                           2                             Female
## 1959                           0                             Female
## 1960                           3                             Female
## 1961                           1                             Female
## 1962                           3                             Female
## 1963                           3                               Male
## 1964                           3                             Female
## 1965                           0                             Female
## 1966                           1                               Male
## 1967                           3                             Female
## 1968                           3                             Female
## 1969                           3                               Male
## 1970                           0                               Male
## 1971                           3                             Female
## 1972                           2                               Male
## 1973                           3                             Female
## 1974                           1                             Female
## 1975                           1                             Female
## 1976                           2                             Female
## 1977                           2                               Male
## 1978                           0                               Male
## 1979                           2                               Male
## 1980                           0                             Female
## 1981                           3                               Male
## 1982                           1                               Male
## 1983                           1                               Male
## 1984                           0                               Male
## 1985                           0                             Female
## 1986                           1                             Female
## 1987                           3                               Male
## 1988                           1                               Male
## 1989                           0                               Male
## 1990                           2                               Male
## 1991                           2                             Female
## 1992                           2                             Female
## 1993                           0                               Male
## 1994                           3                               Male
## 1995                           3                               Male
## 1996                           3                               Male
## 1997                           1                             Female
## 1998                           2                             Female
## 1999                           1                               Male
## 2000                           2                             Female
## 2001                           1                               Male
## 2002                           3                             Female
## 2003                           1                               Male
## 2004                           3                             Female
## 2005                           1                               Male
## 2006                           3                             Female
## 2007                           3                             Female
## 2008                           3                               Male
## 2009                           0                             Female
## 2010                           3                               Male
## 2011                           3                             Female
## 2012                           2                             Female
## 2013                           3                             Female
## 2014                           1                             Female
## 2015                           1                               Male
## 2016                           3                             Female
## 2017                           2                               Male
## 2018                           3                               Male
## 2019                           3                             Female
## 2020                           1                               Male
## 2021                           0                               Male
## 2022                           3                             Female
## 2023                           3                             Female
## 2024                           3                               Male
## 2025                           1                             Female
## 2026                           1                             Female
## 2027                           1                               Male
## 2028                           0                             Female
## 2029                           0                               Male
## 2030                           3                             Female
## 2031                           3                               Male
## 2032                           1                             Female
## 2033                           3                             Female
## 2034                           1                               Male
## 2035                           0                             Female
## 2036                           3                               Male
## 2037                           2                             Female
## 2038                           3                               Male
## 2039                           3                               Male
## 2040                           3                             Female
## 2041                           0                             Female
## 2042                           3                             Female
## 2043                           0                               Male
## 2044                           0                             Female
## 2045                           2                             Female
## 2046                           3                               Male
## 2047                           0                             Female
## 2048                           3                             Female
## 2049                           2                             Female
## 2050                           3                             Female
## 2051                           3                               Male
## 2052                           2                               Male
## 2053                           1                             Female
## 2054                           2                               Male
## 2055                           3                               Male
## 2056                           3                             Female
## 2057                           2                             Female
## 2058                           3                             Female
## 2059                           1                             Female
## 2060                           3                               Male
## 2061                           1                               Male
## 2062                           0                               Male
## 2063                           3                               Male
## 2064                           3                               Male
## 2065                           3                             Female
## 2066                           3                             Female
## 2067                           0                             Female
## 2068                           1                               Male
## 2069                           3                             Female
## 2070                           0                             Female
## 2071                           3                             Female
## 2072                           3                               Male
## 2073                           2                               Male
## 2074                           3                             Female
## 2075                           3                               Male
## 2076                           0                               Male
## 2077                           3                             Female
## 2078                           3                               Male
## 2079                           3                               Male
## 2080                           3                             Female
## 2081                           1                             Female
## 2082                           0                             Female
## 2083                           0                               Male
## 2084                           0                             Female
## 2085                           1                               Male
## 2086                           0                               Male
## 2087                           1                             Female
## 2088                           0                             Female
## 2089                           2                             Female
## 2090                           1                             Female
## 2091                           3                             Female
## 2092                           3                               Male
## 2093                           3                               Male
## 2094                           3                               Male
## 2095                           1                             Female
## 2096                           0                               Male
## 2097                           3                               Male
## 2098                           3                               Male
## 2099                           1                               Male
## 2100                           1                             Female
## 2101                           3                               Male
## 2102                           3                               Male
## 2103                           3                               Male
## 2104                           3                               Male
## 2105                           3                               Male
## 2106                           3                               Male
## 2107                           3                             Female
## 2108                           1                               Male
## 2109                           3                               Male
## 2110                           3                             Female
## 2111                           1                               Male
## 2112                           3                               Male
## 2113                           1                             Female
## 2114                           0                             Female
## 2115                           3                               Male
## 2116                           0                               Male
## 2117                           2                               Male
## 2118                           0                             Female
## 2119                           3                             Female
## 2120                           3                               Male
## 2121                           1                               Male
## 2122                           3                             Female
## 2123                           2                             Female
## 2124                           0                             Female
## 2125                           3                             Female
## 2126                           1                             Female
## 2127                           1                               Male
## 2128                           1                             Female
## 2129                           3                             Female
## 2130                           1                             Female
## 2131                           3                             Female
## 2132                           1                             Female
## 2133                           1                             Female
## 2134                           1                             Female
## 2135                           1                               Male
## 2136                           1                               Male
## 2137                           1                             Female
## 2138                           3                             Female
## 2139                           3                               Male
## 2140                           3                               Male
## 2141                           3                             Female
## 2142                           3                             Female
## 2143                           3                               Male
## 2144                           3                             Female
## 2145                           3                             Female
## 2146                           3                               Male
## 2147                           3                               Male
## 2148                           3                               Male
## 2149                           2                               Male
## 2150                           2                             Female
## 2151                           3                               Male
## 2152                           3                             Female
## 2153                           3                             Female
## 2154                           1                             Female
## 2155                           3                             Female
## 2156                           3                             Female
## 2157                           0                             Female
## 2158                           3                               Male
## 2159                           1                             Female
## 2160                           1                               Male
## 2161                           2                               Male
## 2162                           2                               Male
## 2163                           2                               Male
## 2164                           3                             Female
## 2165                           1                             Female
## 2166                           0                               Male
## 2167                           3                             Female
## 2168                           3                             Female
## 2169                           1                               Male
## 2170                           0                             Female
## 2171                           3                             Female
## 2172                           2                               Male
## 2173                           3                               Male
## 2174                           1                             Female
## 2175                           0                               Male
## 2176                           3                               Male
## 2177                           3                               Male
## 2178                           1                             Female
## 2179                           0                               Male
## 2180                           3                               Male
## 2181                           0                             Female
## 2182                           2                             Female
## 2183                           3                               Male
## 2184                           3                             Female
## 2185                           0                               Male
## 2186                           3                             Female
## 2187                           3                               Male
## 2188                           3                               Male
## 2189                           3                             Female
## 2190                           0                               Male
## 2191                           3                               Male
## 2192                           3                             Female
## 2193                           1                               Male
## 2194                           0                             Female
## 2195                           1                               Male
## 2196                           1                             Female
## 2197                           3                               Male
## 2198                           3                             Female
## 2199                           1                               Male
## 2200                           3                               Male
## 2201                           0                             Female
## 2202                           3                             Female
## 2203                           1                             Female
## 2204                           0                               Male
## 2205                           3                             Female
## 2206                           0                             Female
## 2207                           1                             Female
## 2208                           1                             Female
## 2209                           1                               Male
## 2210                           1                             Female
## 2211                           3                               Male
## 2212                           1                             Female
## 2213                           3                               Male
## 2214                           0                             Female
## 2215                           1                               Male
## 2216                           1                               Male
## 2217                           3                             Female
## 2218                           1                               Male
## 2219                           1                               Male
## 2220                           2                               Male
## 2221                           3                               Male
## 2222                           0                             Female
## 2223                           3                               Male
## 2224                           3                             Female
## 2225                           2                             Female
## 2226                           3                               Male
## 2227                           0                               Male
## 2228                           2                             Female
## 2229                           3                               Male
## 2230                           1                               Male
## 2231                           1                               Male
## 2232                           0                               Male
## 2233                           3                             Female
## 2234                           3                               Male
## 2235                           3                             Female
## 2236                           3                               Male
## 2237                           0                             Female
## 2238                           1                             Female
## 2239                           1                               Male
## 2240                           3                               Male
## 2241                           2                             Female
## 2242                           0                             Female
## 2243                           1                               Male
## 2244                           1                             Female
## 2245                           2                             Female
## 2246                           3                             Female
## 2247                           1                             Female
## 2248                           0                               Male
## 2249                           1                             Female
## 2250                           3                             Female
## 2251                           1                             Female
## 2252                           3                               Male
## 2253                           0                             Female
## 2254                           1                             Female
## 2255                           2                               Male
## 2256                           0                             Female
## 2257                           3                               Male
## 2258                           3                             Female
## 2259                           0                             Female
## 2260                           3                             Female
## 2261                           1                               Male
## 2262                           1                               Male
## 2263                           3                               Male
## 2264                           3                             Female
## 2265                           3                             Female
## 2266                           1                             Female
## 2267                           3                               Male
## 2268                           0                             Female
## 2269                           0                             Female
## 2270                           1                               Male
## 2271                           1                             Female
## 2272                           3                             Female
## 2273                           3                             Female
## 2274                           2                               Male
## 2275                           3                             Female
## 2276                           0                               Male
## 2277                           1                             Female
## 2278                           3                             Female
## 2279                           0                             Female
## 2280                           3                               Male
## 2281                           1                             Female
## 2282                           1                             Female
## 2283                           3                             Female
## 2284                           0                               Male
## 2285                           1                             Female
## 2286                           0                             Female
## 2287                           3                             Female
## 2288                           2                             Female
## 2289                           3                               Male
## 2290                           3                             Female
## 2291                           1                             Female
## 2292                           0                             Female
## 2293                           3                               Male
## 2294                           3                             Female
## 2295                           1                               Male
## 2296                           1                               Male
## 2297                           3                               Male
## 2298                           2                             Female
## 2299                           2                             Female
## 2300                           0                               Male
## 2301                           3                             Female
## 2302                           2                               Male
## 2303                           3                               Male
## 2304                           3                               Male
## 2305                           3                               Male
## 2306                           3                             Female
## 2307                           1                               Male
## 2308                           0                             Female
## 2309                           3                             Female
## 2310                           1                             Female
## 2311                           3                               Male
## 2312                           1                             Female
## 2313                           3                               Male
## 2314                           3                             Female
## 2315                           1                             Female
## 2316                           3                               Male
## 2317                           0                             Female
## 2318                           3                             Female
## 2319                           0                               Male
## 2320                           0                               Male
## 2321                           2                             Female
## 2322                           1                               Male
## 2323                           0                             Female
## 2324                           1                               Male
## 2325                           3                               Male
## 2326                           3                             Female
## 2327                           3                               Male
## 2328                           3                               Male
## 2329                           3                               Male
## 2330                           0                               Male
## 2331                           1                             Female
## 2332                           1                             Female
## 2333                           3                               Male
## 2334                           3                             Female
## 2335                           0                             Female
## 2336                           1                               Male
## 2337                           2                             Female
## 2338                           0                             Female
## 2339                           3                             Female
## 2340                           1                               Male
## 2341                           3                             Female
## 2342                           0                               Male
## 2343                           0                             Female
## 2344                           1                             Female
## 2345                           3                               Male
## 2346                           3                             Female
## 2347                           0                             Female
## 2348                           0                             Female
## 2349                           0                               Male
## 2350                           3                               Male
## 2351                           3                               Male
## 2352                           0                             Female
## 2353                           2                               Male
## 2354                           3                             Female
## 2355                           1                             Female
## 2356                           1                             Female
## 2357                           1                             Female
## 2358                           3                               Male
## 2359                           3                             Female
## 2360                           3                             Female
## 2361                           0                             Female
## 2362                           0                             Female
## 2363                           0                             Female
## 2364                           1                             Female
## 2365                           1                             Female
## 2366                           0                             Female
## 2367                           1                             Female
## 2368                           3                               Male
## 2369                           3                               Male
## 2370                           3                             Female
## 2371                           3                               Male
## 2372                           3                             Female
## 2373                           1                               Male
## 2374                           3                             Female
## 2375                           3                             Female
## 2376                           2                             Female
## 2377                           3                             Female
## 2378                           3                             Female
## 2379                           1                             Female
## 2380                           3                             Female
## 2381                           3                             Female
## 2382                           3                             Female
## 2383                           3                               Male
## 2384                           3                             Female
## 2385                           3                             Female
## 2386                           2                               Male
## 2387                           3                             Female
## 2388                           3                             Female
## 2389                           0                             Female
## 2390                           3                             Female
## 2391                           2                             Female
## 2392                           3                               Male
## 2393                           3                               Male
## 2394                           3                               Male
## 2395                           3                             Female
## 2396                           3                             Female
## 2397                           1                               Male
## 2398                           0                             Female
## 2399                           1                             Female
## 2400                           0                             Female
## 2401                           3                             Female
## 2402                           0                             Female
## 2403                           2                             Female
## 2404                           1                             Female
## 2405                           3                             Female
## 2406                           1                               Male
## 2407                           3                             Female
## 2408                           3                             Female
## 2409                           2                               Male
## 2410                           3                             Female
## 2411                           1                             Female
## 2412                           1                             Female
## 2413                           2                               Male
## 2414                           3                             Female
## 2415                           3                               Male
## 2416                           1                               Male
## 2417                           0                               Male
## 2418                           0                             Female
## 2419                           2                             Female
## 2420                           1                               Male
## 2421                           0                             Female
## 2422                           1                               Male
## 2423                           2                               Male
## 2424                           2                               Male
## 2425                           1                             Female
## 2426                           1                               Male
## 2427                           1                               Male
## 2428                           3                             Female
## 2429                           2                               Male
## 2430                           1                               Male
## 2431                           3                               Male
## 2432                           1                             Female
## 2433                           3                             Female
## 2434                           3                               Male
## 2435                           3                               Male
## 2436                           1                             Female
## 2437                           1                               Male
## 2438                           3                               Male
## 2439                           0                               Male
## 2440                           1                               Male
## 2441                           1                               Male
## 2442                           3                               Male
## 2443                           3                               Male
## 2444                           0                               Male
## 2445                           3                             Female
## 2446                           0                               Male
## 2447                           0                               Male
## 2448                           1                               Male
## 2449                           3                               Male
## 2450                           3                               Male
## 2451                           2                               Male
## 2452                           3                             Female
## 2453                           3                               Male
## 2454                           3                             Female
## 2455                           0                             Female
## 2456                           1                               Male
## 2457                           2                             Female
## 2458                           1                             Female
## 2459                           3                             Female
## 2460                           0                             Female
## 2461                           3                               Male
## 2462                           1                             Female
## 2463                           1                             Female
## 2464                           3                               Male
## 2465                           1                               Male
## 2466                           3                               Male
## 2467                           2                             Female
## 2468                           0                               Male
## 2469                           3                             Female
## 2470                           1                               Male
## 2471                           2                             Female
## 2472                           3                             Female
## 2473                           3                             Female
## 2474                           1                             Female
## 2475                           1                               Male
## 2476                           3                             Female
## 2477                           3                               Male
## 2478                           1                               Male
## 2479                           0                             Female
## 2480                           3                               Male
## 2481                           0                               Male
## 2482                           0                               Male
## 2483                           0                             Female
## 2484                           1                             Female
## 2485                           0                             Female
## 2486                           1                               Male
## 2487                           3                               Male
## 2488                           3                               Male
## 2489                           2                               Male
## 2490                           3                               Male
## 2491                           2                             Female
## 2492                           3                             Female
## 2493                           0                             Female
## 2494                           3                             Female
## 2495                           3                               Male
## 2496                           1                               Male
## 2497                           2                               Male
## 2498                           3                               Male
## 2499                           3                             Female
## 2500                           3                             Female
## 2501                           3                             Female
## 2502                           0                             Female
## 2503                           0                               Male
## 2504                           0                             Female
## 2505                           0                               Male
## 2506                           3                               Male
## 2507                           0                             Female
## 2508                           1                             Female
## 2509                           3                               Male
## 2510                           3                               Male
## 2511                           0                               Male
## 2512                           3                             Female
## 2513                           3                               Male
## 2514                           1                             Female
## 2515                           0                               Male
## 2516                           0                             Female
## 2517                           2                             Female
## 2518                           3                               Male
## 2519                           0                             Female
## 2520                           1                               Male
## 2521                           3                             Female
## 2522                           0                             Female
## 2523                           3                               Male
## 2524                           1                               Male
## 2525                           3                             Female
## 2526                           1                             Female
## 2527                           3                             Female
## 2528                           2                             Female
## 2529                           3                               Male
## 2530                           3                               Male
## 2531                           3                               Male
## 2532                           3                               Male
## 2533                           1                             Female
## 2534                           1                             Female
## 2535                           2                             Female
## 2536                           1                             Female
## 2537                           0                               Male
## 2538                           2                             Female
## 2539                           3                             Female
## 2540                           3                             Female
## 2541                           1                               Male
## 2542                           3                               Male
## 2543                           3                             Female
## 2544                           0                               Male
## 2545                           3                               Male
## 2546                           3                               Male
## 2547                           3                             Female
## 2548                           0                               Male
## 2549                           1                             Female
## 2550                           3                               Male
## 2551                           3                             Female
## 2552                           3                               Male
## 2553                           3                             Female
## 2554                           3                               Male
## 2555                           2                               Male
## 2556                           1                             Female
## 2557                           2                             Female
## 2558                           2                               Male
## 2559                           0                               Male
## 2560                           3                             Female
## 2561                           2                               Male
## 2562                           1                             Female
## 2563                           0                             Female
## 2564                           1                             Female
## 2565                           1                               Male
## 2566                           0                             Female
## 2567                           3                             Female
## 2568                           3                               Male
## 2569                           1                             Female
## 2570                           0                             Female
## 2571                           0                               Male
## 2572                           1                               Male
## 2573                           3                             Female
## 2574                           3                             Female
## 2575                           3                             Female
## 2576                           2                               Male
## 2577                           1                             Female
## 2578                           3                               Male
## 2579                           3                               Male
## 2580                           2                             Female
## 2581                           3                             Female
## 2582                           3                             Female
## 2583                           2                             Female
## 2584                           3                               Male
## 2585                           3                               Male
## 2586                           3                             Female
## 2587                           3                             Female
## 2588                           0                             Female
## 2589                           3                             Female
## 2590                           0                             Female
## 2591                           0                               Male
## 2592                           0                             Female
## 2593                           1                             Female
## 2594                           1                               Male
## 2595                           0                               Male
## 2596                           2                             Female
## 2597                           3                             Female
## 2598                           0                             Female
## 2599                           3                               Male
## 2600                           1                             Female
## 2601                           3                               Male
## 2602                           3                               Male
## 2603                           3                             Female
## 2604                           1                             Female
## 2605                           3                             Female
## 2606                           3                               Male
## 2607                           0                               Male
## 2608                           1                             Female
## 2609                           1                               Male
## 2610                           0                               Male
## 2611                           3                               Male
## 2612                           1                             Female
## 2613                           3                               Male
## 2614                           1                             Female
## 2615                           3                             Female
## 2616                           3                             Female
## 2617                           0                             Female
## 2618                           3                               Male
## 2619                           3                             Female
## 2620                           0                               Male
## 2621                           2                             Female
## 2622                           3                               Male
## 2623                           0                             Female
## 2624                           3                               Male
## 2625                           3                               Male
## 2626                           0                               Male
## 2627                           1                               Male
## 2628                           3                             Female
## 2629                           0                               Male
## 2630                           1                             Female
## 2631                           0                             Female
##  [ reached 'max' / getOption("max.print") -- omitted 4463 rows ]
### Q3: Marital Status
training<-training%>%
          mutate(if_else(Q3==1,"Married","Divorced"),
                  if_else(Q3==3, "Widowed","Single"))
training
##        ID  Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8_1 Q8_2 Q8_3 Q8_4 Q8_5 Q8_6 Q8_7 Q8_8
## 1    5086  98  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 2    1258  40  1  1  3  5  1  1    1    0    0    0    0    0    0    0
## 3     331  18  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 4    6729  50  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 5    8671  34  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 6    5462  35  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 7    4886  31  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 8     621  23  2  4  5  5  2  1    0    0    1    0    0    0    0    0
## 9    8302  56  2  3  3  3  2  2    0    1    0    1    0    1    0    0
## 10   4704  37  2  1  3  3  2  1    0    1    0    0    0    0    0    1
## 11   2758  18  2  4  5  5  2  1    0    0    0    0    0    0    0    0
## 12   2536  29  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 13   8863  28  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 14   5469  17  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 15   3543  22  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 16   6554  53  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 17   7769  21  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 18   4226  24  2  4  3  1  1  1    0    1    0    0    0    0    0    0
## 19   6997  38  1  4  2  2  2  2    0    1    0    1    0    0    0    0
## 20    987  30  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 21   5576  27  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 22   2272  42  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 23   8277  44  1  1  1  3  2  2    0    1    0    1    0    0    0    0
## 24   3007  76  2  1  1  1  1  2    0    0    0    1    0    0    0    0
## 25    915  19  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 26   1335  29  2  1  3  5  2  2    0    0    1    0    0    0    0    0
## 27   1251  20  2  4  3  4  2  1    0    0    0    1    0    0    0    0
## 28   5036  26  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 29    599  44  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 30    794  32  2  4  2  5  2  1    0    1    0    0    0    0    0    0
## 31   3158  53  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 32   3959  46  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 33   1241  35  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 34   4986  47  1  2  3  1  1  1    0    1    0    0    0    0    0    0
## 35   4109  20  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 36   8121  86  1  1  1  3  1  2    0    1    0    0    0    0    0    0
## 37   3895  18  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 38   8054  19  1  2  2  3  2  1    0    0    0    1    0    0    0    0
## 39   8023  31  2  1  3  5  2  1    0    1    0    1    0    0    0    0
## 40   6933  30  1  1  2  5  2  2    0    1    0    0    0    0    0    0
## 41   7852  17  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 42   6063  30  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 43    755  37  2  1  6  5  2  1    0    1    0    1    0    0    0    0
## 44   6445  38  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 45   8548  35  1  4  3  4  2  2    0    1    0    0    0    0    0    0
## 46   1549  20  2  2  3  3  2  2    1    0    0    0    0    0    0    0
## 47   6617  29  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 48   8467  35  1  1  3  1  2  1    1    1    0    1    0    0    0    0
## 49   4116  46  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 50   8125  25  1  1  3  4  2  2    0    1    0    0    0    0    0    0
## 51   1044  31  2  1  1  2  2  2    0    1    0    0    0    1    0    0
## 52   2535  21  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 53   8950  39  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 54   6099  23  1  1  2  3  2  1    0    1    0    0    0    0    0    0
## 55   5607  21  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 56   8734  25  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 57   4734  72  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 58   7776  65  2  2  1  1  2  1    0    1    0    0    0    0    0    1
## 59   9367  54  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 60   3423  32  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 61   2878  24  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 62   2356  24  2  4  7  1  2  1    0    0    0    0    0    0    0    0
## 63    229  34  1  1  6  3  1  1    1    0    0    0    0    0    0    0
## 64   3406  46  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 65    771  31  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 66    580  26  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 67   6163  45  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 68   6212  31  1  1  6  1  2  1    0    0    1    0    0    0    0    0
## 69   8574  23  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 70   8278  31  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 71   3919  38  2  1  1  5  2  2    0    0    0    0    0    0    0    0
## 72   8883  45  1  1  6  1  2  1    1    1    0    1    0    0    0    0
## 73   5677  27  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 74   9209  32  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 75   7050  25  1  1  6  1  1  1    0    1    0    1    0    0    0    0
## 76   1531  26  1  2  7  5  1  1    0    0    1    1    0    0    0    0
## 77   7922  30  1  4  3  3  2  2    0    1    0    1    0    0    0    0
## 78   4397  18  1  4  1  3  2  1    0    1    0    1    0    0    0    0
## 79   3170  28  1  2  3  4  2  1    0    1    0    1    0    0    0    0
## 80   6376  35  2  1  5  1  2  2    0    0    0    0    0    0    0    0
## 81   5472  50  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 82   9138  30  2  2  3  3  2  1    0    1    0    1    0    0    0    0
## 83   6020  48  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 84   8658  23  2  1  3  4  1  2    0    0    0    1    0    0    0    0
## 85    919  27  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 86   6035  33  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 87   6925  33  1  4  2  5  2  1    0    0    0    0    0    0    0    0
## 88   5146  57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 89   1169  42  1  1  7  1  2  1    1    0    0    0    0    0    0    0
## 90   3449  30  1  1  3  5  2  2    0    1    0    0    0    0    0    0
## 91   5307  30  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 92   1354  29  2  1  4  1  1  1    0    0    1    1    0    0    0    0
## 93    393  25  2  4  3  5  2  1    0    1    0    0    0    0    0    0
## 94    558  48  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 95   1624  29  2  2  3  5  2  2    0    1    0    1    0    0    0    0
## 96    151  44  2  2  3  5  1  1    0    1    0    0    0    0    0    0
## 97   1515  40  1  1  1  3  2  2    0    0    0    1    0    0    0    0
## 98   9233  21  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 99   5230  47  1  1  2  1  2  2    0    1    0    0    0    0    0    1
## 100   862  39  1  2  3  3  2  1    0    1    0    1    0    0    0    0
## 101  3874  51  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 102  8078  26  2  3  3  4  2  1    0    1    0    1    0    0    0    0
## 103  3920  21  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 104  9188  48  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 105  4551  29  2  1  3  4  1  2    0    1    0    0    0    0    0    0
## 106  2620  69  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 107  3975  58  2  2  3  5  2  2    0    1    1    0    0    0    0    0
## 108  1209  36  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 109  3696  19  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 110  2134  51  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 111  9410  65  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 112  8259  53  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 113  4922  52  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 114  4934  60  2  3  1  4  2  1    0    1    0    0    0    0    0    0
## 115  5602  34  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 116   124  50  2  3  3  5  2  1    0    0    0    0    0    0    0    0
## 117  7990  20  2  4  6  3  2  2    0    1    0    0    0    0    0    0
## 118  7735  79  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 119  8847  19  1  4  5  4  2  2    1    0    0    0    0    0    0    0
## 120   804  17  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 121  8065  48  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 122  5901  30  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 123  2196  33  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 124   187  30  2  2  3  4  2  1    0    0    1    0    0    0    0    0
## 125  8676  17  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 126  3656  22  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 127  6728  20  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 128  7751  57  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 129  2448  30  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 130  1426  21  2  1  5  5  2  1    0    0    1    0    0    0    0    0
## 131   966  36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 132  5400  30  2  1  6  4  1  1    1    0    0    0    0    0    0    0
## 133  2666  74  2  3  3  1  2  2    0    0    0    0    0    0    0    0
## 134  2155  70  1  3  2  5  2  2    0    0    0    1    0    0    0    0
## 135  1972  21  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 136  2123  50  2  1  2  1  1  1    0    1    0    1    0    0    0    0
## 137  7064  42  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 138  7074  51  1  1  5  1  2  1    0    1    1    0    1    0    0    0
## 139  8424  25  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 140  4487  66  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 141  3829  32  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 142   190  43  1  1  3  1  1  1    1    0    0    0    0    0    1    0
## 143  1509  42  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 144  8971  25  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 145  1695  22  1  4  7  5  1  1    0    0    0    0    0    0    0    0
## 146  1468  30  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 147  6145  21  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 148  2476  44  2  1  7  2  1  1    0    1    0    0    0    0    0    0
## 149  7818  32  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 150  3421  45  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 151  9328  43  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 152  2149  27  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 153    45  21  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 154   800  34  1  1  2  4  1  2    0    0    0    1    0    0    0    0
## 155  2881  71  2  1  3  5  2  1    0    0    0    0    0    0    1    0
## 156  2324  53  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 157  9069  41  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 158  5106  18  2  4  2  4  2  1    0    0    0    0    0    0    0    0
## 159  2839  30  2  2  3  1  2  2    0    0    0    1    0    0    0    0
## 160  9007  43  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 161   528  18  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 162   364  27  1  1  6  4  1  1    0    1    0    1    0    0    0    0
## 163  1826  42  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 164  8094  28  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 165  2292  23  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 166  3953  36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 167  8297  26  1  4  5  4  2  1    1    0    0    0    0    0    0    0
## 168  3351  40  2  2  1  4  2  2    0    1    0    1    0    0    0    0
## 169  1906  16  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 170  1314  44  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 171  4784  49  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 172  2268  21  2  1  2  3  1  2    0    1    0    0    0    0    0    0
## 173  5930  26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 174  3458  40  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 175   638  23  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 176  4996  45  1  1  6  1  1  1    0    0    1    0    0    0    0    0
## 177  3626  17  1  4  2  5  2  1    0    0    0    0    0    0    0    0
## 178  1208  35  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 179  1853  47  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 180  1454  47  2  2  3  1  2  1    0    0    1    1    0    0    0    0
## 181   148  22  2  4  3  5  2  1    1    1    0    0    0    0    0    0
## 182  9155  56  1  1  3  2  2  1    0    1    0    0    0    0    0    0
## 183  5000  20  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 184  8828  30  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 185  7455  30  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 186  1541  82  1  1  1  3  2  2    0    1    0    1    0    0    0    0
## 187  4376  50  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 188  6255  45  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 189  7051  34  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 190  1653  39  1  1  6  2  1  1    0    1    0    0    0    0    0    0
## 191  5883  30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 192  5113  26  2  1  5  1  2  2    0    0    0    0    0    0    0    0
## 193  4405  24  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 194  3924  45  2  4  2  1  1  1    0    1    0    0    0    0    0    0
## 195  6642  19  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 196  8330  21  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 197  2550  47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 198  2937  28  1  1  2  4  1  1    0    1    0    0    0    0    0    0
## 199   141  25  1  1  3  5  2  1    1    1    0    0    0    0    0    0
## 200  3657  64  2  3  2  1  2  2    0    1    1    0    0    0    0    0
## 201  8445  57  1  1  2  3  1  1    0    1    0    0    0    0    0    0
## 202  2996  48  2  1  3  2  2  1    0    1    0    1    0    0    0    0
## 203  7040  66  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 204  4660  23  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 205  8846  55  1  3  3  1  2  1    0    1    0    0    0    0    0    0
## 206  3780  47  1  1  3  3  1  2    0    1    0    0    0    0    0    0
## 207  8155  25  2  1  1  2  2  2    0    0    0    1    0    0    0    0
## 208  3807  22  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 209  3383  37  1  4  2  5  2  2    0    0    0    1    0    0    0    0
## 210  7547  42  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 211   717  50  2  1  2  1  1  1    0    1    0    0    1    0    0    0
## 212   934  43  2  1  7  5  2  1    1    0    0    0    0    0    0    0
## 213  1458  45  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 214  2534  38  2  2  1  5  2  2    0    0    0    1    0    0    0    0
## 215  8102  18  1  4  2  3  2  1    0    1    0    1    0    0    0    0
## 216  2102  25  1  1  2  3  2  1    0    1    0    0    0    0    0    0
## 217  6050  25  2  2  2  5  2  1    0    0    0    0    0    0    0    0
## 218   110  34  1  1  1  4  1  1    0    0    0    1    0    0    0    0
## 219  6151  30  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 220  1629  25  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 221  4434  34  1  1  2  1  1  1    0    1    0    1    0    0    0    0
## 222  7915  36  2  1  2  1  2  2    0    1    1    0    0    0    0    1
## 223  5285  37  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 224   316  70  2  3  2  1  2  2    0    0    0    0    0    0    0    1
## 225  6061  51  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 226  1802  26  1  2  2  1  2  1    0    1    0    1    0    0    0    0
## 227  8761  78  2  2  1  1  2  1    0    1    0    0    0    0    0    0
## 228  9412  59  2  1  1  2  1  1    0    0    0    1    0    0    0    0
## 229  2082  28  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 230  1637  64  2  1  1  1  1  2    0    1    0    1    0    0    0    0
## 231   181  16  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 232  7742  30  1  3  6  3  2  1    0    0    0    1    0    0    0    0
## 233  4277  45  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 234  7527  65  1  2  3  1  1  2    0    1    0    0    0    0    0    1
## 235  1439  41  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 236  4197  30  2  1  3  5  1  1    0    1    1    0    0    0    0    0
## 237  1828  50  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 238  1581  27  1  1  3  3  2  2    0    0    0    1    0    0    0    0
## 239  1878  53  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 240  8408  22  2  1  5  3  2  1    0    0    1    0    0    0    0    0
## 241  4630  47  1  2  3  5  2  1    0    1    0    0    0    0    0    0
## 242  7977  19  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 243  8955  27  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 244  7287  26  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 245   677  33  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 246  7590  55  1  1  4  5  2  1    0    0    0    1    0    0    0    0
## 247  8656  27  2  1  5  4  1  1    0    0    1    0    0    0    0    0
## 248  7726  36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 249  4023  42  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 250  4684  45  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 251  6066  42  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 252  4688  33  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 253  4942  51  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 254  8257  80  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 255  5025  18  1  4  5  3  2  1    0    1    0    0    0    0    0    0
## 256  9181  50  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 257  6316  94  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 258  2109  24  1  2  3  5  2  1    0    1    0    0    0    0    0    0
## 259  3892  25  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 260  2890  51  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 261  4833  23  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 262  8256  16  2  4  4  3  2  2    0    0    0    0    0    0    0    0
## 263   219  22  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 264  8740  53  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 265  6333  30  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 266  1719  20  1  4  3  3  2  1    0    0    0    0    0    0    0    0
## 267  2116  25  1  2  3  1  2  1    0    1    0    1    0    0    0    0
## 268  2002  35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 269  3532  27  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 270  8170  35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 271  1757  26  2  1  1  5  2  1    0    1    0    0    0    0    0    0
## 272  3792  20  1  4  3  5  2  2    0    0    0    1    0    0    0    0
## 273  8243  29  2  4  7  5  1  1    1    0    0    0    0    0    0    0
## 274  4495  65  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 275  7746  17  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 276  1350  24  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 277  8532  48  1  1  3  1  2  1    0    0    0    0    0    0    0    0
## 278  3965  48  1  3  3  1  2  2    0    0    0    1    0    0    0    0
## 279   106  30  1  1  6  5  1  1    0    0    0    1    0    0    0    0
## 280  9131  40  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 281  9134  40  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 282  7188  31  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 283  5979  29  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 284   560  32  1  1  1  1  2  1    0    0    0    1    0    0    0    0
## 285  3602  38  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 286  5013  72  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 287  1063  22  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 288  8664  55  2  2  1  1  1  2    0    1    0    1    0    0    0    0
## 289  7627  32  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 290  3494  27  1  1  3  3  2  1    1    0    0    0    0    0    0    0
## 291  4927  31  2  1  3  5  1  1    0    0    0    1    0    0    0    0
## 292  7100  18  2  4  3  5  2  2    0    0    0    1    0    0    0    0
## 293   682  41  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 294  8375  42  2  2  3  1  2  2    0    0    0    1    0    0    0    0
## 295  8745  61  2  3  1  3  1  2    0    0    0    1    0    0    0    0
## 296  2750  43  2  2  2  3  2  2    0    1    0    0    0    0    0    0
## 297   249  23  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 298  3538  49  2  2  1  1  2  2    0    0    0    1    0    1    0    0
## 299  4403  18  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 300    51  22  2  4  3  5  2  1    0    0    0    0    0    0    0    0
## 301  9274  32  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 302  1298  32  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 303  7140  30  1  1  7  5  2  1    1    1    0    0    0    0    0    0
## 304  6651  45  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 305  6069  17  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 306  6167  42  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 307  7377  48  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 308  7792  42  2  3  1  3  2  2    0    1    0    0    0    0    0    1
## 309  7512  53  1  1  3  1  2  2    0    1    0    0    1    0    0    0
## 310  8395  80  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 311  4390  23  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 312   253  45  1  1  5  4  1  1    0    0    0    1    0    0    0    0
## 313  4616  36  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 314   656  32  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 315  8624  35  1  1  3  1  1  1    0    1    1    0    0    0    0    0
## 316  8903  24  2  1  6  3  2  1    0    1    1    0    0    0    0    0
## 317  7457  43  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 318  7727  49  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 319   796  18  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 320  6344  61  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 321  1520  60  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 322  4500  35  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 323  3837  43  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 324  7468  42  2  1  6  5  1  1    1    1    0    0    0    0    0    0
## 325  2162  16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 326  6555  30  1  1  4  1  2  2    0    1    0    1    0    0    0    0
## 327  5366  23  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 328  2998  85  2  3  2  4  2  2    0    0    0    0    0    0    0    0
## 329  2436  27  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 330  8620  30  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 331   297  26  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 332  9228  21  1  4  3  5  2  2    0    0    0    0    0    0    0    0
## 333   925  20  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 334  7079  39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 335  7421  57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 336  6451  35  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 337  2213  36  1  1  5  1  2  1    1    0    0    0    0    0    0    0
## 338  3545  25  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 339  5129  30  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 340   805  33  2  1  2  5  1  1    0    0    0    1    0    0    0    0
## 341  4257  33  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 342   474  43  1  1  6  3  2  1    0    1    0    0    0    0    0    0
## 343  8416  20  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 344  8826  20  2  1  6  4  2  2    0    0    0    0    0    0    0    0
## 345  7054  26  1  1  6  3  2  1    0    0    0    1    0    0    0    0
## 346  9161  61  2  2  2  3  2  1    0    1    0    0    0    0    0    0
## 347  2539  90  1  3  2  1  1  2    0    0    0    0    0    0    0    0
## 348  4000  80  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 349  9113  85  2  2  2  5  2  2    0    0    0    1    0    0    0    1
## 350  8920  77  2  3  1  1  1  2    0    1    0    0    0    0    0    0
## 351  7395  24  2  4  3  1  2  1    0    1    0    0    0    0    0    0
## 352  9126  34  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 353  6301  26  2  4  7  4  2  1    1    0    0    0    0    0    0    0
## 354  3951  61  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 355  1085  28  1  2  1  4  2  1    0    0    1    1    0    0    0    0
## 356  1623  26  2  1  6  4  1  1    0    0    0    0    0    0    0    0
## 357  2046  62  2  3  1  2  2  2    0    0    0    0    0    0    0    0
## 358  4531  36  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 359  4198  35  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 360  7345  25  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 361  6894  45  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 362  1722  52  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 363  9152  50  1  4  3  1  2  2    0    1    0    1    0    0    0    0
## 364  9315  72  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 365  9024  18  2  4  3  1  2  2    0    1    0    1    0    0    0    0
## 366  8858  48  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 367  1759  46  1  1  3  5  1  1    0    0    0    1    0    0    0    0
## 368  6107  71  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 369  1505  19  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 370  7558  18  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 371  2681  25  2  1  3  1  1  2    0    0    0    0    0    0    0    0
## 372  7660  24  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 373  1494  48  2  1  1  3  2  1    0    0    0    0    0    0    0    0
## 374  7840  24  2  4  3  3  2  1    0    0    1    0    0    0    0    0
## 375  7253  31  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 376  4441  35  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 377  3205  30  1  1  6  3  1  1    1    0    0    0    0    0    0    0
## 378  4448  22  2  1  5  5  2  1    0    0    0    0    0    0    0    0
## 379  7642  33  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 380  7011  35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 381  3188  62  1  1  1  5  2  2    0    1    0    0    0    0    0    0
## 382  1037  32  2  1  4  1  2  1    0    1    0    0    0    0    0    0
## 383  9345  33  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 384  7263  17  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 385  4209  23  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 386  5647  45  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 387  1374  62  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 388  2755  21  2  4  6  5  2  1    0    1    0    0    0    0    0    0
## 389  4592  22  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 390  6709  29  1  2  3  3  2  2    0    0    0    1    0    0    0    0
## 391  2603  52  1  1  3  3  2  1    0    0    0    0    0    0    0    0
## 392  6855  32  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 393  3760  31  1  4  1  1  1  2    0    1    0    0    0    0    0    0
## 394  3016  87  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 395  8779  60  2  1  1  3  2  1    0    1    0    1    0    0    0    0
## 396  8649  20  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 397  9429  30  2  4  1  3  2  2    0    0    0    1    0    0    0    0
## 398  1368  32  2  1  6  1  2  1    0    0    1    0    0    0    0    0
## 399  2394  40  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 400   814  32  2  1  6  1  2  1    0    0    0    0    0    0    0    0
## 401  8090  45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 402  6219  20  2  4  5  5  2  1    0    0    0    1    0    0    0    0
## 403  5533  58  1  1  5  3  1  1    0    0    0    0    0    0    1    0
## 404  2398  45  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 405  3867  26  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 406  7959  40  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 407  3144  50  1  1  6  1  1  1    0    1    0    1    0    0    0    0
## 408  3809  37  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 409  1177  16  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 410  1594  27  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 411  8930  38  2  3  2  5  2  2    0    1    0    0    0    0    0    0
## 412  4103  72  1  3  3  5  2  2    0    0    0    0    0    0    0    0
## 413     2  29  2  1  7  5  2  1    0    0    0    0    0    0    0    0
## 414  3384  16  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 415   200  62  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 416  6237  20  1  4  5  3  2  1    0    0    0    0    0    0    0    0
## 417  6187  55  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 418  5483  48  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 419  5902  21  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 420  1952  43  1  1  3  1  1  1    0    0    1    0    0    0    0    0
## 421   671  51  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 422  3769  28  1  1  3  4  2  1    0    0    0    1    0    0    0    0
## 423    12  46  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 424  7453  57  2  1  1  2  2  1    0    1    0    1    0    0    0    0
## 425  1341  31  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 426  5219  26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 427  2869  39  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 428  8823  45  1  1  1  1  2  1    0    0    0    1    0    0    0    0
## 429  7293  41  1  1  3  1  1  1    0    1    1    0    0    0    0    0
## 430  3882  31  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 431   532  23  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 432   893  19  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 433  1264  26  2  1  2  3  2  1    0    0    0    0    0    0    0    0
## 434  9177  70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 435  8352  19  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 436  7090  50  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 437  8567  20  2  1  5  3  1  1    0    1    0    0    0    0    0    0
## 438   417  36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 439  8350  29  1  4  7  5  1  1    0    1    0    0    0    0    0    0
## 440  6117  42  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 441  8755  26  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 442  6266  34  2  2  5  4  2  1    0    1    1    0    0    0    0    0
## 443  3324  43  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 444  8364  50  2  3  3  1  2  1    0    0    0    0    0    0    0    0
## 445  4647  36  1  2  1  1  2  2    0    1    0    1    0    0    0    0
## 446  7838  47  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 447  5330  50  1  1  6  1  2  2    0    0    0    1    0    0    0    0
## 448  3128  17  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 449  5763  19  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 450  1278  31  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 451  9053  33  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 452  1123  65  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 453  8290  30  2  1  3  5  2  2    0    0    0    1    0    0    0    0
## 454  6121  34  1  1  3  1  1  1    1    1    0    0    0    0    0    0
## 455  6763  42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 456  2847  50  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 457  3279  17  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 458  2930  70  2  3  2  1  1  2    0    0    0    1    0    0    0    0
## 459  1396  21  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 460  9082  65  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 461  1004  42  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 462  4729  32  2  1  3  2  1  1    0    0    1    0    0    0    0    0
## 463  7839  50  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 464  2475  60  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 465  8306  28  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 466  6177  16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 467  8927  70  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 468   675  26  2  2  3  4  2  1    0    0    0    0    0    0    0    0
## 469  1223  65  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 470  8396  35  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 471  7535  35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 472  6941  27  2  3  2  3  2  2    0    1    0    0    0    0    0    0
## 473  1818  49  2  1  3  5  1  1    0    0    0    1    0    0    0    0
## 474  7294  19  1  4  2  5  2  1    0    0    0    1    0    0    0    0
## 475  9019  32  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 476  8265  41  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 477  7647  40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 478  6005  27  2  1  5  5  2  1    0    0    0    0    0    0    0    0
## 479  5780  16  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 480  7030  68  2  1  1  3  2  1    0    1    0    1    0    0    0    0
## 481  5002  22  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 482  4946  76  1  1  6  1  1  1    0    0    0    1    0    0    1    0
## 483  2611  33  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 484  9386  26  1  4  6  5  2  1    1    0    0    0    0    0    0    0
## 485  6485  25  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 486  6458  30  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 487  8176  22  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 488  8594  39  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 489  2504  70  2  3  2  3  1  2    0    0    0    0    0    0    0    0
## 490  3319  35  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 491  5243  23  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 492  7319  48  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 493  4016  72  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 494  4196  25  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 495  9331  48  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 496  2596  26  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 497   782  48  2  3  3  5  1  1    0    1    0    0    0    0    0    0
## 498  6884  66  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 499  2987  16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 500  2576  70  2  2  1  3  2  2    0    0    0    0    0    0    0    1
## 501  1296  26  2  2  3  3  2  2    0    1    0    1    0    0    0    0
## 502  8279  34  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 503  1832  25  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 504  8507  18  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 505  6969  23  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 506  5692  18  2  4  3  1  2  2    0    0    1    0    0    0    0    0
## 507  9240  35  2  1  3  4  1  1    0    1    0    0    0    0    0    0
## 508  6655  33  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 509  5337  35  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 510   980  39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 511  2563  60  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 512  5710  32  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 513  6263  51  2  2  3  1  2  1    0    1    0    0    0    0    0    1
## 514   268  30  2  1  7  5  2  1    1    0    0    0    0    0    0    0
## 515  1067  17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 516  3214  57  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 517  6218  23  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 518  8862  25  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 519  3103  30  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 520  6482  53  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 521  4563  68  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 522   689  31  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 523  3163  40  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 524   296  30  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 525  2910  48  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 526  6238  22  1  1  3  5  1  1    0    0    0    1    0    0    0    0
## 527  5347  35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 528  1963  40  2  1  7  2  2  1    0    0    1    0    0    0    0    0
## 529  6497  60  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 530  8643  43  1  1  3  2  2  2    0    1    0    0    0    0    0    0
## 531  9243  21  1  4  1  3  2  1    0    1    0    0    0    0    0    0
## 532  9154  61  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 533   211  30  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 534  6565  34  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 535  2095  30  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 536  5597  25  1  1  2  3  2  1    0    1    0    1    0    0    0    0
## 537  1830  34  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 538  2083  34  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 539  7098  44  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 540  8134  54  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 541   727  40  2  1  6  1  1  1    1    0    0    0    0    0    0    0
## 542   251  30  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 543  1182  37  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 544  1326  25  1  4  6  4  2  1    1    0    0    0    0    0    0    0
## 545   306  23  2  1  5  4  2  1    0    0    0    1    0    0    0    0
## 546  4804  17  1  4  2  3  2  1    0    0    0    1    0    0    0    0
## 547  4427  18  1  4  2  1  2  2    0    1    0    1    0    0    0    0
## 548  7323  39  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 549    88  26  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 550  3693  30  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 551  7458  32  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 552  7165  40  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 553  6685  21  2  2  5  3  2  2    0    0    0    0    0    0    0    0
## 554   828  46  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 555  8716  22  2  4  3  4  2  1    0    0    0    0    0    0    0    0
## 556   377  20  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 557  9052  48  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 558  6501  79  1  3  2  5  2  2    0    0    0    0    0    0    0    0
## 559  2428  25  1  1  1  1  1  1    0    1    0    1    0    0    0    0
## 560  4333  30  2  1  1  5  2  2    0    1    0    0    0    0    0    1
## 561  1701  42  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 562  5601  19  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 563  1114  47  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 564  7524  55  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 565  4508  24  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 566  2560  35  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 567  2644  20  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 568  5683  25  1  4  7  4  2  1    1    1    0    0    0    0    0    0
## 569  9260  82  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 570  9025  23  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 571  8696  29  2  1  2  2  2  2    0    1    0    1    0    0    0    0
## 572  6888  81  2  3  1  3  2  2    0    0    0    0    0    0    0    0
## 573  5204  50  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 574  8844  45  2  1  3  5  2  2    0    0    0    0    0    0    0    1
## 575  8605  51  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 576  6359  46  2  2  3  1  2  2    0    1    0    1    0    0    0    0
## 577  4163  53  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 578  5958  45  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 579  2060  70  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 580  7000  49  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 581  5277  40  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 582  4713  43  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 583  3332  29  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 584  4274  45  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 585  4168  19  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 586  6553  40  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 587  7469  47  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 588  7089  29  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 589   320  35  2  1  3  4  2  1    0    0    1    0    0    0    0    0
## 590  4211  31  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 591  6847  58  1  1  3  4  2  2    0    0    0    1    0    0    0    0
## 592  4973  43  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 593  2725  28  2  1  6  4  1  1    0    0    0    0    0    0    0    0
## 594  7489  45  2  2  3  5  2  1    0    0    0    1    0    0    0    0
## 595  9265  32  2  1  2  3  2  1    0    0    0    0    0    0    0    0
## 596  8577  20  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 597  6733  27  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 598  2449  80  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 599  5940  49  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 600  2107  20  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 601  2226  47  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 602  5830  60  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 603  8673  72  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 604  4896  30  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 605   709  28  2  1  3  4  2  2    0    1    0    1    0    0    0    0
## 606  6309  26  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 607  5419  28  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 608  7300  35  2  1  3  4  2  2    0    1    0    1    0    0    0    0
## 609  4051  25  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 610    84  57  1  2  6  1  1  1    0    1    0    0    1    0    0    0
## 611  5768  31  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 612  3301  17  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 613  2325  77  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 614  5107  57  1  1  3  1  1  1    1    0    0    0    0    0    0    0
## 615  8348  30  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 616  2659  25  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 617  7501  29  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 618  7440  70  2  3  2  1  2  2    0    1    0    0    0    0    0    1
## 619  3869  32  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 620  9361  35  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 621  4543  75  1  1  1  1  2  1    0    0    0    0    0    0    0    1
## 622  4243  35  2  1  4  2  2  1    1    0    0    0    0    0    0    0
## 623  5755  32  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 624  9376  70  1  3  1  1  2  2    0    1    0    1    0    0    0    0
## 625  9301  55  2  1  6  1  2  1    1    0    0    0    1    0    0    0
## 626  3461  36  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 627  6652  77  2  3  1  1  2  1    0    1    0    0    0    0    0    1
## 628  8697  37  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 629  1304  27  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 630  1644  40  2  2  3  5  1  2    0    1    0    1    0    0    0    0
## 631  7992  54  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 632    70  60  1  1  3  4  1  1    1    0    0    0    0    0    0    0
## 633  4624  29  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 634   630  63  1  1  3  1  2  1    1    0    0    0    0    0    0    0
## 635  1640  42  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 636  6957  49  1  2  3  1  1  1    0    0    0    1    0    0    0    0
## 637  2289  20  2  1  5  3  2  1    0    0    0    0    0    0    0    0
## 638  4306  46  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 639  9032  32  2  4  2  1  2  2    0    1    0    0    0    0    0    0
## 640  2652  37  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 641  8933  30  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 642  3146  62  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 643  7111  38  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 644  5535  41  2  1  3  5  2  1    0    1    0    1    0    0    0    0
## 645  8325  22  2  1  2  5  2  2    0    1    1    0    0    0    0    0
## 646  1897  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 647  2488  35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 648  3984  30  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 649  2751  28  2  1  6  5  2  1    1    0    0    0    0    0    0    0
## 650  3683  35  1  1  2  1  1  1    0    1    0    1    0    0    0    0
## 651  7653  17  2  4  5  3  1  2    0    0    0    0    0    0    0    0
## 652  2554  24  1  4  3  4  2  1    0    0    0    1    0    0    0    0
## 653  7252  17  1  4  5  1  2  2    0    1    0    0    0    0    0    0
## 654  5224  65  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 655  4167  27  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 656  1552  38  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 657  4915  27  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 658  2577  49  1  1  5  4  2  1    0    1    0    0    0    0    0    0
## 659  8829  47  2  3  3  1  2  1    0    1    1    0    0    0    0    0
## 660  3353  33  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 661  2493  39  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 662  9163  70  1  2  2  1  2  2    0    1    0    0    0    0    0    0
## 663  3224  23  1  1  5  5  2  1    0    1    0    0    0    0    0    0
## 664    63  39  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 665  4680  45  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 666  2463  70  2  2  2  2  2  2    0    1    0    0    0    0    0    0
## 667   107  32  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 668  4425  35  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 669  7711  32  1  1  1  4  2  1    0    0    1    0    0    0    0    0
## 670  5600  19  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 671  2256  53  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 672  9448  33  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 673  9304  41  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 674  5275  36  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 675  8323  36  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 676  1649  42  2  1  3  1  1  2    0    1    0    1    0    0    0    0
## 677  8637  58  2  1  3  5  1  1    0    1    0    0    0    0    0    0
## 678  8233  34  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 679  3731  16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 680  6613  75  1  3  1  3  2  2    0    0    0    0    0    0    0    0
## 681  2294  32  2  1  7  3  2  1    1    0    0    0    0    0    0    0
## 682  3277  33  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 683  6157  25  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 684  4974  79  2  3  3  1  2  2    0    0    0    0    0    0    0    1
## 685   158  22  2  4  3  5  2  2    0    1    0    0    0    0    0    0
## 686  2077  61  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 687  1280  77  1  3  2  1  2  1    0    1    0    0    0    0    0    0
## 688  2399  32  2  4  3  1  2  1    0    0    0    1    0    0    0    0
## 689  3676  43  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 690  3381  25  2  2  3  5  2  2    0    1    0    1    0    0    0    0
## 691  7118  21  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 692  2604  41  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 693  6541  29  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 694  1978  43  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 695   173  16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 696  2857  32  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 697  7083  45  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 698  2764  36  2  2  3  5  2  2    0    1    1    0    0    0    0    0
## 699  6800  68  2  3  1  1  2  2    0    1    0    1    0    0    0    1
## 700  1022  38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 701  2769  55  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 702  3343  24  2  1  6  3  2  1    0    0    0    0    0    0    0    0
## 703  8347  33  2  2  7  5  1  1    1    1    0    0    0    0    0    0
## 704  2310  33  1  1  2  1  2  1    0    0    1    1    0    0    0    0
## 705  7028  33  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 706  4402  38  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 707  5110  25  2  1  1  1  2  1    0    0    0    0    0    0    0    0
## 708  2921  62  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 709  4245  47  1  1  3  5  1  2    0    0    0    1    0    0    0    0
## 710  1238  40  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 711   290  39  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 712   450  28  2  1  6  4  2  1    0    0    1    0    0    0    0    0
## 713  3216  38  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 714  7566  40  1  1  1  2  2  1    0    1    0    0    0    0    0    0
## 715  7157  41  1  2  3  1  1  1    0    1    0    1    0    0    0    0
## 716  6304  52  2  1  3  1  1  1    0    1    0    0    1    0    0    0
## 717  5423  49  2  1  6  1  2  1    0    1    0    1    0    0    0    0
## 718   362  52  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 719  4720  37  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 720  6845  19  2  4  5  5  2  1    0    1    0    1    0    0    0    0
## 721  8910  50  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 722  1118  26  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 723  8081  16  2  4  5  5  2  2    0    1    0    0    0    0    0    0
## 724  4621  21  2  4  6  3  2  1    0    1    0    1    0    0    0    0
## 725  2364  42  2  1  3  1  2  1    1    1    0    0    0    0    0    0
## 726  3415  70  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 727  7505  27  1  1  6  1  2  1    0    1    0    1    0    0    0    0
## 728    98  30  2  1  5  5  2  1    0    0    0    1    0    0    0    0
## 729  6264  24  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 730  7131  50  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 731   373  20  1  4  3  5  2  1    1    0    0    0    0    0    0    0
## 732  5864  38  2  4  5  1  1  2    0    1    0    0    0    0    0    0
## 733  6425  68  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 734  3417  16  2  4  2  3  2  2    0    1    0    0    0    0    0    0
## 735  3367  53  1  3  3  1  2  2    0    1    0    1    0    0    0    0
## 736  4315  27  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 737  2197  27  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 738  8480  55  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 739  2826  42  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 740  6816  40  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 741  3737  40  1  2  3  3  2  1    0    1    0    1    0    0    0    0
## 742  4762  40  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 743  3606  30  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 744  1055  30  2  4  3  1  2  1    0    1    0    0    0    0    0    0
## 745  9322  65  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 746  1799  58  1  3  2  1  1  1    0    1    0    0    0    0    0    0
## 747  6132  40  2  2  3  3  2  1    0    1    0    0    0    1    0    0
## 748  7166  24  1  1  2  1  2  1    1    0    0    0    0    0    0    0
## 749  5632  70  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 750  6807  36  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 751  1158  25  1  4  6  3  1  1    1    0    0    0    0    0    0    0
## 752  6449  67  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 753  4897  39  2  1  1  3  2  2    1    1    0    0    0    0    0    0
## 754  5130  27  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 755  7475  26  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 756  4205  42  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 757  4836  20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 758  8800  25  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 759  3073  23  2  1  3  2  2  2    0    0    0    0    0    0    0    0
## 760  6965  30  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 761  2527  21  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 762  7077  65  2  1  1  2  2  2    0    1    0    1    0    0    0    0
## 763  2552  24  2  1  5  5  2  1    0    1    0    0    0    0    0    0
## 764  4529  44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 765  6983  47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 766  4055  24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 767  7181  39  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 768   902  26  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 769  4350  24  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 770  2740  47  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 771  7621  48  1  1  3  1  1  1    0    0    1    1    0    0    0    0
## 772  4878  50  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 773  7518  35  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 774  7122  55  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 775  4199  31  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 776  4602  37  2  3  1  1  2  2    0    0    0    1    0    0    0    1
## 777  2013  35  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 778  5213  50  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 779  4848  43  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 780  8876  36  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 781  2895  40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 782    28  35  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 783  3964  23  2  4  6  5  2  2    0    0    1    0    0    0    0    0
## 784  3706  28  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 785  7762  47  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 786  7504  31  2  1  3  5  1  2    0    1    0    1    0    0    0    0
## 787  7280  29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 788  7849  22  1  1  3  3  2  1    0    1    1    0    0    0    0    0
## 789  5971  34  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 790  5291  20  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 791  8777  40  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 792  3485  25  2  1  7  5  2  1    1    1    0    0    0    0    0    0
## 793  7966  26  1  1  2  4  2  1    0    1    0    0    0    0    0    0
## 794  2888  36  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 795  3640  42  2  4  3  5  2  2    0    1    0    0    0    0    0    1
## 796  9136  56  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 797  1409  52  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 798  4480  18  1  4  3  3  1  1    0    1    0    1    0    0    0    0
## 799  4084  32  2  4  3  1  1  1    0    1    0    1    0    0    0    0
## 800  8505  45  1  1  3  1  2  1    1    0    0    0    0    0    0    0
## 801  7184  19  1  1  3  2  2  2    0    1    0    0    0    0    0    0
## 802  7835  50  1  1  2  1  2  2    0    1    0    0    0    0    0    1
## 803   583  35  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 804  1189  16  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 805  2636  20  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 806  3868  35  2  1  6  4  2  1    0    0    0    1    0    0    0    0
## 807  5635  80  2  3  2  1  1  1    0    0    0    0    0    0    0    0
## 808  1611  34  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 809  7418  17  1  4  3  3  1  2    0    0    0    0    0    0    0    0
## 810  6650  42  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 811  6327  38  2  2  6  5  2  1    0    1    0    0    0    0    0    0
## 812  4284  75  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 813  9296  48  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 814  6030  50  1  1  2  1  2  1    0    1    1    0    0    0    0    0
## 815  5068  70  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 816  2479  30  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 817  7718  28  1  1  6  3  2  2    0    1    0    1    0    0    0    0
## 818   997  51  1  3  5  1  2  2    0    1    0    0    0    0    0    0
## 819  8069  22  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 820  1554  45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 821   559  22  2  2  3  5  2  1    0    0    0    0    0    0    0    0
## 822  2757  18  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 823  3665  43  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 824   505  50  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 825  2464  82  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 826  2239  62  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 827  3663  20  2  4  5  3  2  1    0    0    0    0    0    0    0    0
## 828  8893  48  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 829  3204  48  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 830   694  21  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 831  4754  18  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 832  6090  43  1  1  6  1  2  1    0    1    1    0    0    0    0    0
## 833  4828  60  2  3  1  5  2  2    0    1    0    0    0    0    0    0
## 834  5616  28  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 835  4025  23  2  1  5  2  2  2    0    1    0    0    0    0    0    0
## 836  1425  33  2  1  3  5  1  1    0    0    1    0    0    0    0    0
## 837  4105  21  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 838  5764  39  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 839  5716  18  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 840  2383  39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 841  7281  43  2  3  2  1  2  2    0    0    0    0    0    0    1    0
## 842  1403  30  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 843  6966  45  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 844  4544  38  2  4  1  1  2  2    0    0    0    1    0    0    0    0
## 845  1253  69  2  3  1  2  2  2    0    0    0    0    0    0    0    0
## 846  4356  35  2  1  2  1  2  2    0    0    0    0    0    0    0    0
## 847  7427  34  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 848  9071  26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 849   475  25  2  4  6  5  2  1    0    0    0    1    0    0    0    0
## 850  7859  33  2  1  5  4  2  1    1    0    0    0    0    0    0    0
## 851  8804  27  2  1  2  1  1  2    0    1    0    1    0    0    0    0
## 852  5849  21  1  4  5  1  2  1    0    1    0    0    0    0    0    0
## 853  9129  24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 854   370  16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 855  3436  27  1  4  3  2  2  1    0    0    0    1    0    0    0    0
## 856   958  57  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 857  5229  17  2  4  1  2  2  2    0    1    0    0    0    0    0    0
## 858  3455  82  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 859  5460  25  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 860  3555  19  2  3  3  5  2  1    0    0    1    0    0    0    0    0
## 861  7753  26  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 862  2889  51  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 863  6945  25  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 864  3454  28  2  1  1  3  2  2    0    0    0    1    0    0    0    0
## 865  7869  32  1  1  3  4  2  1    0    0    1    0    0    0    0    0
## 866   763  16  2  4  3  5  2  2    1    0    0    0    0    0    0    0
## 867  4431  47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 868  4287  17  2  4  2  5  2  2    0    0    0    0    0    0    0    0
## 869  5934  27  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 870  7847  72  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 871  6468  39  2  2  3  3  2  1    0    1    0    1    0    0    0    0
## 872  2481  29  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 873  5252  42  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 874  8839  34  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 875  5817  65  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 876  5804  40  2  1  2  5  2  1    0    0    0    0    0    0    0    0
## 877  1255  40  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 878  6486  20  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 879  6926  30  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 880  5077  44  1  2  2  4  2  2    0    1    0    1    0    0    0    0
## 881  3218  40  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 882  7999  46  1  1  2  5  2  1    0    1    0    1    0    0    0    0
## 883  6397  49  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 884  8327  28  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 885  8609  70  1  3  1  1  2  2    0    1    0    1    0    0    0    0
## 886   179  27  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 887  4619  38  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 888  6566  22  1  4  3  5  2  1    0    1    0    1    0    0    0    0
## 889  9064  20  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 890  2126  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 891  7932  26  1  4  5  5  2  1    0    0    0    1    0    0    0    0
## 892  3201  17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 893  2148  32  1  1  7  6  1  1    1    0    0    0    0    0    0    0
## 894  2780  40  1  1  1  3  2  2    0    1    0    1    1    0    0    0
## 895  1764  47  1  3  3  1  2  1    0    1    0    0    0    0    0    0
## 896  1195  33  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 897  1979  41  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 898  6638  20  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 899  8476  26  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 900  2058  32  2  2  2  1  2  1    0    0    0    1    0    0    0    0
## 901  1932  66  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 902  6912  24  2  1  1  3  2  2    0    1    1    0    0    0    0    0
## 903  9048  29  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 904  3992  26  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 905  6794  54  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 906  7749  50  1  2  3  1  1  2    0    1    0    0    0    0    0    0
## 907  7047  50  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 908  7088  27  2  4  3  5  2  1    1    0    0    1    0    0    0    0
## 909  4940  60  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 910  8703  68  1  1  3  2  2  1    0    1    1    0    0    0    0    0
## 911  5458  78  1  2  3  1  2  2    0    1    0    0    0    0    0    0
## 912   274  21  2  4  6  5  2  1    1    1    0    0    0    0    0    0
## 913   848  23  2  2  2  5  2  1    0    0    1    0    0    0    0    0
## 914  6544  19  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 915  8870  28  1  1  1  3  1  2    0    1    0    1    0    0    0    0
## 916  4604  54  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 917  3400  25  1  1  2  1  1  2    0    1    0    1    0    0    0    0
## 918  7978  40  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 919  1324  21  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 920  8934  32  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 921  5227  30  2  1  1  2  2  2    0    1    0    1    0    0    0    0
## 922  2011  20  2  1  1  5  2  2    0    0    0    1    0    0    0    0
## 923  3361  58  1  3  6  1  2  1    0    0    1    0    0    0    0    0
## 924  5798  63  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 925  7368  85  2  2  1  2  2  1    0    1    0    0    0    0    0    0
## 926  7728  45  1  1  1  3  2  1    0    1    0    0    0    0    0    0
## 927  4383  76  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 928  5509  18  2  4  6  1  2  1    0    0    0    0    0    0    0    0
## 929  4464  22  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 930  6615  25  2  4  5  3  2  1    0    1    0    0    0    0    0    0
## 931  3824  40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 932  3337  19  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 933  7914  43  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 934  7589  23  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 935  4707  22  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 936  5156  51  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 937  6272  58  1  1  6  1  1  1    1    1    0    0    0    0    0    0
## 938  2450  45  1  1  1  1  1  2    0    1    0    1    0    0    0    0
## 939  2712  50  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 940   723  20  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 941  8045  78  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 942  1512  24  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 943  6062  38  1  1  6  4  2  1    0    1    0    1    0    0    0    0
## 944  5596  29  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 945  8098  39  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 946  1718  37  2  3  1  1  1  1    0    1    0    0    0    0    0    0
## 947  4488  25  2  1  6  5  2  1    0    1    0    0    0    0    0    0
## 948  6607  18  1  1  2  3  2  1    0    1    0    1    0    0    0    0
## 949  6562  43  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 950  9005  35  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 951  2393  27  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 952  7636  27  1  4  5  4  2  1    0    1    0    0    0    0    0    0
## 953  5338  50  1  3  3  1  2  2    0    1    0    0    0    0    0    0
## 954  3940  27  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 955  4685  30  2  1  6  5  2  1    0    1    0    1    0    0    0    0
## 956  9232  16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 957  7606  39  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 958  3710  46  2  1  1  4  2  1    0    0    0    1    0    0    0    0
## 959  2532  72  2  3  1  5  2  1    0    0    0    0    0    0    0    0
## 960  7225  35  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 961  2965  59  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 962  8666  73  2  3  2  1  1  1    0    1    0    0    0    0    0    0
## 963  8321  27  2  1  5  5  2  2    0    1    0    0    0    0    0    0
## 964   895  21  1  4  7  3  2  1    1    0    0    0    0    0    0    0
## 965  4302  80  2  3  1  5  2  2    0    1    0    0    0    0    0    0
## 966  7900  16  2  4  3  6  2  2    1    0    0    0    0    0    0    0
## 967  3897  36  2  1  3  5  1  2    0    0    0    1    0    0    0    0
## 968  6419  24  1  1  3  3  2  1    0    1    1    0    0    0    0    0
## 969  2575  63  1  1  2  1  2  1    0    0    0    0    0    0    0    0
## 970   750  26  1  1  3  4  1  1    1    0    0    0    0    0    0    0
## 971   576  49  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 972  1073  17  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 973  2003  75  2  3  3  1  2  1    0    0    0    0    0    0    0    0
## 974  1243  40  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 975   664  24  2  1  6  2  2  1    0    0    0    0    0    0    0    0
## 976  5228  31  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 977  2167  19  1  1  1  3  2  2    0    0    0    1    0    0    0    0
## 978  4496  16  2  4  5  5  2  1    0    1    0    0    0    0    0    0
## 979  5168  35  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 980   257  30  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 981  3942  49  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 982  4753  34  1  1  3  3  2  2    0    0    0    1    0    0    0    0
## 983  7407  37  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 984  5092  70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 985  3905  53  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 986  5662  65  2  2  3  1  2  1    0    1    0    0    0    0    0    1
## 987  9385  34  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 988  8668  48  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 989  5571  24  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 990  4825  60  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 991  1204  31  2  2  3  2  1  1    0    1    0    0    0    0    0    0
## 992  9023  19  2  4  6  3  2  1    0    0    0    1    0    0    0    0
## 993  8472  66  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 994  8961  45  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 995  7570  36  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 996  3954  59  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 997  7375  34  2  1  3  5  2  1    1    0    0    0    0    0    0    0
## 998  5564  41  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 999  8570  22  2  4  3  4  2  2    0    1    0    0    0    0    0    0
## 1000 2739  20  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1001 4079  44  2  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1002 7276  38  2  2  2  4  2  2    0    0    0    1    0    0    0    0
## 1003 1969  20  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 1004 9125  35  1  2  3  4  2  2    1    0    0    0    0    0    0    0
## 1005 1161  19  1  4  3  3  2  1    0    0    0    0    0    0    0    0
## 1006  969  20  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1007 8359  23  2  1  3  4  1  1    0    0    1    0    0    0    0    0
## 1008 6918  41  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1009 5660  28  1  4  6  1  2  1    0    1    0    0    0    0    0    0
## 1010 1821  32  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1011  887  45  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 1012 8508  40  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1013 7832  26  1  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1014 5215  28  2  1  3  4  2  2    0    1    1    1    0    0    0    0
## 1015  242  30  1  1  5  5  2  1    0    0    0    1    0    0    0    0
## 1016 5417  65  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 1017 1249  24  1  4  5  4  2  1    0    1    0    0    0    0    0    0
## 1018 1917  36  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1019 7388  18  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1020  868  29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1021 6701  68  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1022 5001  60  1  2  2  5  2  1    0    1    0    0    0    0    0    0
## 1023 5513  36  1  2  5  1  2  2    0    1    0    0    0    0    0    0
## 1024 8730  40  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 1025 1106  32  1  4  3  4  2  2    0    0    0    1    0    0    0    0
## 1026 2157  63  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1027 7953  54  2  1  1  3  2  2    0    1    1    0    0    0    0    0
## 1028 1050  25  1  2  6  4  1  1    0    1    0    0    0    0    0    0
## 1029 5484  33  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1030   10  42  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 1031 5217  24  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 1032 2561  19  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1033 6564  23  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 1034 5733  57  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1035 3981  30  1  1  5  4  1  1    0    1    0    0    0    0    0    0
## 1036 5240  58  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1037 6275  70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1038 5062  51  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1039 7857  30  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1040 4740  29  1  1  5  5  1  1    0    1    0    0    0    0    0    0
## 1041 3354  46  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1042 2334  36  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1043 6003  63  2  3  2  1  2  1    0    1    0    0    0    0    0    0
## 1044 7831  39  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 1045 7697  50  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1046 9031  27  2  2  2  4  2  1    0    0    1    0    0    0    0    0
## 1047 5362  61  2  1  2  5  2  2    0    1    0    0    0    0    0    0
## 1048 2161  24  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1049 7250  30  1  1  3  1  2  1    0    1    0    1    0    1    0    0
## 1050 7676  59  1  1  2  1  2  1    0    1    0    1    0    0    0    1
## 1051 4782  39  2  1  5  2  2  1    0    0    0    1    0    0    0    0
## 1052  921  49  1  1  5  4  2  1    0    1    0    0    0    0    0    0
## 1053 9112  80  2  3  1  1  2  2    0    0    0    1    1    0    0    0
## 1054 3536  69  1  3  8  1  2  1    0    0    0    1    0    0    0    0
## 1055 6915  81  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 1056 3796  50  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1057 8072  28  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1058 6996  64  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1059 1362  30  1  2  2  3  2  2    0    0    0    1    0    0    0    0
## 1060 5709  70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1061 2471  35  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1062 6134  20  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1063 3552  44  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1064 1215  40  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1065 6124  56  2  2  1  1  2  1    0    0    0    1    0    0    0    1
## 1066 6591  58  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1067 5739  29  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1068 4520  42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1069  871  16  2  4  3  3  1  2    0    0    0    0    0    0    0    0
## 1070 2314  36  1  1  3  4  2  1    0    1    0    1    0    0    0    0
## 1071 8515  47  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1072 7933  75  2  3  1  3  2  2    0    0    0    0    0    0    0    0
## 1073  383  35  1  1  1  4  2  1    0    0    0    1    0    0    0    0
## 1074  655  16  1  4  3  3  1  2    0    1    0    0    0    0    0    0
## 1075 8990  27  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1076 2825  43  2  2  2  1  1  2    0    1    0    0    0    0    0    0
## 1077 1840  33  1  4  6  5  2  1    1    0    0    0    0    0    0    0
## 1078 5926  34  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1079 2433  29  1  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1080 7648  27  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1081 5271  58  2  3  2  1  2  1    0    0    0    1    0    0    0    0
## 1082 1021  47  2  1  6  1  2  1    0    0    0    0    0    0    0    0
## 1083 9360  32  1  4  3  4  2  2    0    0    0    1    0    0    0    0
## 1084 3479  27  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1085 1646  35  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1086 4657  25  2  4  7  4  2  1    0    1    0    0    0    0    0    0
## 1087 8142  33  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1088 1787  17  1  4  3  4  2  1    0    0    0    0    0    0    0    0
## 1089 8026  41  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1090 6189  39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1091 1918  30  1  1  6  5  2  1    0    1    0    1    0    0    0    0
## 1092 8052  50  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1093 2835  26  1  3  3  5  2  1    0    1    0    1    0    0    0    0
## 1094 3085  68  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 1095 8095  28  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 1096 2320  23  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 1097 7557  37  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1098  659  30  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1099 2217  58  2  3  3  1  2  2    0    0    0    1    0    0    0    0
## 1100 9312  70  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1101 2748  30  2  3  2  1  2  1    0    1    0    1    0    0    0    0
## 1102 8420  21  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1103 4877  16  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 1104  594  24  1  1  6  3  2  1    1    0    0    0    0    0    0    0
## 1105 1122  23  1  4  6  4  2  1    0    1    0    1    0    0    0    0
## 1106 4273  40  2  3  2  1  2  2    0    0    0    0    0    0    0    1
## 1107 4717  50  2  1  3  5  1  2    0    0    0    0    0    0    0    0
## 1108 8157  26  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1109 7960  31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1110 3345  52  1  2  1  1  2  2    0    1    0    1    0    0    0    0
## 1111 9434  35  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1112 5231  40  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1113 3087  58  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1114  392  34  1  4  2  5  1  2    0    0    0    1    0    0    0    0
## 1115 2255  24  1  1  3  4  1  1    0    0    1    0    0    0    0    0
## 1116 2721  22  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1117 2138  22  2  1  1  4  2  2    0    1    0    1    0    0    0    0
## 1118 1159  42  2  3  2  4  2  2    0    1    0    0    0    0    0    0
## 1119 2827  34  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1120 7817  17  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 1121 7408  50  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1122 2789  30  1  1  1  5  1  1    1    0    0    0    0    0    0    0
## 1123  492  23  2  1  3  3  1  2    0    0    0    0    0    0    0    0
## 1124 4192  45  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1125 6708  62  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1126 5650  50  1  1  1  4  1  1    0    0    0    1    0    0    0    0
## 1127 2124  46  2  1  3  3  2  1    0    1    0    0    1    0    0    0
## 1128 7600  17  1  4  1  3  2  2    0    1    0    1    0    0    0    0
## 1129 3913  36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1130 1696  18  2  4  7  5  2  2    0    0    0    0    0    0    0    0
## 1131  554  17  2  4  3  5  2  1    1    0    0    0    0    0    0    0
## 1132 6745  65  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1133  798  70  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 1134  693  46  1  2  3  5  2  2    0    0    0    1    0    0    0    0
## 1135 6743  36  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1136  908  31  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 1137 4155  75  1  3  1  1  1  2    0    0    0    1    0    0    0    0
## 1138 8698  24  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1139 5695  63  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1140 3979  78  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1141 8260  37  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1142 5006  24  1  1  5  1  2  1    0    1    0    1    0    0    0    0
## 1143 6916  23  2  1  6  3  2  2    0    0    0    1    0    0    0    0
## 1144 4301  63  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1145 8937  38  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1146 7910  50  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1147  903  37  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 1148 8384  35  2  1  2  1  2  1    0    0    1    0    0    0    0    0
## 1149 4903  35  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1150 8022  44  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 1151 7442  23  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 1152 7132  21  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1153 9310  37  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1154 8533  33  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1155 8737  42  1  1  3  3  1  2    0    0    0    1    0    0    0    0
## 1156 6780  28  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1157 1914  17  1  4  2  1  2  2    0    0    0    0    0    0    0    0
## 1158 7825  26  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1159 1029  20  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1160 3140  26  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1161 2938  27  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1162 8901  45  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1163 6790  45  1  1  7  1  1  1    1    0    0    1    0    0    0    0
## 1164 8399  39  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1165 7436  40  2  1  1  2  2  1    0    1    0    0    0    0    0    1
## 1166 1598  19  2  1  2  5  2  2    0    0    1    0    0    0    0    0
## 1167 7562  27  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1168 8836  21  2  4  5  5  2  1    0    0    0    1    0    0    0    0
## 1169 9141  16  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1170  175  45  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1171 5956  20  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1172 5357  63  2  3  1  4  2  1    0    1    0    0    0    0    0    0
## 1173 3111  40  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 1174 2687  25  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 1175 9117  18  2  1  3  2  2  2    0    0    0    1    0    0    0    0
## 1176 7012  42  1  1  5  1  2  1    1    1    0    0    0    0    0    0
## 1177 2038  37  2  1  2  3  2  2    0    0    1    0    0    0    0    0
## 1178 7484  41  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1179 8856  22  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1180 2472  40  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1181 6636  96  2  3  1  5  2  2    0    0    0    0    0    0    0    0
## 1182 5689  46  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1183 7863  30  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1184 8167  20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1185  801  25  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1186 8921  28  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1187 6491  42  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1188 6851  32  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1189 6992  27  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 1190 2407  38  1  1  1  3  2  1    0    1    0    1    0    0    0    0
## 1191  359  56  1  3  3  2  2  1    0    1    0    0    0    0    0    0
## 1192 5871  44  1  2  2  5  2  1    0    1    0    0    0    0    0    0
## 1193 5361  60  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1194 6835  42  2  2  3  4  2  1    0    1    0    1    0    1    0    0
## 1195   91  26  2  1  5  1  2  1    0    0    0    0    0    0    0    0
## 1196 5988  59  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 1197 1575  24  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1198 4364  57  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1199 3029  55  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1200 8759  17  1  4  5  1  2  2    0    1    0    0    0    0    0    0
## 1201 8633  40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1202  736  26  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1203 9085  34  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1204 1446  36  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1205 3059  31  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1206 5604  20  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1207 1104  31  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1208 8439  22  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1209 1036  40  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1210 1922  24  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1211 9285  27  2  1  3  4  2  1    1    0    0    0    0    0    0    0
## 1212 3130  35  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1213 2009  62  2  3  1  5  1  2    0    0    0    0    0    0    0    0
## 1214 7163  26  2  1  6  1  2  2    0    1    0    0    0    0    0    0
## 1215 2696  25  2  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1216 2519  52  1  1  2  5  2  2    0    1    0    0    0    0    0    0
## 1217 3572  70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1218 5331  38  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1219 2529  44  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1220 2036  32  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1221 4469  29  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1222 7485  17  1  4  2  3  2  2    0    1    0    0    0    0    0    0
## 1223 6830  28  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1224 6179  72  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1225 6677  58  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1226 4859  41  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1227 5917  32  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1228 1807  51  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1229 5237  19  1  4  3  1  2  1    0    1    0    1    0    0    0    0
## 1230 5456  40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1231  845  45  1  1  3  5  2  1    1    0    0    0    0    0    0    0
## 1232 2262  31  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1233 4662  34  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1234 3761  27  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1235 6631  25  2  2  3  4  1  1    0    1    0    0    0    0    0    0
## 1236 1651  36  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1237 2724  20  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1238 7433  74  1  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1239  701  27  2  1  4  1  2  1    0    0    0    0    0    0    0    0
## 1240 8717  25  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1241 4036  56  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1242  901  25  2  1  1  3  2  2    0    0    0    1    0    0    0    0
## 1243 1378  29  2  1  5  3  2  1    0    0    0    0    0    0    0    0
## 1244 5435  25  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1245 3173  49  2  1  2  3  2  2    0    1    0    0    0    1    0    0
## 1246 3129  16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 1247 6459  54  2  1  3  5  2  1    1    0    0    0    1    0    0    0
## 1248 3083  50  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1249 7592  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1250 9392  34  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1251 1596  31  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1252 3741  45  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1253  512  17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1254 4030  54  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1255 7374  29  1  1  6  4  1  1    0    0    0    1    0    0    0    0
## 1256 2635  23  1  4  5  5  1  1    1    0    0    0    0    0    0    0
## 1257 8235  38  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1258  872  46  1  1  5  1  2  1    0    0    1    0    0    0    0    0
## 1259 1383  26  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1260 4440  23  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1261 3020  38  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1262 4510  34  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1263 3155  73  2  3  1  1  1  1    0    1    0    0    0    0    0    0
## 1264 3564  50  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1265 1291  17  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1266 1198  82  1  1  4  1  2  1    0    0    0    0    0    0    1    0
## 1267 3450  54  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1268 1958  51  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1269 5122  17  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1270 5983  53  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 1271  690  29  2  1  3  5  1  2    0    1    0    0    0    0    0    0
## 1272 5542  27  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1273 3977  38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1274 5383  49  2  3  3  3  2  2    0    1    0    0    0    0    0    1
## 1275 1831  23  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1276 5455  33  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1277 8583  50  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 1278 2269  70  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1279 7532  43  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1280 9200  32  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1281 7884  19  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1282  232  29  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 1283 7918  28  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1284 1770  55  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1285 1188  38  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1286 8473  76  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 1287 1907  27  2  1  6  5  1  1    0    1    0    0    0    0    0    0
## 1288 5586  28  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1289 1372  30  1  1  6  3  1  1    1    1    0    0    0    0    0    0
## 1290 8064  31  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1291 7321  46  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1292 3209  63  1  2  1  3  2  2    0    1    0    0    0    0    0    0
## 1293 2285  25  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1294   58  33  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1295   27  26  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1296 1155  28  1  1  5  1  2  1    0    0    1    0    0    0    0    0
## 1297 3773  51  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1298 8544  29  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1299 8291  38  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1300 2424  20  1  4  3  5  2  1    0    1    0    1    0    0    0    0
## 1301 8756  68  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1302 8524  43  2  1  4  1  2  1    0    1    0    0    0    0    0    0
## 1303 6384  21  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1304 2235  45  2  2  3  5  2  2    0    1    0    0    0    0    0    0
## 1305 5556  49  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1306 7809  48  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1307 5929  60  1  4  1  5  2  2    0    1    0    0    0    0    0    0
## 1308 7996  64  2  3  1  2  2  2    0    0    0    1    0    0    0    0
## 1309 5812  17  1  4  2  4  2  2    0    0    0    1    0    0    0    0
## 1310 1288  20  2  2  1  3  2  1    0    0    0    1    0    0    0    0
## 1311  125  28  2  4  7  5  2  1    0    0    0    0    0    0    0    0
## 1312  799  38  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1313 2042  21  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1314 9358  18  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1315    5  28  2  4  3  3  1  1    0    1    0    0    0    0    0    0
## 1316 2944  32  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 1317 8938  30  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 1318 4580  19  1  4  3  1  2  1    0    0    0    1    0    0    0    0
## 1319 5067  17  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1320 8943  49  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1321  972  65  2  2  3  2  2  2    0    1    0    0    0    0    0    0
## 1322 9302  30  1  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1323 3362  22  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1324 1780  27  2  4  2  3  2  2    0    0    0    1    0    0    0    0
## 1325  156  24  1  4  7  5  2  1    0    0    0    0    0    0    0    0
## 1326 1339  20  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1327 6635  36  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 1328 5208  45  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1329 5166  35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1330 3242  75  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1331 7507  28  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1332 8939  28  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 1333 5158  61  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1334 2914  26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1335 2021  56  1  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1336 2483  24  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1337 4731  36  2  1  3  5  1  1    0    1    0    0    0    1    0    0
## 1338  183  34  1  4  2  5  2  1    1    0    0    0    0    0    0    0
## 1339 1200  24  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1340 2872  63  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 1341 6155  37  1  1  1  5  2  1    0    1    0    1    0    0    0    0
## 1342 1293  33  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1343 7764  50  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1344 9093  67  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1345 4015  26  1  1  6  2  2  1    0    1    1    0    0    0    0    0
## 1346  792  21  2  4  3  4  2  1    0    0    0    0    0    0    0    0
## 1347 2972  30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1348 2421  52  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1349 3018  26  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1350 5573  40  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1351 1839  59  2  2  2  4  1  1    0    0    0    0    0    0    0    0
## 1352 5037  88  2  3  1  5  2  2    0    0    0    0    0    0    0    1
## 1353 5685  53  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 1354 5526  49  2  3  3  1  2  1    0    0    0    0    0    0    0    1
## 1355 7887  30  2  1  3  5  1  2    0    1    0    1    0    0    0    0
## 1356 7356  41  1  2  1  1  1  2    0    0    0    1    0    0    0    0
## 1357 2010  56  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 1358 7679  19  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 1359 2624  22  2  4  3  5  2  2    0    0    0    1    0    0    0    0
## 1360 4664  56  2  3  2  5  2  1    0    1    0    0    0    0    0    0
## 1361 5479  24  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1362  731  26  2  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1363 1033  24  2  2  3  5  2  1    0    1    0    1    0    0    0    0
## 1364 4629  65  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1365 6281  18  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 1366 1207  60  2  3  3  5  1  1    0    0    1    0    0    0    0    0
## 1367 3960  24  1  4  3  5  2  2    0    0    0    1    0    0    0    0
## 1368 7070  45  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1369 8464  26  2  1  3  4  1  2    0    0    0    1    0    0    0    0
## 1370 6814  22  2  1  6  3  2  2    0    1    1    1    0    0    0    0
## 1371  702  29  2  4  1  1  2  1    0    0    0    0    0    0    0    0
## 1372  865  36  1  1  3  5  1  1    0    0    1    0    0    0    0    0
## 1373 2699  22  1  4  3  1  2  1    0    1    0    1    0    0    0    0
## 1374 3561  71  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1375 8733  65  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 1376 8475  40  2  2  3  2  2  1    0    0    0    0    0    0    0    0
## 1377 1572  33  1  1  6  1  1  2    0    1    0    0    0    0    0    0
## 1378 5967  36  1  1  5  4  2  1    1    1    0    0    0    0    0    0
## 1379 6067  45  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1380 4410  32  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 1381 3226  33  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1382 4895  38  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1383 2402  28  1  4  3  3  2  1    0    1    1    0    0    0    0    0
## 1384 4378  31  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1385  374  22  1  4  3  3  2  1    1    0    0    0    0    0    0    0
## 1386 3707  40  2  1  3  5  2  1    0    0    1    0    0    0    0    0
## 1387 1618  19  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1388 4419  43  2  1  3  2  1  1    0    1    0    0    0    0    0    0
## 1389 4525  28  2  3  1  4  2  1    0    0    0    1    0    0    0    0
## 1390  423  17  1  4  4  3  2  1    0    0    0    1    0    0    0    0
## 1391 4075  29  1  1  6  4  2  2    0    1    0    1    0    0    0    0
## 1392 8911  83  1  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1393 1334  30  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1394 3800  42  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 1395 4171  18  2  4  2  4  2  1    0    0    0    1    0    0    0    0
## 1396 2509  16  1  4  3  3  2  2    0    0    0    1    0    0    0    0
## 1397 3491  46  1  1  3  1  2  1    1    1    0    0    0    0    0    0
## 1398 8043  48  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1399 6990  45  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1400 7551  30  2  1  3  2  2  1    0    0    1    0    0    0    0    0
## 1401 8985  27  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1402 6465  28  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1403 4810  45  2  1  3  3  1  2    0    0    0    1    0    0    0    0
## 1404 5164  42  1  1  7  1  2  1    1    0    0    0    0    0    0    0
## 1405 1678  70  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1406 9211  45  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 1407 7594  70  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1408 1295  26  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1409 1936  51  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1410 8584  52  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1411 3047  25  1  1  5  1  2  1    0    1    0    0    0    0    0    0
## 1412 8560  56  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1413 8492  22  2  1  1  2  2  2    0    0    0    0    0    0    0    0
## 1414 1781  19  1  4  2  5  2  1    0    1    0    1    0    0    0    0
## 1415 7801  58  1  1  2  4  2  1    0    1    0    0    0    0    0    0
## 1416 1965  60  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1417 2345  34  2  1  1  1  1  1    0    1    0    0    0    0    0    0
## 1418 5305  42  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1419 2797  43  2  2  1  1  2  2    0    0    0    1    0    0    0    0
## 1420 8161  49  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1421 6372  50  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1422 8807  71  2  3  1  1  2  2    0    1    0    1    0    0    0    1
## 1423 9396  58  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1424 8488  40  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1425  343  19  2  4  6  5  1  1    0    1    0    0    0    0    0    0
## 1426 3360  38  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1427 7056  60  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1428 3575  31  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1429 7935  43  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1430 8557  19  2  4  1  1  2  2    0    1    0    0    0    0    0    0
## 1431 4484  30  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 1432  348  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1433 2087  36  1  1  6  1  1  1    0    0    0    1    0    0    0    0
## 1434 1422  16  2  4  2  4  2  2    0    0    0    0    0    0    0    0
## 1435  767  60  2  2  2  5  1  2    0    0    0    0    0    0    0    0
## 1436 3298  63  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1437 4297  29  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1438 7848  25  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1439 5365  35  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1440 8881  65  1  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1441 2950  30  2  1  1  5  2  1    0    0    0    1    0    0    0    0
## 1442 4293  64  1  2  3  5  2  1    1    0    0    0    0    0    0    0
## 1443 8374  34  2  2  3  1  1  1    0    1    0    1    0    0    0    0
## 1444 4902  38  2  4  3  4  1  1    0    0    1    0    0    0    0    0
## 1445   92  44  1  1  2  1  2  1    0    0    0    0    0    0    0    0
## 1446 6403  38  2  1  1  3  2  2    0    1    0    1    0    0    0    1
## 1447 6233  36  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1448 6072  63  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1449 5748  40  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1450 2166  29  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1451 7851  28  2  1  3  3  2  2    0    0    0    0    0    0    0    1
## 1452 6818  43  1  1  7  5  2  1    1    1    0    0    0    0    0    0
## 1453 1495  30  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1454 7392  40  1  1  3  1  2  1    1    1    0    1    0    0    0    0
## 1455 7927  50  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1456 6379  55  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1457 9430  35  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1458 9425  23  1  1  5  4  2  1    0    1    1    0    0    0    0    0
## 1459 4655  33  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1460  105  55  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1461 8402  62  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1462 8625  38  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1463 6716  63  1  1  3  1  2  1    0    1    0    0    1    0    0    0
## 1464 9166  58  1  1  4  5  2  1    1    1    0    0    0    0    0    0
## 1465 7906  20  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 1466 5913  45  1  1  5  5  2  2    0    1    0    1    0    0    0    0
## 1467 7662  37  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1468 5862  20  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1469 6852  52  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1470 6859  47  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1471 4212  72  1  1  1  1  2  2    0    1    0    0    0    0    0    1
## 1472 8974  45  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1473 1332  43  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1474  375  23  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1475 8762  36  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 1476 3790  31  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1477 1392  36  2  4  3  4  2  1    0    1    0    1    0    0    0    0
## 1478 6064  48  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1479 1336  27  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1480 1553  58  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1481 3013  17  1  4  6  3  2  2    0    0    0    1    0    0    0    0
## 1482 1891  42  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1483 2787  23  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1484 4381  35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1485 1172  51  1  1  6  1  1  1    1    0    0    0    0    0    0    0
## 1486 4809  50  2  3  1  2  2  1    0    0    0    0    0    0    0    0
## 1487  555  22  2  2  1  5  2  1    0    0    0    0    0    0    0    0
## 1488 8519  23  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1489 5053  33  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 1490 2309  70  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1491 4393  48  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1492 6519  23  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1493  600  30  1  1  3  4  1  1    1    1    0    0    0    0    0    0
## 1494 6784  29  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1495 3591  52  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1496 9115  64  1  3  3  1  2  2    0    1    0    1    0    0    0    1
## 1497  279  23  2  2  6  4  2  1    0    0    1    0    0    0    0    0
## 1498 6571  25  2  4  3  4  2  2    0    0    1    0    0    0    0    0
## 1499 6373  21  1  1  5  3  2  1    0    0    0    1    0    0    0    0
## 1500 5029  41  1  1  7  1  2  1    1    1    1    0    0    1    0    0
## 1501 1943  44  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1502 7340  28  2  3  2  3  2  2    0    0    0    0    0    0    0    0
## 1503 3685  53  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 1504  961  83  1  3  2  1  2  2    0    0    0    0    1    0    0    0
## 1505 3751  49  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1506 6380  55  1  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1507 6861  48  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1508 5765  32  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1509 3849  69  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 1510 4577  25  1  1  5  5  2  2    0    1    0    1    0    0    0    0
## 1511 7614  35  2  1  3  3  2  1    0    1    1    0    0    0    0    0
## 1512 4627  70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1513 1487  22  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 1514 2816  35  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1515 8980  52  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1516 3331  20  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1517 4576  47  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1518 2319  44  2  1  3  5  1  2    0    0    0    0    0    0    0    0
## 1519  278  40  2  3  5  1  1  1    0    1    0    0    0    0    0    0
## 1520 3801  26  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1521 4115  36  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1522 7283  52  2  1  5  1  1  1    0    0    1    0    0    0    0    0
## 1523 5299  35  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 1524  957  35  1  1  3  1  2  1    0    1    1    1    0    0    0    0
## 1525 4013  39  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1526 5807  40  1  1  6  1  2  1    0    1    1    0    1    0    0    0
## 1527 4281  76  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1528 2522  60  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1529  164  23  1  4  7  4  2  1    0    0    0    0    0    0    0    0
## 1530 8448  63  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1531 5115  75  2  2  1  5  2  1    0    1    0    0    0    0    0    0
## 1532 9218  23  2  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1533 5592  22  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 1534 6530  22  1  4  3  4  2  1    0    1    0    1    0    0    0    0
## 1535 2821  26  1  1  3  4  2  2    0    1    0    0    0    0    0    0
## 1536 3768  34  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1537 3647  32  1  1  4  3  1  2    0    1    0    0    0    0    0    0
## 1538 8356  46  2  1  2  2  2  2    0    1    0    1    0    0    0    0
## 1539 7624  31  1  1  4  1  2  1    0    1    0    1    0    0    0    0
## 1540 2266  24  1  4  1  5  2  1    0    1    0    0    0    0    0    0
## 1541 1142  42  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1542 2678  24  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 1543 6577  16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1544 5751  59  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1545 4129  26  1  4  6  3  2  2    0    0    0    0    0    0    0    0
## 1546 6667  70  1  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1547 1898  34  2  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1548 5999  25  1  4  6  4  2  1    0    0    1    0    0    0    0    0
## 1549 2308  39  2  3  2  2  2  2    0    0    0    1    0    0    0    0
## 1550 1856  35  2  2  3  4  1  2    0    1    0    0    0    0    0    0
## 1551 6964  48  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1552 1103  21  1  4  6  5  2  1    0    1    0    1    0    0    0    0
## 1553 2286  16  1  4  2  3  2  1    0    1    0    1    0    0    0    0
## 1554  486  23  2  4  3  5  2  1    0    0    1    0    0    0    0    0
## 1555 7254  17  1  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1556 6335  30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1557 6227  26  2  4  6  5  2  2    0    1    0    0    0    0    0    0
## 1558 6974  39  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1559 2637  36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1560 2053  63  2  3  1  1  2  2    0    1    1    0    0    0    0    0
## 1561 9387  71  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1562 4483  52  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1563 3563  32  2  3  3  5  2  1    0    1    0    0    0    0    0    0
## 1564 2715  38  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1565 2125  45  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1566 2133  42  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1567 3730  47  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1568 6250  65  2  3  1  1  1  2    0    0    0    0    0    0    0    0
## 1569 4591  25  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1570 5315  26  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1571 2030  22  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1572 4329  47  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1573 2498  35  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1574 5942  42  2  2  1  5  2  1    0    0    0    1    0    0    0    0
## 1575 4190  47  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1576 6416  50  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1577 5218  52  1  2  2  1  1  2    0    1    0    0    0    0    0    0
## 1578 7174  19  1  4  6  1  2  1    0    0    0    1    0    0    0    0
## 1579 4523  23  1  4  3  3  1  1    0    1    0    0    0    0    0    0
## 1580 9176  75  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1581 3391  39  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1582 8550  45  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1583 4444  34  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1584 4472  27  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1585 3510  34  1  1  3  5  1  1    0    1    0    1    0    0    0    0
## 1586 3185  41  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1587 3377  22  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1588 7853  38  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1589  522  32  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1590 4463  60  1  3  2  1  2  1    0    1    0    0    0    0    0    0
## 1591 5560  38  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1592 2236  28  1  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1593 7471  35  2  1  6  5  1  1    0    1    0    0    0    0    0    0
## 1594 1110  18  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 1595 3651  28  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1596 6149  20  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1597 9133  60  2  3  3  1  2  1    0    0    0    1    0    0    0    0
## 1598 5924  23  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1599 7706  35  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1600 1584  26  1  1  6  5  2  1    0    0    1    0    0    0    0    0
## 1601 5717  24  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1602 9029  39  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 1603 6332  19  2  1  2  4  2  2    0    0    1    0    0    0    0    0
## 1604 7361  19  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1605 8050  32  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1606 1460  37  2  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1607  930  37  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1608  344  53  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 1609 8214  19  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1610  186  28  2  4  3  4  2  1    1    0    0    0    0    0    0    0
## 1611 1079  25  2  4  7  4  2  1    0    1    0    0    0    0    0    0
## 1612 8092  32  2  2  3  4  2  1    0    1    0    0    0    0    0    0
## 1613 7799  45  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1614 8758  17  1  1  1  5  2  1    0    0    0    1    0    0    0    0
## 1615 1181  32  2  1  3  1  2  1    0    1    1    0    0    0    0    0
## 1616 4161  31  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 1617  484  18  2  4  5  3  2  1    0    0    0    1    0    0    0    0
## 1618 4285  17  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1619 8299  38  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1620 8456  42  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1621 4938  42  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1622 6521  30  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1623 2759  86  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1624 8442  30  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1625 8667  35  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1626 6477  32  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1627 7744  45  2  3  2  1  2  2    0    0    0    1    0    0    0    0
## 1628 4328  26  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1629 7217  38  2  1  3  1  2  2    1    1    0    0    0    0    0    0
## 1630 1751  21  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1631 9417  28  1  1  1  4  2  2    0    0    0    1    0    0    0    0
## 1632  542  35  2  1  3  5  1  1    0    0    0    0    0    0    0    0
## 1633 4907  23  2  1  5  1  1  2    0    0    0    1    0    0    0    0
## 1634 5789  29  2  1  1  3  1  2    0    1    0    1    0    0    0    0
## 1635 6128  25  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1636 3493  40  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1637 8537  25  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1638 6195  70  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1639 1766  26  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1640  962  41  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1641 1736  29  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1642 6535  25  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1643  524  62  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 1644 2080  32  2  4  3  5  2  1    0    1    0    1    0    0    0    0
## 1645 8403  26  2  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1646 2836  16  2  3  2  3  2  2    0    1    0    1    0    0    0    0
## 1647 8002  26  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1648 4950  25  2  1  6  3  1  2    0    1    0    0    0    0    0    0
## 1649 1518  23  2  1  7  3  2  1    0    0    0    0    0    0    0    0
## 1650 7947  33  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1651 4182  52  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1652 4830  27  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1653 2618  73  2  3  1  3  2  1    0    0    1    0    0    0    0    0
## 1654 2247  26  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1655 1318  20  2  4  3  4  2  1    1    1    0    0    0    0    0    0
## 1656 1381  38  1  1  5  1  2  1    1    0    0    0    0    0    0    0
## 1657  586  25  1  1  7  5  2  1    0    0    0    0    0    0    0    0
## 1658 2977  26  2  1  6  4  2  1    0    1    0    0    0    0    0    0
## 1659 5823  39  1  1  2  5  2  1    0    1    0    1    0    0    0    0
## 1660 1435  40  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1661 4027  65  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1662 6236  20  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1663  672  47  1  1  3  5  1  1    0    1    0    1    0    0    0    0
## 1664 8704  40  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1665 9327  25  1  4  6  3  1  1    0    0    0    0    0    0    0    0
## 1666 8338  31  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1667  504  37  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1668 2625  19  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 1669 9421  65  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 1670 9411  59  1  1  1  1  1  1    0    0    0    1    0    0    0    0
## 1671 1322  18  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 1672  873  30  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1673  877  23  2  4  6  3  2  2    0    1    0    0    0    0    0    0
## 1674  134  24  1  1  3  4  2  1    1    0    0    0    0    0    0    0
## 1675 4486  45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1676 2941  53  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1677  830  29  2  1  3  4  1  1    0    1    0    0    0    0    0    0
## 1678  213  26  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1679 1163  21  1  4  5  3  2  1    0    0    1    0    0    0    0    0
## 1680 9344  34  1  1  3  1  2  2    0    0    1    0    0    0    0    0
## 1681  471  36  1  1  3  4  2  1    0    0    1    1    0    0    0    0
## 1682 1323  39  2  2  7  1  2  1    0    1    0    0    0    0    0    0
## 1683 8451  18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1684 2871  41  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1685 1329  34  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 1686 6258  45  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1687 8240  42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1688 4309  40  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1689 9337  32  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1690 3422  44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1691 8914  28  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1692 7057  80  2  3  1  1  1  2    0    1    0    0    0    0    0    1
## 1693  856  57  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 1694 7898  40  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1695 8017  40  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 1696  993  30  2  1  2  3  1  1    0    1    0    1    0    0    0    0
## 1697 1456  80  2  3  1  5  2  1    0    0    0    0    0    0    0    0
## 1698 8530  70  2  3  2  1  1  2    0    1    0    0    0    0    0    0
## 1699 8249  74  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1700 8784  30  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1701 4944  45  2  3  1  4  2  2    0    1    0    1    0    0    0    0
## 1702 6405  70  1  1  1  1  1  1    0    0    0    1    0    0    0    0
## 1703 7541  40  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 1704  333  40  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1705 2653  32  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1706 8042  36  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1707 7102  39  1  1  3  4  2  1    0    1    0    1    0    0    0    0
## 1708 3986  21  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1709 7607  58  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1710 5324  24  1  1  3  3  2  1    0    0    1    1    0    0    0    0
## 1711 4645  42  2  2  5  1  2  1    0    1    0    0    0    0    0    0
## 1712 3252  40  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1713 9067  68  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1714 3290  42  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1715 1090  17  2  1  2  5  2  2    0    0    0    0    0    0    0    0
## 1716 8200  50  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1717 5653  60  2  2  1  1  2  1    0    0    0    0    0    0    0    0
## 1718 7286  38  2  2  3  4  2  1    0    1    0    0    0    0    0    0
## 1719 4991  44  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1720 3637  51  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 1721 2843  42  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1722 6296  76  1  3  2  1  2  1    0    1    0    0    0    0    0    1
## 1723 4989  45  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1724   80  43  2  4  3  1  1  1    0    1    0    0    0    0    0    0
## 1725 6777  24  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1726 7391  78  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1727 4721  45  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1728 7938  17  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 1729 6753  73  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1730 4375  47  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 1731 8897  39  2  2  3  1  2  1    0    1    1    1    0    0    0    0
## 1732 3608  43  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1733 4608  35  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1734 7364  47  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1735 5754  22  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1736 1872  18  1  4  3  5  2  1    0    0    0    0    0    0    0    0
## 1737 6401  22  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1738 5727  46  2  4  2  5  2  2    0    1    0    0    0    0    0    0
## 1739 5087  49  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1740 9444  21  1  4  5  5  2  1    0    1    0    1    0    0    0    0
## 1741 3744  38  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 1742 2430  90  1  3  1  1  1  2    0    1    0    0    0    0    0    0
## 1743 4539  17  2  1  3  5  1  2    0    1    0    0    0    0    0    0
## 1744  214  28  2  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1745 5555  43  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1746  609  19  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1747 4509  27  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1748 5950  60  2  3  2  2  2  2    0    1    0    1    0    0    0    0
## 1749 3579  52  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1750 7235  37  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1751 7795  47  2  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1752 4807  20  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 1753 1098  16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1754 2122  26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1755 2601  32  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 1756 5675  25  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1757 3474  65  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1758 8728  69  2  3  1  1  1  2    0    1    0    0    0    0    0    0
## 1759 2837  17  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1760 5778  43  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1761 5886  80  2  3  2  5  2  2    0    0    0    0    0    0    0    0
## 1762 3743  23  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1763 1316  28  2  4  7  4  2  1    0    0    0    0    0    0    0    0
## 1764 6666  47  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1765 7059  31  1  1  5  5  2  1    0    1    0    0    0    0    0    0
## 1766 4020  20  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 1767  130  78  1  3  7  1  2  1    0    0    1    0    0    0    1    0
## 1768 4953  21  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1769 7757  17  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 1770  715  34  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1771   74  28  2  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1772 7376  30  1  2  6  1  2  1    1    0    0    0    0    0    0    0
## 1773 6864  25  2  1  2  1  2  1    0    0    0    0    0    0    0    0
## 1774 8111  20  2  1  1  5  2  2    0    1    0    0    0    0    0    0
## 1775 4556  18  2  1  2  5  2  2    0    0    0    0    0    0    0    0
## 1776  824  46  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1777 8669  40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1778 4370  25  2  1  5  3  2  2    0    0    1    0    0    0    0    0
## 1779 7014  28  1  1  3  4  2  1    0    0    0    1    0    0    0    0
## 1780 5614  55  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1781 8293  20  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 1782 7963  45  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1783 1214  58  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 1784 6582  27  2  1  5  5  2  1    0    1    0    1    0    0    0    0
## 1785 1667  48  2  3  3  1  2  1    0    0    1    0    0    0    0    0
## 1786 4312  47  2  4  3  1  2  2    0    1    0    0    0    0    0    0
## 1787 4426  20  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1788 5945  45  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1789 8421  52  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1790 9266  75  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1791 9118  57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1792  680  25  2  4  6  4  2  1    1    0    1    0    0    0    0    0
## 1793  368  66  2  3  1  1  2  1    0    0    0    0    0    0    0    0
## 1794 7320  38  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1795 4313  40  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1796 4513  29  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1797 6337  45  1  1  2  4  1  2    0    0    0    1    0    0    0    0
## 1798 8972  22  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1799 1180  67  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1800 6249  35  2  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1801 6968  38  2  3  6  1  1  2    0    1    0    0    0    0    0    0
## 1802 3789  77  1  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1803 9098  77  2  3  3  3  2  2    0    1    0    0    0    0    0    0
## 1804 7798  18  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1805 2419  52  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1806 9284  34  1  4  3  3  2  1    0    1    1    0    0    0    0    0
## 1807 8404  35  2  1  6  3  2  1    1    0    0    0    0    0    0    0
## 1808 4669  22  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1809 4983  18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1810 9217  19  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 1811  256  21  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1812 2876  28  2  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1813  986  75  1  1  1  1  2  1    0    0    0    0    0    0    0    0
## 1814 4541  59  2  1  1  1  1  1    0    1    0    0    0    0    0    0
## 1815 8802  40  2  2  3  1  1  2    0    0    0    0    0    0    0    0
## 1816 4746  48  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1817 4540  60  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1818 1956  70  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1819 7707  43  1  1  6  1  2  1    0    1    1    0    0    0    0    0
## 1820 2410  24  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1821  171  37  1  1  2  4  1  1    1    1    0    1    0    0    0    0
## 1822 4559  35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1823 4446  25  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1824 3884  32  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1825 2520  50  2  3  1  1  2  1    0    0    0    0    0    0    0    1
## 1826 8636  29  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1827 3980  17  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 1828 5411  32  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 1829 1900  27  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1830 6324  38  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1831 3174  45  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1832 1292  68  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1833  166  28  2  4  7  5  2  1    0    0    0    1    0    0    0    0
## 1834 2669  26  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1835 2845  39  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1836 9215  50  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1837 4786  34  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1838 7596  18  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1839 4750  22  2  1  5  3  2  1    0    1    0    0    0    0    0    0
## 1840 6363  80  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1841 5444  35  1  1  1  5  2  1    0    1    0    1    0    0    0    0
## 1842 1434  50  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1843  113  19  2  4  3  5  2  1    0    0    1    0    0    0    0    0
## 1844 2584  37  1  2  4  1  2  1    0    1    0    1    0    0    0    0
## 1845 6431  58  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1846 6407  34  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1847  569  22  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1848 8711  35  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 1849  526  50  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1850 4242  35  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1851 8525  24  2  4  7  1  2  1    0    0    0    0    0    0    0    0
## 1852 8585  50  1  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1853 3900  55  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1854 9189  26  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1855 5171  18  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1856 4948  37  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1857 5887  60  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1858  503  71  1  1  7  1  1  1    0    0    0    0    0    0    1    0
## 1859 8205  38  2  1  6  4  1  1    0    0    0    1    0    0    0    0
## 1860 7214  45  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1861 8743  60  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1862 8024  80  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1863 9008  28  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1864 5381  43  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1865 7053  38  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1866 1745  50  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1867 4700  60  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1868 1599  20  2  1  5  3  2  2    0    0    0    1    0    0    0    0
## 1869 3791  18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1870 3227  50  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1871 3107  25  1  2  5  3  1  1    0    0    0    1    0    0    0    0
## 1872 1715  29  2  1  1  3  1  2    0    1    0    0    0    0    0    0
## 1873 6161  38  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1874 8535  38  2  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1875 3859  20  2  4  5  3  2  1    0    0    0    1    0    0    0    0
## 1876 2957  22  1  2  3  3  2  2    0    1    0    1    0    0    0    0
## 1877 6208  38  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1878  776  40  2  3  3  5  2  2    0    0    0    1    0    0    0    0
## 1879 1441  52  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1880 2859  50  1  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1881 8720  46  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1882 2728  34  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1883 2723  36  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1884 6967  43  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1885  519  32  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1886  318  36  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1887 3498  52  1  1  7  5  1  1    1    1    0    0    0    0    0    0
## 1888 3352  19  2  4  1  1  2  1    0    0    0    0    0    0    0    0
## 1889 8521  23  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1890 6693  66  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1891 8945  92  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1892 5245  36  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1893 9292  25  2  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1894 4201  80  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1895 1603  40  1  1  2  1  1  2    0    1    1    1    0    0    0    0
## 1896 3931  58  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1897   65  30  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 1898 3487  35  1  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1899 6895  43  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1900  909  29  2  1  3  5  2  1    0    1    1    0    0    0    0    0
## 1901 7327  37  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1902 5367  24  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1903 3623  22  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1904 8797  58  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1905 1660  32  1  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1906 8367  59  2  3  3  1  1  1    0    0    1    0    0    0    0    0
## 1907 3723  20  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1908  596  19  2  4  1  5  2  1    0    0    0    1    0    0    0    0
## 1909 7556  32  2  2  3  1  1  2    0    1    0    1    0    0    0    0
## 1910  116  19  2  4  5  3  2  1    0    0    0    0    0    0    0    0
## 1911 3280  59  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1912 6317  32  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1913 5891  25  1  4  3  5  2  2    0    0    0    0    0    0    0    0
## 1914 1684  28  1  4  7  3  2  1    0    0    0    0    0    0    0    0
## 1915  633  65  2  1  1  1  2  2    0    1    0    0    0    0    0    1
## 1916 5779  46  2  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1917 4447  28  2  1  6  5  1  1    0    0    0    0    0    0    0    0
## 1918 5634  65  2  3  2  1  1  1    0    1    0    0    0    0    0    0
## 1919  613  26  1  1  6  3  2  1    0    1    1    1    0    0    0    0
## 1920 3658  41  2  1  3  5  2  1    1    0    0    1    0    0    0    0
## 1921 2094  25  1  4  4  3  2  1    1    1    0    0    0    0    0    0
## 1922  354  28  1  1  7  5  2  1    0    1    0    0    0    0    0    0
## 1923  301  20  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1924 4048  22  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1925 9272  24  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1926 5358  35  2  3  2  3  2  1    0    0    0    1    0    0    0    0
## 1927 9100  70  1  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1928 7496  40  1  1  3  1  2  2    0    0    1    0    0    0    0    0
## 1929 8622  57  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1930 5103  31  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1931 7855  55  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 1932 7784  29  1  1  7  4  2  1    1    1    0    0    0    0    0    0
## 1933 8919  78  1  1  6  2  1  1    0    1    0    1    0    0    0    0
## 1934 5180  38  2  1  1  5  2  2    0    0    0    1    0    0    0    0
## 1935 5889  26  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1936 7696  36  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 1937 5342  45  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1938 3056  28  2  2  3  4  2  2    0    0    0    1    0    0    0    0
## 1939 6446  35  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1940 4981  60  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1941 7687  45  2  3  3  5  2  2    0    0    0    0    0    0    0    0
## 1942 8651  21  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1943 5899  78  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1944 6455  44  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1945 8462  42  1  1  3  1  2  1    0    1    0    0    1    0    0    0
## 1946 8581  25  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1947 6927  28  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1948 6759  24  1  1  5  5  1  1    1    0    0    0    0    0    0    0
## 1949 7515  32  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1950 7654  28  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1951 6022  21  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1952  165  21  1  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1953 4899  45  2  3  3  3  2  2    0    1    0    1    0    0    0    0
## 1954 2108  25  2  1  3  3  1  1    0    0    0    0    0    0    0    0
## 1955 9178  74  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1956 2141  36  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1957 7426  25  2  1  3  2  2  2    0    0    0    0    0    0    0    0
## 1958 7604  23  2  2  3  5  2  1    0    1    0    1    0    0    0    0
## 1959 6269  55  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 1960 2812  24  2  1  6  1  1  1    0    0    1    0    0    0    0    0
## 1961 5933  28  2  1  5  3  2  2    0    0    0    0    0    0    0    0
## 1962 2736  24  2  4  3  3  2  1    0    0    1    0    0    0    0    0
## 1963 6913  74  1  1  3  1  2  1    0    1    0    0    0    0    0    1
## 1964 9156  19  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1965 8803  30  2  2  3  1  1  2    0    0    0    0    0    0    0    0
## 1966  339  17  1  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1967 3601  32  2  4  3  4  2  2    0    1    0    0    0    0    0    0
## 1968 4906  35  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1969 4067  35  1  4  5  1  2  1    0    0    0    1    0    0    0    0
## 1970 7819  70  1  2  1  1  2  1    0    0    0    0    0    0    0    0
## 1971 5226  19  2  4  2  3  2  1    0    0    0    0    0    0    0    0
## 1972 3472  24  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1973 1582  33  2  1  3  3  1  2    0    0    1    0    0    1    0    0
## 1974 5323  57  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1975 6438  20  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1976   18  41  2  1  2  5  2  1    0    0    0    0    0    0    0    0
## 1977 7943  38  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1978 7650  19  1  4  5  6  2  2    0    0    0    0    0    0    0    0
## 1979 3127  47  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1980 3061  29  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1981 4676  32  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 1982 6879  52  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1983 5354  31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1984 5800  70  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1985 2241  16  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1986 3135  34  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 1987 4527  25  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1988 3303  45  1  1  3  1  1  2    0    0    0    1    0    0    0    0
## 1989 4389  58  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1990 7704  30  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1991 5912  24  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1992 9241  57  2  2  3  4  1  1    0    0    0    1    0    0    0    0
## 1993 6977  35  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1994 6775  18  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1995  748  35  1  1  7  4  1  1    1    0    0    0    0    0    0    0
## 1996 5681  30  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 1997 4703  66  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 1998 8236  28  2  1  2  5  2  1    0    0    1    0    0    0    0    0
## 1999 5059  25  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2000 9263  30  2  1  2  4  2  1    0    0    0    0    0    1    0    0
## 2001 8871  31  1  1  3  3  1  2    0    1    0    0    0    0    0    0
## 2002 5998  52  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2003 8774  49  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2004 1128  35  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 2005 1592  26  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2006 1011  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 2007  742  35  2  3  6  1  2  1    0    1    0    0    0    0    0    0
## 2008 2088  43  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 2009 2253  25  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2010 6103  41  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2011 9258  28  2  1  3  5  2  1    0    0    1    0    0    0    0    0
## 2012 6871  43  2  3  3  3  2  1    0    0    0    1    0    0    0    0
## 2013 5246  27  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 2014 6808  36  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 2015 6326  46  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 2016 4159  37  2  2  3  2  2  1    0    1    0    0    0    0    0    0
## 2017 2906  34  1  1  1  1  2  2    1    0    0    0    0    0    0    0
## 2018 5267  36  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 2019 6539  23  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 2020 9319  20  1  4  3  1  2  2    0    0    0    1    0    0    0    0
## 2021 5242  39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2022 5421  40  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 2023 2468  31  2  1  7  5  2  1    1    0    0    1    0    0    0    0
## 2024   38  35  1  1  3  3  1  1    0    1    0    0    0    0    0    0
## 2025 6930  48  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 2026 3646  26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2027 1694  24  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2028 4218  22  2  1  5  3  2  2    0    0    0    0    0    0    0    0
## 2029 8423  26  1  4  3  3  2  2    0    1    0    1    0    0    0    0
## 2030 5260  22  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2031  146  60  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 2032 3405  35  2  2  3  4  1  1    0    0    0    1    0    0    0    0
## 2033 4279  47  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2034 7683  22  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2035  399  16  2  4  3  4  2  2    0    0    0    0    0    0    0    0
## 2036 7409  29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 2037 5355  38  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 2038 1437  30  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 2039 4574  33  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2040  263  28  2  1  6  4  2  1    0    1    0    1    0    0    0    0
## 2041 5197  25  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 2042 5606  27  2  1  1  5  1  2    0    1    0    0    0    0    0    0
## 2043   41  70  1  1  2  1  1  1    0    0    0    0    1    0    0    0
## 2044 5799  51  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2045 3259  21  2  4  6  3  2  1    0    1    0    0    0    0    0    0
## 2046  403  35  1  1  6  1  1  1    0    0    1    0    0    0    0    0
## 2047 5088  19  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 2048  308  23  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 2049 5239  73  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 2050 8063  45  2  2  3  1  2  2    0    1    0    0    0    0    0    1
## 2051 4812  63  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2052  476  56  1  3  3  4  2  1    1    0    0    0    0    0    0    0
## 2053 7824  75  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 2054 5910  18  1  4  5  3  2  1    0    1    0    0    0    0    0    0
## 2055 9081  55  1  1  3  2  2  1    0    1    0    1    0    0    0    0
## 2056 4998  32  2  4  6  4  2  1    0    0    0    1    0    0    0    0
## 2057 3451  20  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 2058 4111  19  2  1  5  2  2  1    0    1    1    0    0    0    0    0
## 2059 5478  73  2  3  3  1  2  1    0    0    0    0    0    0    1    0
## 2060 8133  39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2061 2609  62  1  1  1  4  2  1    0    0    1    0    0    0    0    0
## 2062  943  59  1  2  3  1  1  2    0    1    0    0    0    0    0    0
## 2063 2121  29  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 2064 5583  24  1  1  5  3  2  1    0    1    0    1    0    0    0    0
## 2065  109  34  2  1  7  3  1  1    0    1    0    1    1    0    0    0
## 2066 3268  20  2  4  5  4  2  1    0    1    0    0    0    0    0    0
## 2067 2591  65  2  3  2  3  2  2    0    0    0    0    0    0    0    1
## 2068 6068  20  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 2069 9318  37  2  2  3  1  2  1    0    0    1    0    0    0    0    0
## 2070 7191  31  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 2071 3865  30  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2072 9012  47  1  2  3  1  2  2    0    1    1    0    0    0    0    0
## 2073 4188  38  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 2074 4054  65  2  2  2  1  2  2    0    1    0    1    0    0    0    0
## 2075 2304  32  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 2076 4215  67  1  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2077 2257  42  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2078 4098  35  1  1  7  1  2  1    1    1    0    0    0    0    0    0
## 2079 2224  57  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 2080 3036  17  2  4  2  3  2  1    0    1    1    0    0    0    0    0
## 2081 8663  20  2  4  6  1  2  2    0    1    0    1    0    0    0    0
## 2082 6428  21  2  1  5  2  2  2    0    0    0    0    0    0    0    0
## 2083 3349  24  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 2084 3100  27  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 2085 4643  60  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 2086 1685  54  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2087 7137  24  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2088 8145  19  2  4  6  4  2  2    0    0    0    0    0    0    0    0
## 2089 3596  40  2  2  3  5  2  1    0    0    0    1    0    0    0    0
## 2090 7297  24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2091 7775  32  2  2  3  3  2  1    0    0    1    0    0    0    0    0
## 2092  642  40  1  1  1  4  1  1    0    0    1    0    0    0    0    0
## 2093 5075  66  1  1  1  2  1  1    0    1    0    0    0    0    0    0
## 2094 7790  64  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 2095 3302  36  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2096 3089  17  1  4  2  1  2  2    0    0    0    0    0    0    0    0
## 2097 6427  31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2098 8077  56  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2099 6102  19  1  4  3  3  2  2    0    0    0    1    0    0    0    0
## 2100 3282  47  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 2101 6054  84  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2102 4864  25  1  1  3  4  2  2    0    1    0    1    0    0    0    0
## 2103 7770  46  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 2104 1360  38  1  1  6  4  2  1    0    1    0    0    0    0    0    0
## 2105 1924  36  1  1  3  5  1  1    0    0    1    0    0    0    0    0
## 2106 5752  27  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2107 4789  65  2  3  2  1  2  1    0    1    0    0    0    0    0    0
## 2108 4516  48  1  1  3  1  2  2    0    1    1    0    0    0    0    0
## 2109 7923  35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2110 7895  88  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2111 4386  50  1  1  6  1  1  1    1    0    0    0    0    0    0    0
## 2112 6454  59  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2113 3095  54  2  3  3  1  2  2    0    1    0    1    0    0    0    1
## 2114 4972  18  2  1  2  3  1  1    0    0    0    0    0    0    0    0
## 2115 4835  44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2116  990  53  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2117 2076  26  1  1  3  2  2  1    0    1    0    1    0    0    0    0
## 2118 5973  20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2119 1001  36  2  1  6  1  2  1    1    0    1    0    0    0    0    0
## 2120 3364  23  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 2121 1273  49  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2122 6400  45  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2123 7095  28  2  2  6  5  2  2    0    1    0    1    0    0    0    0
## 2124 8136  16  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 2125 7085  38  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2126 1714  31  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 2127 4573  60  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2128 6045  43  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 2129 5116  22  2  1  5  4  2  1    0    1    0    1    0    0    0    0
## 2130 6203  70  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 2131 6027  23  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 2132 1717  30  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 2133 7463  50  2  1  2  5  2  2    0    0    0    1    0    0    0    0
## 2134 2779  21  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2135 5351  37  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2136 6043  20  1  4  3  3  2  1    0    0    1    1    0    0    0    0
## 2137 4230  20  2  2  2  3  2  2    0    1    0    1    0    0    0    0
## 2138 4555  22  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2139 4837  51  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2140 9414  55  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 2141 2293  23  2  1  6  2  2  1    0    1    0    0    0    0    0    0
## 2142  858  20  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2143 7241  32  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2144 1230  34  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2145 2089  38  2  3  3  1  1  1    0    1    0    0    0    0    0    0
## 2146 1562  28  1  4  7  5  2  1    1    0    0    0    0    0    0    0
## 2147 9281  27  1  2  5  5  2  1    0    1    0    0    0    0    0    0
## 2148  323  25  1  4  6  5  2  1    0    1    0    1    0    0    0    0
## 2149 6850  21  1  4  3  4  2  1    0    0    1    0    0    0    0    0
## 2150 1998  40  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2151 3581  64  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2152 1558  50  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2153 7161  26  2  4  1  5  2  1    0    1    0    1    0    0    0    0
## 2154 9366  20  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2155  119  64  2  1  7  5  2  1    0    1    0    0    0    0    1    0
## 2156 8114  28  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 2157 2665  35  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2158 2574  28  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2159 1427  27  2  3  5  3  2  1    0    0    1    0    0    0    0    0
## 2160  669  47  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 2161 8851  58  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2162 1420  25  1  4  7  5  2  1    0    1    0    0    0    0    0    0
## 2163 1482  21  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 2164 1408  26  2  1  6  4  1  1    1    0    0    0    0    0    0    0
## 2165 7897  62  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 2166 4135  25  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2167  413  28  2  4  6  4  1  1    0    1    0    0    0    0    0    0
## 2168 3548  25  2  2  5  4  2  1    0    0    1    0    0    0    0    0
## 2169 6724  59  1  1  2  1  1  2    0    0    0    1    0    0    0    0
## 2170 5089  58  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 2171 6594  41  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 2172 5837  35  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2173  326  21  1  4  6  5  2  1    0    0    0    0    0    0    0    0
## 2174 2782  20  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 2175 7228  33  1  1  6  4  1  1    1    0    0    0    0    0    0    0
## 2176  816  60  1  2  7  5  1  1    0    1    0    0    0    0    0    0
## 2177 8490  94  1  3  3  3  2  2    0    0    0    0    0    0    0    0
## 2178 7641  32  2  1  5  5  2  1    0    1    0    0    0    0    0    0
## 2179 4256  38  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2180 5894  28  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2181 2191  52  2  3  1  5  2  1    0    1    0    0    0    0    0    0
## 2182 7759  34  2  2  1  1  2  1    0    1    0    0    0    0    0    0
## 2183 2986  29  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 2184 6286  52  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2185 5220  56  1  3  1  1  2  2    0    1    0    1    0    0    0    0
## 2186 6013  19  2  1  3  3  1  2    0    1    0    1    0    0    0    0
## 2187 2265  46  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 2188  730  34  1  1  3  5  1  1    1    0    0    0    0    0    0    0
## 2189 7581  28  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 2190 2015  22  1  4  3  1  2  1    0    0    0    1    0    0    0    0
## 2191 4690  32  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 2192  111  35  2  2  3  4  2  1    0    1    0    0    0    0    0    0
## 2193 5665  48  1  3  3  1  2  2    0    1    0    0    0    0    0    0
## 2194 4415  35  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 2195 1986  40  1  2  3  1  2  2    0    0    0    1    0    0    0    0
## 2196 5016  48  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 2197 7652  54  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2198 7536  42  2  3  6  5  2  1    1    0    0    0    0    0    0    0
## 2199 4317  20  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 2200  449  54  1  1  4  1  2  1    1    0    0    0    0    0    0    0
## 2201 1216  56  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 2202 2336  59  2  2  7  5  2  1    1    1    0    0    0    0    0    0
## 2203   56  66  2  3  1  1  2  1    0    0    0    0    1    0    0    0
## 2204 1803  46  1  4  3  1  2  2    0    0    0    1    0    0    0    0
## 2205  779  25  2  1  5  5  2  1    0    0    0    0    0    0    0    0
## 2206 6207  35  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2207 6056  34  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 2208 4229  25  2  1  2  4  2  2    0    1    0    1    0    0    0    0
## 2209 1116  33  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2210 5392  35  2  2  2  4  2  1    0    0    0    1    0    0    0    0
## 2211 3694  29  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2212 6111  18  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 2213 9164  39  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 2214 6890  16  2  4  5  3  2  2    0    0    0    1    0    0    0    0
## 2215 7608  35  1  4  1  1  2  2    0    1    0    1    0    0    0    0
## 2216 5997  35  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2217 7242  46  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 2218 4748  26  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2219 6034  20  1  4  3  1  2  1    0    0    0    1    0    0    0    0
## 2220  329  40  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2221 2215  35  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2222 8956  35  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 2223  536  24  1  4  6  3  1  1    0    0    0    1    0    0    0    0
## 2224 8591  24  2  1  5  4  1  1    0    0    0    0    0    0    0    0
## 2225 3933  16  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2226 6083  39  1  1  3  1  2  1    0    1    0    1    0    1    0    0
## 2227 5205  21  1  1  1  5  1  1    0    0    0    1    0    0    0    0
## 2228 1825  20  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 2229 1361  40  1  4  7  5  2  1    0    1    0    0    0    0    0    0
## 2230 4898  38  1  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2231 6158  63  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 2232 3125  18  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 2233 7949  22  2  1  5  4  2  1    0    0    0    1    0    0    0    0
## 2234 3203  31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2235 9286  57  2  2  3  4  1  1    0    1    0    1    0    0    0    0
## 2236 3067  28  1  4  5  5  1  1    0    1    0    0    0    0    0    0
## 2237 6684  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 2238 1129  76  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 2239 8250  76  1  2  1  1  2  2    0    0    0    0    0    0    0    0
## 2240 3576  29  1  1  6  1  2  1    0    0    0    1    0    0    0    0
## 2241 7404  40  2  3  2  2  2  2    0    1    0    0    0    0    0    0
## 2242 1405  50  2  1  5  3  2  1    0    0    1    0    0    0    0    0
## 2243 6991  53  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 2244 8273  44  2  1  3  1  2  1    0    1    0    0    1    0    0    0
## 2245  681  50  2  2  1  1  2  2    0    0    0    0    0    0    0    0
## 2246 2960  75  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 2247  548  45  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 2248 8551  80  1  2  3  5  2  2    0    0    0    0    0    0    0    0
## 2249 3062  60  2  3  6  5  2  1    0    0    1    0    0    0    0    0
## 2250 4275  27  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 2251 8540  25  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2252 6122  22  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 2253  202  19  2  4  6  5  2  2    1    0    0    0    0    0    0    0
## 2254 1988  28  2  3  2  3  2  1    0    0    1    0    0    0    0    0
## 2255  627  50  1  1  6  5  1  1    1    0    0    0    0    0    0    0
## 2256 4031  39  2  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2257  562  37  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 2258 8917  42  2  4  6  4  1  1    1    0    0    0    0    0    0    0
## 2259 7314  18  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 2260 1424  23  2  4  3  5  2  1    0    0    0    0    0    0    0    0
## 2261 9090  30  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2262 6216  29  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2263 6112  74  1  1  3  2  2  1    0    1    0    0    0    0    0    0
## 2264 6580  42  2  2  2  1  1  1    0    1    0    1    0    0    0    0
## 2265  812  48  2  3  1  4  2  1    0    0    0    0    0    0    0    0
## 2266 8791  26  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2267  205  44  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 2268 5844  30  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 2269 8725  60  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 2270 6940  81  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2271 2800  60  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2272  607  33  2  2  1  3  2  1    0    0    0    1    0    0    0    0
## 2273 2287  30  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 2274 4504  24  1  4  3  5  2  1    0    1    0    1    0    0    0    0
## 2275 2496  34  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2276 4840  21  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 2277  248  43  2  2  3  1  2  2    0    0    0    0    1    0    0    0
## 2278 2097  46  2  3  2  4  2  1    0    1    0    0    0    0    0    0
## 2279 6537  82  2  3  1  3  2  2    0    0    0    0    0    0    0    0
## 2280 1774  38  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 2281 1467  31  2  1  1  3  2  2    0    0    0    1    0    0    0    0
## 2282 8119  32  2  2  1  5  2  1    0    1    0    0    0    0    0    0
## 2283  223  23  2  2  1  2  2  1    0    0    1    0    0    0    0    0
## 2284 4022  76  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2285 1072  16  2  4  2  3  2  2    0    0    0    1    0    0    0    0
## 2286 3629  60  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 2287  570  16  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 2288 5310  47  2  2  2  3  2  1    0    0    0    1    0    0    0    0
## 2289 3162  29  1  2  3  1  2  1    1    0    0    1    0    0    0    0
## 2290   71  24  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 2291 2558  21  2  4  3  5  2  2    0    1    0    1    0    0    0    0
## 2292 1746  62  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 2293 7634  39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2294 7572  47  2  1  6  3  2  1    0    1    0    1    0    0    0    0
## 2295 2918  30  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2296 7814  34  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2297 5295  41  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2298 3917  40  2  1  1  1  1  2    0    0    0    0    1    0    0    0
## 2299 6130  19  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 2300 9409  75  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2301 7569  65  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 2302 3713  17  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 2303 6747  36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2304 3638  22  1  1  5  5  2  1    0    1    0    1    0    0    0    0
## 2305 1003  20  1  4  6  5  2  1    0    0    0    0    0    0    0    0
## 2306 2457  43  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2307 5440  18  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 2308 4008  57  2  3  1  1  1  2    0    1    0    1    0    0    0    0
## 2309 6429  23  2  1  5  2  2  2    0    1    0    1    0    0    0    0
## 2310 5332  19  2  4  6  3  2  2    0    1    0    0    0    0    0    0
## 2311 4308  42  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2312 8147  18  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 2313 3426  19  1  4  5  3  2  1    0    1    0    1    0    0    0    0
## 2314 6285  33  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 2315 4335  45  2  1  1  3  2  2    0    1    0    1    0    0    0    1
## 2316 7925  38  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2317 7689  25  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2318 7830  58  2  4  6  5  1  1    1    0    0    0    0    0    0    0
## 2319 2369  30  1  1  6  1  2  1    0    0    0    1    0    0    0    0
## 2320 4314 100  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2321  665  61  2  3  3  1  1  1    0    0    0    0    0    0    0    0
## 2322 3516  40  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2323 9057  31  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 2324 2693  25  1  1  3  1  2  2    0    1    1    0    0    0    0    0
## 2325 4605  31  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2326  802  22  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 2327  707  38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2328 3549  36  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2329 8582  55  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2330 4470  74  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2331 9395  39  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 2332 8695  24  2  1  6  5  2  2    0    1    0    1    0    0    0    0
## 2333 3017  27  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 2334 9160  21  2  4  5  3  2  1    0    1    0    0    0    0    0    0
## 2335 5126  36  2  2  2  1  2  2    0    0    0    0    0    0    0    0
## 2336 4767  47  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 2337 7901  26  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 2338 1827  25  2  1  6  1  2  2    0    1    0    0    0    0    0    0
## 2339 9001  45  2  1  1  1  2  2    0    0    0    1    0    0    0    0
## 2340 2295  45  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2341  547  56  2  3  5  1  2  1    0    0    0    0    0    0    0    0
## 2342 8539  62  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2343 5033  69  2  3  1  5  2  2    0    0    0    0    0    0    0    0
## 2344 7231  26  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 2345 2858  36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2346 8857  31  2  1  2  4  1  2    0    0    0    0    0    0    0    0
## 2347 6810  58  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 2348  282  52  2  3  1  1  1  1    0    1    0    0    1    0    0    0
## 2349 2258  64  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 2350  247  34  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 2351 6404  42  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2352 4814  50  2  2  3  1  2  2    0    0    0    1    0    0    0    0
## 2353 7237  26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2354 6243  21  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2355 4394  34  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 2356 5874  40  2  1  3  1  1  2    0    1    0    1    0    0    0    0
## 2357 4438  46  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 2358  818  29  1  4  7  5  1  1    1    1    0    0    0    0    0    0
## 2359 8051  22  2  4  6  3  2  1    0    0    0    1    0    0    0    0
## 2360 9207  35  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2361 2178  40  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2362 4550  19  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 2363 3588  65  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 2364 5719  48  2  1  3  2  1  2    0    0    0    1    0    0    0    0
## 2365 1749  25  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2366  421  70  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 2367 5749  34  2  3  3  1  2  1    0    1    0    1    0    0    0    1
## 2368 1463  38  1  1  2  1  2  1    1    1    0    0    0    0    0    0
## 2369 4549  36  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2370   36  26  2  1  6  4  2  1    0    0    0    0    0    0    0    0
## 2371 8861  34  1  1  6  2  2  1    0    0    1    0    0    0    0    0
## 2372 5559  41  2  1  1  5  1  1    0    1    0    1    0    0    0    0
## 2373 1792  68  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 2374  488  33  2  1  7  4  1  1    1    0    0    0    0    0    0    0
## 2375 1012  23  2  1  6  4  2  1    0    0    0    0    0    0    0    0
## 2376  521  22  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 2377 3904  27  2  1  7  4  2  1    1    1    0    0    0    0    0    0
## 2378 9259  62  2  3  7  1  1  1    0    0    0    0    0    0    1    0
## 2379 9229  39  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2380 5369  23  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 2381 6543  48  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 2382 4401  25  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2383 2551  29  1  1  6  1  2  1    0    1    1    0    0    0    0    0
## 2384 8129  25  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 2385 1823  40  2  2  3  4  1  1    0    1    0    0    0    0    0    0
## 2386 4926  18  1  4  3  5  2  2    0    0    0    0    0    0    0    0
## 2387  176  29  2  1  7  5  2  1    1    0    0    0    0    0    0    0
## 2388 2260  22  2  1  6  3  2  1    0    0    0    0    0    0    0    0
## 2389 7677  55  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 2390 9204  52  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2391 8056  76  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 2392 8139  37  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 2393 9280  27  1  1  6  3  2  1    1    0    0    0    0    0    0    0
## 2394 3749  53  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 2395  735  24  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 2396 4014  50  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 2397 7528  63  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 2398 3065  16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 2399 4292  51  2  2  1  1  1  2    0    1    0    0    0    0    0    0
## 2400 7176  33  2  1  5  1  2  2    0    0    0    0    0    0    0    0
## 2401  228  26  2  4  6  5  1  1    1    0    0    0    0    0    0    0
## 2402 8409  54  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2403 3826  30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2404 8322  90  2  3  1  5  2  2    0    0    0    0    0    0    0    0
## 2405 8685  24  2  1  7  5  2  1    0    0    0    0    0    0    0    0
## 2406 5622  60  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 2407 7560  38  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2408 6550  67  2  1  2  1  2  2    0    0    0    0    0    0    0    0
## 2409 7197  30  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 2410 3397  51  2  1  3  1  1  1    0    0    0    1    0    0    0    0
## 2411 7107  32  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2412  889  41  2  3  2  3  2  1    0    0    1    0    0    0    0    0
## 2413 9273  37  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 2414 7510  35  2  3  3  1  1  1    0    1    0    1    0    0    0    0
## 2415 9047  45  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 2416 7700  58  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2417 7313  48  1  4  1  1  2  2    0    1    0    0    0    0    0    0
## 2418  628  28  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2419 8281  59  2  3  2  1  2  1    0    1    0    0    0    0    0    0
## 2420 5436  29  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2421 5346  19  2  1  2  5  2  2    0    0    0    1    0    0    0    0
## 2422 3340  29  1  1  1  3  2  1    0    1    0    0    0    0    0    0
## 2423 3434  23  1  4  7  3  2  1    0    1    0    0    0    0    0    0
## 2424 3396  60  1  2  3  2  1  1    0    0    0    1    0    0    0    0
## 2425 3755  30  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2426 7324  65  1  1  5  1  2  2    0    1    0    0    0    0    0    0
## 2427  940  18  1  4  6  3  1  2    0    0    0    1    0    0    0    0
## 2428  761  31  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2429 8452  21  1  4  3  3  2  2    0    1    0    1    0    0    0    0
## 2430 1466  16  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 2431 2073  44  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 2432 2856  30  2  1  2  4  2  2    0    1    0    1    0    0    0    0
## 2433 2078  66  2  1  3  3  2  1    0    0    0    0    0    0    1    0
## 2434  292  36  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 2435 5508  19  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 2436 1313  35  2  3  2  1  2  2    0    0    0    1    0    0    0    1
## 2437 4125  34  1  1  2  1  1  2    0    0    0    1    0    0    0    0
## 2438 7807  29  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 2439 2453  23  1  1  3  1  2  1    0    0    0    0    0    0    0    0
## 2440 1600  17  1  4  2  5  2  2    0    0    0    1    0    0    0    0
## 2441 5938  30  1  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2442 4240  39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2443 8712  56  1  1  3  1  1  1    1    0    0    0    0    0    0    0
## 2444 7172  17  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 2445  601  45  2  4  5  5  2  1    0    0    0    1    0    0    0    0
## 2446 7189  45  1  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2447 4742  45  1  1  4  1  2  1    0    1    0    1    0    0    0    0
## 2448 6574  30  1  4  5  3  2  1    1    1    0    1    0    0    0    0
## 2449 5923  25  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 2450 5721  58  1  1  5  3  2  1    0    1    0    0    0    0    0    0
## 2451  616  37  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2452 4612  30  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2453 7141  21  1  4  5  3  2  1    0    1    0    0    0    0    0    0
## 2454 7260  76  2  3  1  1  2  1    0    1    0    1    0    0    0    0
## 2455 7406  30  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2456 7007  33  1  4  3  3  2  2    0    0    0    0    0    0    0    0
## 2457 9362  23  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 2458 7022  42  2  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2459 5353  23  2  4  6  3  2  1    0    1    1    1    1    0    0    0
## 2460 8979  26  2  2  1  5  2  2    0    0    0    1    0    0    0    0
## 2461 4169  38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2462  443  76  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 2463 8153  28  2  2  1  1  2  2    0    0    0    1    0    0    0    0
## 2464  466  41  1  1  3  2  2  1    0    0    1    0    0    0    0    0
## 2465 5064  16  1  4  2  4  2  2    0    0    0    1    0    0    0    0
## 2466 4234  23  1  4  3  4  2  1    0    0    0    1    0    0    0    0
## 2467 1126  66  2  3  3  1  1  1    0    1    0    1    0    0    0    0
## 2468 6389  78  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2469 4518  36  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 2470 2562  29  1  1  5  1  2  1    0    1    0    1    0    0    0    0
## 2471  667  45  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2472 1186  25  2  1  5  1  1  1    0    1    0    0    0    0    0    0
## 2473 3821  26  2  4  1  5  2  1    1    1    0    0    0    0    0    0
## 2474 7797  64  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2475 6231  33  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 2476 6457  39  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 2477 3262  34  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2478 5784  64  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2479 4879  22  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2480 3891  63  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2481 5876  39  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 2482 9034  22  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2483 2254  32  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 2484 6194  35  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 2485 1113  33  2  1  2  5  2  2    0    0    0    0    0    0    0    0
## 2486 6624  57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2487  636  71  1  1  8  1  2  1    0    0    0    0    0    0    1    0
## 2488 8223  32  1  1  1  1  2  1    0    1    1    0    0    0    0    0
## 2489 2744  21  1  4  3  3  2  1    0    0    0    0    0    0    0    0
## 2490 6273  28  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2491 4913  23  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 2492 1400  58  2  3  3  1  2  2    0    0    0    1    0    0    0    0
## 2493 6963  62  2  3  1  1  1  2    0    0    0    0    0    0    0    0
## 2494 4515  27  2  4  6  1  2  1    0    1    0    0    0    0    0    0
## 2495 4699  52  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 2496 7264  85  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 2497 2154  57  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 2498  195  29  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 2499 6421  34  2  2  3  1  2  1    0    1    0    1    0    0    0    0
##      Q8_9 Q8_10 Q8_11 Q9 Q10 Q11 Q12 Q13 Q14 Q15 Q16 Q17 Q18 Q19
## 1       1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2       0     0     0  1  -1  -1   1   4   1   5   4   4   1   4
## 3       1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 4       0     0     0 -1  -1  -1   1   2   2  -1   4  -1   1   4
## 5       0     0     0 -1   1  -1   2  -1   1   1   1  -1   1   4
## 6       0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   1
## 7       0     0     0 -1   1  -1   1   5   1   3   1  -1   1   2
## 8       0     0     0 -1  -1   1   1   4   1   4   5   1   2   2
## 9       0     0     0 -1   1  -1   1   5   1   6   5  -1   1   1
## 10      1     0     0 -1   1  -1   1   3   1   4   5  -1   1   4
## 11      0     1     0 -1  -1  -1   1   6   1   6   1  -1   1   1
## 12      0     0     0 -1  -1  -1   1   4   1   5   1   1   1   4
## 13      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 14      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 15      1     0     0 -1  -1  -1   1   4   1   3   1  -1   1   1
## 16      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 17      0     1     0 -1  -1  -1   2  -1   1   5   1  -1   1   1
## 18      0     0     0 -1   7  -1   1   4   1   6   1  -1   1   1
## 19      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 20      0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   1
## 21      1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 22      0     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 23      0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 24      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 25      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 26      1     0     0 -1  -1   1   1   5   1   4   1  -1   1   1
## 27      0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   3
## 28      0     0     0  3  -1  -1   1   4   1   5   1  -1   1   1
## 29      0     0     0 -1  -1   5   1   6   1   2   5  -1   5   5
## 30      0     0     0 -1  10  -1   1   2   1   1   3  -1   5   5
## 31      0     0     0 -1   5  -1   1   3   2  -1   4  -1   1   4
## 32      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 33      0     0     0 -1   6  -1   1   3   1   4   1   4   1   1
## 34      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 35      0     0     0 -1   1  -1   1   2   2  -1   1  -1   4   4
## 36      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 37      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   1
## 38      0     0     0 -1  -1  -1   1   2   2  -1   1  -1   4   4
## 39      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 40      0     0     0 -1   4  -1   2  -1   1   4   1  -1   5   5
## 41      0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   3
## 42      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 43      0     0     0 -1   1  -1   1   4   1   3   3  -1   1   1
## 44      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 45      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 46      0     0     0  6  -1  -1   2  -1   2  -1   5  -1   1   4
## 47      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 48      0     0     0  2   1  -1   1   2   2  -1   4   4   1   2
## 49      1     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 50      0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 51      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 52      0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 53      1     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 54      0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 55      0     0     0 -1  -1  -1   2  -1   1   6   5  -1   1   2
## 56      0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   2
## 57      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 58      1     0     0 -1   3  -1   2  -1   1   5   1  -1   4   4
## 59      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 60      0     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   4
## 61      0     0     0 -1   6  -1   1   2   1   3   1  -1   1   4
## 62      1     0     0 -1  -1  -1   1   2   1   5   1   1   1   1
## 63      0     0     0  1  -1  -1   2  -1   2  -1   4   2   1   1
## 64      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 65      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 66      0     0     0 -1  -1   7   1   3   1   3   1   5   1   4
## 67      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 68      0     0     0 -1  -1   7   2  -1   2  -1   1   1   1   5
## 69      0     0     0 -1  -1  -1   2  -1   1   5   4  -1   2   2
## 70      1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 71      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 72      0     0     0  1   1  -1   2  -1   1   2   1   4   1   1
## 73      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 74      0     0     0 -1   1  -1   1   4   1   3   1  -1   1   3
## 75      0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 76      0     0     0 -1  -1  12   2  -1   1   3   5  -1   1   1
## 77      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 78      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 79      0     0     0 -1   6  -1   1   6   2  -1   1  -1   1   4
## 80      1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 81      1     0     0 -1   1  -1   1   3   2  -1   1  -1   1   1
## 82      0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 83      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 84      0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 85      0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 86      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 87      0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 88      0     0     0 -1   1  -1   1   3   1   2   4  -1   1   4
## 89      0     0     0  2  -1  -1   2  -1   2  -1   5   5   1   1
## 90      0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 91      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 92      0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 93      0     0     0 -1   7  -1   1   6   1   2   4   3   1   1
## 94      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 95      0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 96      0     0     0 -1   1  -1   1   3   1   1   5   3   1   3
## 97      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 98      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 99      0     0     0 -1   1  -1   1   6   1   6   5  -1   4   4
## 100     0     0     0 -1   1  -1   2  -1   1   3   4  -1   1   2
## 101     0     0     0 -1   1  -1   1   3   2  -1   4   5   1   1
## 102     0     0     0 -1   1  -1   1   2   1   2   5  -1   1   1
## 103     1     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   3
## 104     0     0     0  1  -1  -1   1   4   2  -1   4   5   1   1
## 105     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 106     0     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 107     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 108     0     0     0  3  -1  -1   1   2   2  -1   3  -1   1   4
## 109     0     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 110     0     0     0 -1  -1  -1   1   5   2  -1   1  -1   4   4
## 111     0     0     0 -1   1  -1   2  -1   1   3   3  -1   1   4
## 112     0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 113     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 114     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 115     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 116     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 117     1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 118     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 119     0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   1
## 120     0     1     0 -1  -1  -1   2  -1   1   5   5  -1   1   1
## 121     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 122     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 123     0     0     0 -1   6  -1   2  -1   2  -1   5  -1   1   4
## 124     0     0     0 -1  -1   5   1   2   2  -1   4   1   1   4
## 125     0     1     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 126     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 127     0     1     0 -1  -1  -1   1   3   1   3   4  -1   1   1
## 128     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 129     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 130     0     0     0 -1  -1   1   1   4   1   4   1  -1   1   1
## 131     0     0     0 -1   2  -1   1   3   2  -1   4  -1   1   4
## 132     0     0     0  1  -1  -1   1   5   1   2   5   5   1   4
## 133     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 134     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   4
## 135     0     0     0 -1   6  -1   2  -1   1   6   1  -1   1   4
## 136     0     0     0 -1   1  -1   2  -1   1   5   5  -1   4   4
## 137     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 138     0     0     0 -1   1   5   2  -1   1   4   1   1   1   1
## 139     0     0     0 -1   3  -1   1   3   2  -1   5  -1   1   1
## 140     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 141     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 142     0     0     0  2  -1  -1   1   3   1   3   4   4   1   1
## 143     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 144     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 145     1     0     0 -1  -1  -1   1   3   1   4   3   3   1   1
## 146     0     0     0 -1  -1  -1   1   5   2  -1   4   4   1   4
## 147     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 148     0     0     0 -1   6  -1   1   3   1   2   5   5   1   1
## 149     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 150     1     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 151     0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   4
## 152     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 153     0     0     0 -1   5  -1   1   2   1   3   3   4   1   1
## 154     0     0     0 -1  -1  -1   1   5   2  -1   1   1   2   2
## 155     0     0     0 -1  -1  -1   2  -1   1   4   1   1   1   5
## 156     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 157     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 158     0     1     0 -1  -1  -1   2  -1   2  -1   5  -1   1   1
## 159     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 160     0     0     0 -1  -1  -1   1   3   1   2   1   1   1   1
## 161     1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 162     0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   1
## 163     0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   5
## 164     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 165     0     0     0 -1   6  -1   1   3   2  -1   5  -1   1   1
## 166     0     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 167     0     0     0  2  -1  -1   1   4   1   6   5  -1   1   1
## 168     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 169     0     1     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 170     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 171     0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 172     1     0     0 -1   1  -1   1   6   1   3   1  -1   4   4
## 173     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 174     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 175     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 176     0     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 177     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 178     1     0     0 -1  -1  -1   1   5   2  -1   4  -1   1   4
## 179     0     0     0 -1  -1  -1   1   5   1   3   1  -1   2   4
## 180     1     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 181     0     0     0  2   1  -1   2  -1   2  -1   5   1   1   4
## 182     0     0     0 -1   1  -1   1   5   1   1   1   5   1   4
## 183     1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 184     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 185     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 186     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 187     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 188     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 189     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 190     0     0     0 -1   7  -1   1   2   1   3   4  -1   1   1
## 191     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 192     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   5   4
## 193     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 194     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 195     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 196     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 197     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 198     0     0     0 -1   5  -1   1   1   2  -1   1   1   1   1
## 199     0     0     0  2   6  -1   1   2   1   6   4   4   1   4
## 200     0     0     0 -1   1   5   2  -1   2  -1   1  -1   4   4
## 201     0     0     0 -1   2  -1   2  -1   1   5   1  -1   1   4
## 202     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 203     0     0     0 -1  -1   7   1   4   2  -1   5  -1   1   1
## 204     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 205     0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   5
## 206     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 207     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 208     0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   1
## 209     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 210     0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 211     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 212     0     0     0  1  -1  -1   1   3   2  -1   4   5   1   1
## 213     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 214     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 215     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   2
## 216     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 217     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 218     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 219     1     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 220     0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 221     0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 222     0     0     0 -1   1   5   2  -1   2  -1   1  -1   4   4
## 223     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 224     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 225     0     0     0 -1   3  -1   1   3   2  -1   1  -1   1   4
## 226     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 227     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 228     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 229     0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 230     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 231     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 232     0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 233     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 234     0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   4
## 235     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 236     0     0     0 -1   1   1   2  -1   2  -1   1  -1   1   1
## 237     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 238     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 239     0     0     0 -1  -1  -1   1   3   1   3   4   1   1   2
## 240     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 241     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 242     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 243     0     0     0 -1   1  -1   1   3   1   4   1  -1   1   3
## 244     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 245     0     0     0 -1  -1  -1   2  -1   2  -1   1   2   1   4
## 246     0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   2
## 247     0     0     0 -1  -1   1   1   5   1   4   5   4   4   4
## 248     0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 249     0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 250     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 251     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 252     0     0     0 -1   1  -1   1   4   1   4   1  -1   4   4
## 253     0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 254     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 255     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 256     0     0     0 -1   9  -1   2  -1   2  -1   1  -1   1   4
## 257     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 258     0     0     0 -1  -1  -1   1   4   1   4   1  -1   1   1
## 259     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 260     0     0     0 -1   1  -1   1   2   2  -1   1  -1   1   4
## 261     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 262     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 263     0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   1
## 264     0     0     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 265     0     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 266     1     0     0 -1  -1  -1   1   5   1   2   5  -1   1   4
## 267     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 268     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 269     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 270     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 271     0     0     0 -1   2  -1   2  -1   2  -1   1  -1   4   4
## 272     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 273     0     0     0  1  -1  -1   1   4   2  -1   3  -1   1   1
## 274     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 275     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   1
## 276     0     0     0 -1   1  -1   1   5   2  -1   5  -1   4   4
## 277     0     0     1 -1  -1  -1   1   3   1   3   4  -1   1   2
## 278     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 279     0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 280     0     0     0 -1   6  -1   1   1   1   3   3   3   1   3
## 281     0     0     0 -1   4   4   1   3   1   3   4   4   1   1
## 282     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 283     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 284     0     0     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 285     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 286     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 287     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 288     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 289     0     0     0 -1   1  -1   1   3   2  -1   4  -1   4   4
## 290     0     0     0  6  -1  -1   1   3   2  -1   1  -1   1   1
## 291     0     0     0 -1  -1  -1   1   3   2  -1   1   1   1   1
## 292     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 293     1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 294     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 295     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 296     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 297     0     0     0 -1  -1  -1   2  -1   1   5   4   1   1   4
## 298     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 299     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 300     1     0     0 -1  -1  -1   2  -1   2  -1   1   3   1   1
## 301     0     1     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 302     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 303     0     0     0  1   1  -1   1   2   2  -1   1  -1   1   1
## 304     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 305     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 306     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 307     0     0     0 -1   1  -1   1   4   1   6   1  -1   4   4
## 308     0     0     0 -1   8  -1   1   3   2  -1   1  -1   4   4
## 309     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 310     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 311     0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 312     1     0     0 -1  -1  -1   1   2   1   2   3   3   1   1
## 313     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 314     0     0     0 -1   6  -1   1   4   1   6   1   1   1   4
## 315     0     0     0 -1   1   4   1   2   1   3   1  -1   1   2
## 316     0     0     0 -1   1   7   1   3   1   6   4   4   1   1
## 317     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 318     0     0     0 -1   1  -1   2  -1   1   2   5  -1   4   4
## 319     0     0     0 -1  -1  -1   2  -1   2  -1   5   1   1   1
## 320     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 321     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   3
## 322     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 323     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 324     0     0     0  1   1  -1   1   3   2  -1   5  -1   1   1
## 325     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 326     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 327     0     0     0 -1  10  -1   1   4   2  -1   1   1   1   2
## 328     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 329     0     0     0 -1   6  -1   1   6   2  -1   1  -1   1   1
## 330     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 331     0     0     0 -1   6  -1   2  -1   1   2   3  -1   1   4
## 332     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 333     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   5
## 334     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 335     0     0     0 -1   1  -1   2  -1   1   3   4  -1   1   4
## 336     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   1
## 337     0     0     0  2  -1  -1   1   4   1   3   3   4   5   1
## 338     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 339     0     0     0 -1   1  -1   1   5   1   4   1  -1   1   2
## 340     0     0     0 -1  -1  -1   2  -1   2  -1   5   5   1   4
## 341     0     0     0 -1   1  -1   1   4   1   4   4  -1   1   2
## 342     0     0     0 -1   1  -1   1   2   1   3   5   4   1   1
## 343     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 344     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 345     0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 346     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 347     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 348     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 349     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 350     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 351     0     0     0 -1   1  -1   1   2   1   3   5  -1   1   4
## 352     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   3
## 353     0     0     0  6  -1  -1   1   2   1   2   5   5   1   1
## 354     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 355     0     0     0 -1  -1   7   1   3   1   2   1  -1   4   4
## 356     0     0     1 -1  -1  -1   1   2   1   2   4   4   1   4
## 357     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 358     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 359     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   4
## 360     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 361     1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 362     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 363     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 364     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 365     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 366     0     0     0 -1   8  -1   1   3   1   4   5   5   1   1
## 367     0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 368     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 369     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 370     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 371     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 372     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 373     0     1     0 -1  -1  -1   2  -1   1   2   5  -1   4   4
## 374     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 375     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 376     0     0     0 -1   7  -1   2  -1   1   3   1  -1   4   4
## 377     0     0     0  1  -1  -1   1   3   2  -1   1   1   1   2
## 378     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 379     0     0     0 -1  -1  -1   2  -1   1   6   1   1   1   1
## 380     0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   5
## 381     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 382     0     0     0 -1   1  -1   1   3   1   3   1  -1   1   1
## 383     0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   2
## 384     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 385     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 386     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 387     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 388     0     0     0 -1   4  -1   1   4   1   5   5  -1   1   4
## 389     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 390     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 391     1     0     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 392     0     0     0 -1   6  -1   1   5   2  -1   4   4   1   2
## 393     0     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 394     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 395     0     0     0 -1   8  -1   1   3   2  -1   1  -1   4   4
## 396     0     0     0  3  -1  -1   1   3   2  -1   1  -1   1   1
## 397     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 398     0     0     0 -1  -1   1   1   2   1   2   1   1   1   1
## 399     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 400     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 401     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 402     1     0     0 -1  -1  -1   2  -1   1   5   5  -1   1   4
## 403     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 404     0     0     0 -1  -1  -1   2  -1   1   2   5  -1   4   5
## 405     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 406     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 407     0     0     0 -1   2  -1   1   2   1   4   4  -1   1   1
## 408     0     0     0 -1   2  -1   1   5   2  -1   5  -1   1   4
## 409     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 410     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 411     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 412     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   5   5
## 413     1     0     0 -1  -1  -1   1   3   2  -1   3   3   1   1
## 414     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 415     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   4
## 416     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 417     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 418     0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 419     0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 420     0     0     0 -1  -1  -1   1   2   1   3   4   4   1   5
## 421     0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 422     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   2
## 423     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 424     0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 425     0     0     0 -1   8  -1   2  -1   1   2   1  -1   1   4
## 426     0     0     0 -1   1  -1   1   1   1   2   1  -1   1   4
## 427     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 428     0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 429     0     0     0 -1   4   5   1   4   1   2   4   4   1   2
## 430     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 431     0     0     0  1  -1  -1   2  -1   2  -1   1   1   1   1
## 432     0     0     0 -1   5  -1   2  -1   1   3   1  -1   1   2
## 433     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 434     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 435     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 436     0     0     0 -1   6  -1   2  -1   2  -1   4  -1   1   4
## 437     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 438     1     0     0 -1   6  -1   1   2   1   2   5   5   1   1
## 439     0     0     0 -1   1  -1   1   6   1   2   5  -1   1   1
## 440     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 441     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 442     0     0     0 -1   1   7   2  -1   2  -1   1  -1   1   4
## 443     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 444     1     0     0 -1  -1  -1   2  -1   1   2   1   4   1   4
## 445     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 446     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 447     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 448     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 449     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 450     0     0     0 -1  -1  -1   1   5   1   6   1  -1   1   4
## 451     0     0     0 -1   1  -1   1   4   1   2   1  -1   1   4
## 452     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 453     0     0     0 -1  -1  -1   2  -1   1   4   4  -1   1   2
## 454     0     0     0  2   1  -1   2  -1   2  -1   1  -1   1   4
## 455     0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 456     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 457     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 458     0     0     0 -1  -1  -1   2  -1   1   5   5  -1   4   4
## 459     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 460     0     0     0 -1   3  -1   1   1   1   6   1  -1   1   4
## 461     0     0     0 -1   1  12   1   3   1   3   1  -1   1   2
## 462     0     0     0 -1  -1   7   1   4   1   4   5  -1   1   1
## 463     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 464     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 465     1     0     0 -1   5  -1   2  -1   1   2   5  -1   1   4
## 466     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 467     0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 468     1     0     0 -1  -1  -1   1   3   1   1   5   5   1   4
## 469     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 470     0     0     0 -1   5  -1   1   6   1   5   5  -1   1   4
## 471     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 472     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 473     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 474     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 475     1     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 476     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 477     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 478     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 479     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 480     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 481     0     0     0 -1   6  -1   1   4   1   4   1  -1   1   1
## 482     0     0     0 -1  -1  -1   1   3   2  -1   4   4   1   1
## 483     0     0     0 -1   5  -1   2  -1   1   6   1  -1   1   4
## 484     0     0     0  2  -1  -1   1   3   1   3   4   4   1   1
## 485     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 486     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 487     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 488     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 489     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 490     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 491     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 492     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 493     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 494     0     0     0 -1   4  -1   2  -1   2  -1   4   4   1   1
## 495     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 496     0     0     0 -1  -1  -1   2  -1   1   4   4   1   1   1
## 497     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 498     0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   4
## 499     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 500     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 501     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 502     0     0     0 -1   5  -1   1   2   1   5   1  -1   1   4
## 503     1     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   5
## 504     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 505     0     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 506     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   1
## 507     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 508     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 509     0     0     0 -1  -1  -1   1   5   1   4   1  -1   1   1
## 510     0     0     0 -1   1  -1   1   4   1   4   3  -1   4   2
## 511     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 512     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 513     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 514     0     0     0  2  -1  -1   1   3   1   3   4  -1   1   1
## 515     0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 516     0     0     0 -1  -1  -1   1   3   2  -1   4  -1   1   2
## 517     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 518     1     0     0 -1  -1  -1   2  -1   1   5   5  -1   1   1
## 519     0     0     0 -1   4  -1   1   4   2  -1   5  -1   1   5
## 520     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 521     0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 522     0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 523     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 524     0     0     1 -1  -1  -1   1   6   1   4   4  -1   1   4
## 525     1     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 526     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 527     0     0     0 -1   4  -1   1   4   1   3   5  -1   1   4
## 528     0     0     0 -1  -1   3   1   3   2  -1   4   4   1   1
## 529     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 530     0     0     0 -1   9  -1   1   3   2  -1   5  -1   1   4
## 531     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 532     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 533     1     0     0 -1   1  -1   1   2   1   4   4  -1   1   4
## 534     0     0     0 -1   1  -1   1   4   1   4   1  -1   1   2
## 535     1     0     0 -1  -1  -1   1   4   2  -1   5   5   1   4
## 536     0     0     0 -1   1  -1   1   3   1   1   5  -1   1   1
## 537     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 538     0     0     0 -1   1  -1   2  -1   2  -1   5   5   1   4
## 539     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 540     0     0     0 -1   1  -1   1   4   1   5   1  -1   1   4
## 541     0     0     0  1  -1  -1   1   2   2  -1   4  -1   1   1
## 542     0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   1
## 543     0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 544     1     0     0  3  -1  -1   1   2   1   3   3   5   1   1
## 545     0     0     0 -1  -1  -1   1   5   2  -1   1   5   1   1
## 546     1     0     0 -1  -1  -1   2  -1   1   3   5  -1   2   4
## 547     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 548     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 549     0     1     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 550     0     0     0 -1   3  -1   1   3   1   5   1  -1   4   4
## 551     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 552     1     0     0 -1   4  -1   2  -1   1   2   4   4   4   4
## 553     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 554     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 555     1     0     0 -1  -1  -1   1   4   1   3   5  -1   1   4
## 556     0     0     0 -1  10  -1   1   5   1   3   5  -1   1   1
## 557     0     0     0 -1   6  -1   1   3   1   4   1   1   1   4
## 558     0     1     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 559     0     0     0 -1   1  -1   1   3   2  -1   5  -1   4   4
## 560     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 561     0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 562     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 563     1     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 564     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 565     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 566     0     0     0 -1   1  -1   1   5   2  -1   5  -1   1   4
## 567     0     0     0 -1   1  -1   2  -1   1   3   4  -1   4   4
## 568     0     0     0  1   1  -1   1   4   1   2   3   4   1   1
## 569     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 570     1     0     0 -1  -1  -1   1   3   1   4   1  -1   1   1
## 571     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 572     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 573     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 574     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 575     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 576     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 577     1     0     0 -1   1  -1   1   3   1   4   5  -1   1   2
## 578     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 579     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 580     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 581     0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 582     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 583     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 584     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 585     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 586     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 587     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 588     0     1     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 589     0     0     0 -1  -1   1   2  -1   1   6   1   4   1   4
## 590     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 591     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 592     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 593     1     0     0 -1  -1  -1   1   3   1   3   4   4   1   1
## 594     0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 595     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 596     1     0     0 -1  -1  -1   1   2   1   3   5  -1   1   4
## 597     0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 598     0     0     0 -1   1  -1   2  -1   1   5   4  -1   1   1
## 599     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 600     1     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 601     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 602     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 603     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 604     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 605     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 606     1     0     0 -1   7  -1   2  -1   2  -1   5  -1   1   4
## 607     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 608     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 609     0     1     0 -1  -1  -1   1   6   1   5   4  -1   1   4
## 610     0     0     0 -1   2  -1   1   3   1   3   5   4   1   1
## 611     0     0     0 -1  -1  -1   1   5   1   5   1  -1   1   4
## 612     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 613     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 614     0     0     0  2  -1  -1   1   2   2  -1   5  -1   1   1
## 615     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 616     0     0     0 -1   4  -1   1   3   2  -1   1  -1   1   2
## 617     0     0     0 -1   1  -1   1   3   1   4   1  -1   1   1
## 618     1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 619     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 620     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 621     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 622     1     0     0  2  -1  -1   1   2   2  -1   4  -1   1   1
## 623     0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 624     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 625     0     0     0  1  -1  -1   1   3   1   5   5   5   1   1
## 626     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   2
## 627     1     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 628     0     0     0  2  -1  -1   1   3   1   5   5   5   1   1
## 629     0     0     0 -1   6  -1   1   2   2  -1   3  -1   1   4
## 630     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 631     0     0     0 -1   1  -1   2  -1   1   4   4   4   1   2
## 632     0     0     0  2  -1  -1   1   1   2  -1   5   5   1   1
## 633     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 634     0     0     0  2  -1  -1   2  -1   2  -1   4  -1   1   4
## 635     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 636     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 637     0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 638     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 639     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 640     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 641     0     0     0  1  -1  -1   1   3   2  -1   1  -1   1   1
## 642     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 643     0     0     0 -1   1  -1   1   3   1   4   4  -1   1   1
## 644     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 645     1     0     0 -1   7   7   2  -1   2  -1   1  -1   1   4
## 646     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 647     0     0     0 -1   1  -1   2  -1   1   3   5   1   1   4
## 648     0     0     0 -1   1  -1   1   3   1   5   1  -1   1   4
## 649     0     0     0  1  -1  -1   1   3   1   6   4  -1   1   1
## 650     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 651     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 652     0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 653     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 654     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 655     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 656     1     0     0 -1   1  -1   2  -1   2  -1   4   4   4   4
## 657     0     1     0 -1  -1  -1   1   6   2  -1   3   1   1   1
## 658     0     0     0 -1   5  -1   1   6   1   4   1  -1   1   1
## 659     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 660     0     0     0 -1  -1  -1   1   4   1   6   5  -1   1   4
## 661     0     0     0 -1   1  -1   1   4   1   4   5   1   1   4
## 662     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 663     0     0     0 -1   1  -1   2  -1   1   6   4  -1   1   1
## 664     0     0     0 -1  -1   4   1   4   2  -1   1   1   1   2
## 665     0     0     0 -1   1  -1   2  -1   1   2   5  -1   4   4
## 666     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 667     0     0     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 668     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 669     0     0     0 -1  -1   4   2  -1   1   6   1  -1   4   4
## 670     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 671     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 672     0     0     0 -1   4  -1   2  -1   1   6   5  -1   1   4
## 673     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   4
## 674     0     0     0 -1   1  -1   2  -1   1   4   5   5   1   4
## 675     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 676     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 677     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 678     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 679     1     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 680     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 681     0     0     0  1  -1  -1   2  -1   2  -1   4   4   1   1
## 682     0     0     0 -1   1  -1   1   2   1   2   4   3   1   1
## 683     0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 684     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 685     0     0     0 -1   6  -1   1   3   2  -1   1  -1   1   4
## 686     0     0     0 -1   1  -1   2  -1   1   1   5  -1   1   4
## 687     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 688     0     0     0 -1  -1  -1   2  -1   1   5   4  -1   1   5
## 689     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 690     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 691     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 692     1     0     0 -1   6  -1   2  -1   1   6   1  -1   1   4
## 693     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 694     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 695     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 696     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   3
## 697     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 698     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 699     0     0     0 -1   1  -1   2  -1   1   3   4  -1   4   4
## 700     0     0     0 -1   1  -1   1   3   2  -1   1   1   1   4
## 701     0     0     0 -1  -1  -1   2  -1   1   6   5  -1   1   4
## 702     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   1
## 703     0     0     0  1   6  -1   2  -1   2  -1   5   1   1   1
## 704     0     0     0 -1  -1   4   2  -1   2  -1   1  -1   4   4
## 705     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 706     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 707     0     1     0 -1  -1  -1   1   4   2  -1   5  -1   4   4
## 708     1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 709     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 710     0     0     0 -1   6  -1   2  -1   1   3   1   1   1   1
## 711     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 712     1     0     0 -1  -1   1   1   3   1   3   1   1   1   1
## 713     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 714     0     0     0 -1   4  -1   2  -1   2  -1   1  -1   5   5
## 715     0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 716     1     0     0 -1   1  -1   1   6   1   3   5  -1   1   1
## 717     0     0     0 -1   1  -1   1   1   1   3   1  -1   1   2
## 718     0     0     0 -1   1  -1   1   3   2  -1   4   1   1   1
## 719     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 720     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   1
## 721     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 722     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 723     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 724     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 725     0     0     0  1   1  -1   1   2   1   2   3  -1   1   2
## 726     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 727     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 728     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   1
## 729     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 730     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 731     0     0     0  2  -1  -1   1   2   2  -1   1  -1   1   4
## 732     1     0     0 -1   6  -1   2  -1   1   3   1  -1   1   1
## 733     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 734     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 735     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 736     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 737     0     0     0  1  -1  -1   1   3   1   1   4   4   1   1
## 738     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 739     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 740     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 741     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 742     0     0     0 -1   5  -1   2  -1   1   2   5  -1   1   4
## 743     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 744     0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   4
## 745     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 746     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 747     1     0     0 -1   3  -1   1   2   1   5   5  -1   1   2
## 748     0     0     0  2  -1  -1   2  -1   1   5   3  -1   1   4
## 749     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 750     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 751     0     0     0  2  -1  -1   1   3   1   1   2  -1   1   1
## 752     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 753     0     0     0  6   1  -1   2  -1   1   3   1  -1   4   4
## 754     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 755     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   5
## 756     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 757     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 758     0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 759     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 760     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 761     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 762     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 763     0     0     0 -1   6  -1   1   4   1   5   1  -1   1   1
## 764     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 765     0     0     0 -1   6  -1   1   4   1   5   1  -1   1   4
## 766     1     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 767     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 768     0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   4
## 769     0     0     0 -1   1  -1   1   5   1   4   5  -1   1   1
## 770     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 771     0     0     0 -1  -1   5   1   5   1   5   4   4   1   2
## 772     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 773     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 774     0     0     0 -1  -1   5   2  -1   1   6   5   1   1   4
## 775     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 776     0     0     0 -1  -1  -1   1   3   2  -1   4  -1   4   4
## 777     0     0     0 -1  -1  -1   1   4   1   2   3   3   1   4
## 778     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 779     0     0     0 -1   1  -1   1   3   1   3   5  -1   1   4
## 780     0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 781     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 782     0     0     0 -1  -1   5   1   6   1   2   5   1   1   2
## 783     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   1
## 784     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 785     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 786     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 787     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 788     0     0     0 -1   1   7   1   5   2  -1   1  -1   1   4
## 789     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 790     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 791     0     0     0 -1   3  -1   2  -1   1   6   1  -1   2   4
## 792     0     0     0  1   3  -1   1   4   1   3   5   1   1   1
## 793     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 794     0     0     0 -1  -1  -1   1   1   1   1   2  -1   1   1
## 795     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   2   4
## 796     1     0     0 -1   1  -1   1   3   1   3   4  -1   1   4
## 797     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 798     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 799     0     0     0 -1   5  -1   2  -1   2  -1   5  -1   1   2
## 800     0     0     0  2  -1  -1   2  -1   2  -1   5  -1   1   4
## 801     0     0     0 -1   1  -1   1   3   1   6   1  -1   1   1
## 802     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 803     0     0     0 -1  -1   4   1   1   1   2   1  -1   1   4
## 804     1     0     0 -1  -1  -1   2  -1   1   2   4  -1   1   1
## 805     1     0     0 -1  -1  -1   1   5   1   3   4  -1   1   1
## 806     0     0     0 -1  -1  -1   1   4   1   2   3  -1   1   1
## 807     1     0     0 -1  -1  -1   2  -1   2  -1   4  -1   4   4
## 808     0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   4
## 809     0     1     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 810     0     0     0 -1   3  -1   2  -1   2  -1   5  -1   1   1
## 811     0     0     0 -1   4  -1   1   4   1   3   1  -1   1   1
## 812     0     0     0 -1   1  -1   2  -1   1   6   1  -1   2   2
## 813     0     0     0 -1   6  -1   2  -1   1   1   5   4   1   1
## 814     0     0     0 -1   1   7   2  -1   2  -1   1  -1   4   4
## 815     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 816     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 817     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 818     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   1
## 819     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 820     0     0     0 -1   3  -1   2  -1   1   6   4  -1   1   1
## 821     1     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   4
## 822     0     1     0 -1  -1  -1   1   3   1   2   5  -1   1   1
## 823     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 824     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 825     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 826     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 827     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 828     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 829     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 830     0     0     0 -1  -1  -1   1   3   2  -1   3  -1   1   4
## 831     0     1     0 -1  -1  -1   2  -1   1   4   1  -1   1   1
## 832     0     0     0 -1   6   5   1   2   1   5   1   4   1   1
## 833     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 834     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 835     0     0     0 -1   6  -1   1   4   2  -1   1  -1   1   1
## 836     0     0     0 -1  -1   1   2  -1   1   6   1  -1   2   4
## 837     0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 838     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 839     0     0     0 -1  -1  -1   1   3   1   6   5  -1   1   1
## 840     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 841     1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 842     0     0     0 -1   4  -1   1   3   1   3   4  -1   1   2
## 843     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 844     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 845     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 846     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 847     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   4
## 848     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 849     0     0     0 -1  -1  -1   1   2   2  -1   4  -1   1   4
## 850     1     0     0  1  -1  -1   1   3   1   3   1   1   1   1
## 851     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 852     0     0     0 -1  -1  -1   1   3   1   3   4   5   1   1
## 853     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 854     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 855     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 856     1     0     0 -1   1  -1   2  -1   1   1   3   5   1   4
## 857     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 858     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 859     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 860     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 861     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 862     0     0     0 -1   1  -1   1   6   1   5   1  -1   1   1
## 863     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 864     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 865     0     0     0 -1  -1  -1   1   3   1   4   4   4   1   2
## 866     0     0     0  6  -1  -1   2  -1   2  -1   1  -1   1   2
## 867     0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   2
## 868     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 869     0     0     0 -1   4  -1   2  -1   2  -1   1   1   4   4
## 870     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 871     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 872     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 873     0     0     0 -1   9  -1   1   6   2  -1   5  -1   1   2
## 874     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 875     1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 876     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 877     1     0     0 -1   1  -1   1   2   1   4   3  -1   1   1
## 878     0     0     0 -1   6  -1   2  -1   1   6   5  -1   1   4
## 879     0     0     0 -1   1  -1   1   5   2  -1   1  -1   4   4
## 880     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 881     0     0     0 -1  -1  -1   1   3   1   3   4  -1   1   4
## 882     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 883     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 884     1     0     0 -1   1  -1   1   5   1   5   4   4   1   4
## 885     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 886     0     0     0  2  -1  -1   2  -1   2  -1   1   1   1   1
## 887     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 888     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 889     0     0     0 -1   1  -1   1   6   1   2   4  -1   1   1
## 890     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 891     0     0     0 -1  -1  -1   1   4   1   3   5  -1   1   1
## 892     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 893     0     0     0  1  -1  -1   1   3   2  -1   1  -1   1   1
## 894     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 895     0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   1
## 896     0     0     0 -1   6  -1   2  -1   1   3   4   1   1   2
## 897     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 898     0     0     0 -1   3  -1   1   4   2  -1   1  -1   1   2
## 899     0     0     0 -1   5  -1   1   5   2  -1   1  -1   1   4
## 900     0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 901     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   1
## 902     0     0     0 -1   1   5   1   6   1   4   1  -1   1   4
## 903     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 904     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 905     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 906     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 907     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 908     1     0     0  6  -1  -1   1   6   1   6   5  -1   1   4
## 909     0     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 910     1     0     0 -1   1   1   2  -1   1   3   1  -1   1   4
## 911     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 912     1     0     0  2   1  -1   1   3   1   3   5   1   1   1
## 913     0     0     0 -1  -1   5   1   3   1   3   5  -1   1   4
## 914     1     0     0 -1  -1  -1   2  -1   1   5   1   5   1   4
## 915     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 916     0     0     0 -1   1  -1   2  -1   1   2   4  -1   1   4
## 917     0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 918     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 919     0     0     0  3  -1  -1   1   3   2  -1   5  -1   1   2
## 920     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 921     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 922     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 923     0     0     0 -1  -1   5   1   3   2  -1   1  -1   1   1
## 924     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 925     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 926     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 927     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 928     1     0     0 -1  -1  -1   1   5   1   4   1  -1   1   1
## 929     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 930     0     0     0 -1   5  -1   2  -1   1   3   1  -1   1   1
## 931     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 932     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 933     0     0     0 -1   1  -1   1   5   1   3   4  -1   1   4
## 934     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 935     0     0     0 -1   1  -1   1   5   1   6   1  -1   1   1
## 936     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 937     0     0     0  1   1  -1   1   5   1   6   5   5   1   1
## 938     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 939     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 940     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 941     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 942     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 943     0     0     0 -1   1  -1   1   4   1   3   4   4   1   1
## 944     0     0     0 -1   2  -1   1   5   2  -1   4  -1   1   4
## 945     0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 946     0     0     0 -1   2  -1   1   3   1   3   1   3   4   4
## 947     0     0     0 -1   5  -1   2  -1   1   3   5  -1   1   2
## 948     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 949     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   2   4
## 950     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 951     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 952     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   1
## 953     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 954     0     0     0 -1   1  -1   1   2   1   2   5   4   4   4
## 955     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 956     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 957     0     0     0 -1   1  -1   1   5   1   5   1  -1   1   2
## 958     0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 959     0     1     0 -1  -1  -1   2  -1   1   3   3  -1   4   4
## 960     0     0     0 -1   4   5   1   6   1   5   1  -1   1   4
## 961     1     0     0 -1  -1  -1   2  -1   2  -1   2   1   1   4
## 962     1     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 963     0     0     0 -1   1  -1   1   5   1   6   1  -1   1   4
## 964     0     0     0  2  -1  -1   1   1   1   4   3   3   1   1
## 965     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 966     1     0     0  6  -1  -1   1   2   2  -1   1  -1   1   1
## 967     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 968     0     0     0 -1   1   4   1   5   1   5   1  -1   1   4
## 969     1     0     0 -1  -1  -1   2  -1   1   3   4  -1   2   4
## 970     0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   4
## 971     1     0     0 -1   1  -1   1   4   1   3   3   4   1   2
## 972     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 973     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 974     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 975     0     1     0 -1  -1  -1   1   3   1   2   3   4   1   1
## 976     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 977     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 978     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 979     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 980     0     0     0 -1   6  -1   2  -1   2  -1   3   1   1   4
## 981     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 982     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 983     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 984     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 985     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 986     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 987     0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   1
## 988     0     0     0 -1  -1  -1   2  -1   1   5   1   1   1   4
## 989     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 990     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 991     0     0     0 -1   7  -1   1   4   1   4   5  -1   1   4
## 992     0     0     0 -1  -1  -1   1   3   1   2   4   4   1   1
## 993     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 994     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 995     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 996     0     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 997     0     0     0  2  -1  -1   1   3   2  -1   1  -1   1   4
## 998     1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 999     0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1000    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1001    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1002    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1003    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1004    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   4   4
## 1005    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1006    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1007    0     0     0 -1  -1   1   2  -1   1   2   1   5   1   4
## 1008    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1009    0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   1
## 1010    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1011    0     0     0 -1  -1  -1   1   4   1   5   4  -1   1   1
## 1012    0     0     0 -1   5  -1   1   6   1   6   1  -1   1   4
## 1013    0     0     0  6  -1  -1   2  -1   1   3   1   1   1   4
## 1014    0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 1015    0     0     0 -1  -1  -1   2  -1   1   5   3  -1   1   1
## 1016    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 1017    0     0     0 -1   6  -1   2  -1   1   4   4   5   1   1
## 1018    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1019    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1020    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1021    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1022    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1023    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 1024    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1025    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1026    0     0     0 -1   5  -1   2  -1   1   3   5   5   1   2
## 1027    0     0     0 -1   3   7   2  -1   2  -1   1  -1   4   4
## 1028    0     0     0 -1   6  -1   1   5   2  -1   4  -1   1   2
## 1029    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1030    0     0     0 -1  -1  -1   1   3   1   3   2  -1   1   4
## 1031    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1032    1     0     0 -1   9  -1   2  -1   2  -1   1  -1   1   2
## 1033    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1034    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1035    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   2
## 1036    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1037    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1038    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1039    1     0     0 -1   5  -1   1   2   2  -1   4   4   1   2
## 1040    0     0     0 -1   1  -1   1   6   1   6   4  -1   1   1
## 1041    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1042    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1043    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1044    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1045    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1046    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   4   4
## 1047    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1048    0     0     0 -1  -1  -1   1   2   1   3   1  -1   1   5
## 1049    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1050    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1051    0     0     0 -1  -1  -1   1   2   2  -1   4   4   1   4
## 1052    0     0     0 -1   8  -1   1   3   2  -1   1  -1   1   4
## 1053    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1054    0     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   1
## 1055    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1056    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1057    0     0     0 -1   1  -1   1   3   1   3   5  -1   1   3
## 1058    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1059    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1060    1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1061    0     0     0 -1   1  -1   1   4   1   2   5   1   1   2
## 1062    0     1     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 1063    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   1
## 1064    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1065    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1066    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 1067    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1068    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1069    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1070    0     0     0 -1   1  -1   1   6   1   6   4  -1   1   4
## 1071    0     0     0 -1   5  -1   1   4   1   3   5  -1   1   4
## 1072    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1073    0     0     0 -1  -1  -1   2  -1   2  -1   4   4   4   4
## 1074    0     0     0 -1   1  -1   1   2   1   5   1  -1   1   4
## 1075    1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 1076    0     0     0 -1   6  -1   1   3   2  -1   5  -1   2   4
## 1077    0     0     0  2  -1  -1   1   3   2  -1   5   5   1   1
## 1078    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1079    0     1     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 1080    0     1     0 -1  -1  -1   1   3   1   3   5  -1   1   4
## 1081    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1082    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1083    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1084    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1085    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1086    0     0     0 -1   6  -1   1   6   1   2   5  -1   1   1
## 1087    0     0     0 -1  -1  -1   1   4   1   4   1  -1   1   4
## 1088    1     0     0 -1  -1  -1   2  -1   1   2   5  -1   1   4
## 1089    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1090    0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 1091    0     0     0 -1   1  -1   1   4   1   1   3  -1   1   1
## 1092    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 1093    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1094    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1095    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1096    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   2
## 1097    0     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 1098    1     0     0 -1   7  -1   2  -1   2  -1   1   1   1   4
## 1099    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1100    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1101    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1102    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1103    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1104    0     0     0  2  -1  -1   1   6   1   5   4   4   1   1
## 1105    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   1
## 1106    0     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   1
## 1107    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1108    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1109    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1110    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1111    0     0     0 -1   4  -1   1   1   1   1   5  -1   1   4
## 1112    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1113    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1114    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1115    0     0     0 -1  -1   7   1   5   2  -1   5  -1   1   2
## 1116    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1117    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1118    1     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1119    0     0     0 -1  10  -1   2  -1   2  -1   1  -1   1   4
## 1120    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 1121    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1122    0     0     0  1  -1  -1   1   1   2  -1   5   1   1   1
## 1123    0     1     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1124    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1125    1     0     0 -1   1  -1   1   3   1   3   1  -1   1   1
## 1126    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1127    1     0     0 -1   6  -1   1   3   1   3   5  -1   1   1
## 1128    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   4
## 1129    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1130    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 1131    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   4
## 1132    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1133    0     0     0 -1   5  -1   2  -1   2  -1   1   1   4   4
## 1134    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1135    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1136    0     0     0  2  -1  -1   1   3   2  -1   5   4   1   1
## 1137    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1138    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1139    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1140    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   5
## 1141    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1142    0     0     0 -1   1  -1   1   5   1   3   1  -1   1   1
## 1143    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1144    0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 1145    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1146    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1147    0     0     0 -1   1  -1   2  -1   1   3   4   1   1   4
## 1148    0     0     0 -1  -1   5   1   5   2  -1   1  -1   4   4
## 1149    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1150    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1151    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   3
## 1152    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1153    0     0     0 -1   1  -1   1   4   1   3   3  -1   1   4
## 1154    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1155    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1156    1     0     0 -1  -1  -1   2  -1   1   2   4   4   1   1
## 1157    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1158    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1159    0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 1160    0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1161    1     0     0  2  -1  -1   1   6   1   2   3   4   1   1
## 1162    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1163    0     0     0  1  -1  -1   1   3   2  -1   1   1   1   1
## 1164    1     0     0 -1   5  -1   2  -1   1   3   4   1   1   4
## 1165    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1166    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1167    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1168    1     0     0 -1  -1  -1   1   6   1   3   1  -1   1   1
## 1169    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1170    0     0     0 -1   2  -1   1   5   1   2   2   2   1   1
## 1171    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1172    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1173    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1174    1     0     0 -1  -1  -1   1   5   1   5   4  -1   1   1
## 1175    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1176    0     0     0  1   1  -1   2  -1   2  -1   1  -1   5   5
## 1177    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   4   4
## 1178    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1179    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1180    0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 1181    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1182    0     0     0 -1   6  -1   2  -1   1   2   5  -1   1   4
## 1183    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1184    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   5   4
## 1185    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1186    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1187    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1188    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   1
## 1189    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1190    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1191    0     0     0 -1   7  -1   1   4   1   2   4   4   1   2
## 1192    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1193    1     0     0 -1   1  -1   2  -1   1   2   1   1   5   4
## 1194    0     0     0 -1   1  -1   1   5   1   2   1  -1   1   2
## 1195    1     0     0 -1  -1  -1   1   3   1   4   3   1   1   1
## 1196    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   2   4
## 1197    0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   4
## 1198    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 1199    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1200    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1201    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1202    0     0     0 -1   8  -1   2  -1   2  -1   1   1   4   4
## 1203    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   2
## 1204    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1205    0     0     0 -1  -1  -1   1   4   2  -1   5   1   1   1
## 1206    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1207    0     0     0 -1   6  -1   2  -1   2  -1   5   3   1   4
## 1208    0     0     0 -1   2  -1   2  -1   2  -1   1  -1   1   4
## 1209    1     0     0 -1   6  -1   1   6   2  -1   1  -1   2   4
## 1210    0     0     0 -1   6  -1   1   3   1   3   5  -1   1   2
## 1211    1     0     0  2  -1  -1   1   3   2  -1   5  -1   1   4
## 1212    0     0     0 -1   1  -1   2  -1   1   3   5  -1   2   4
## 1213    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1214    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1215    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 1216    0     0     0 -1   7  -1   2  -1   2  -1   5  -1   1   2
## 1217    1     0     0 -1   1  -1   2  -1   1   4   1  -1   2   2
## 1218    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 1219    0     0     0 -1   1  -1   2  -1   2  -1   3   4   1   4
## 1220    0     0     0 -1  -1  -1   2  -1   1   6   5   1   1   4
## 1221    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1222    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1223    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   2
## 1224    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1225    0     1     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1226    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1227    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1228    0     0     0 -1  -1  -1   1   4   1   3   1  -1   1   1
## 1229    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1230    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1231    0     0     0  1  -1  -1   1   4   2  -1   5   1   1   4
## 1232    1     0     0 -1   9  -1   2  -1   2  -1   1  -1   4   4
## 1233    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1234    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1235    0     0     0 -1   5  -1   1   5   1   1   5   5   1   4
## 1236    0     1     0 -1  -1  -1   1   6   2  -1   5   4   1   4
## 1237    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1238    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1239    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 1240    0     0     0 -1  -1  -1   1   4   1   4   5   5   1   1
## 1241    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 1242    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1243    0     1     0 -1  -1  -1   2  -1   1   6   5   4   1   1
## 1244    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1245    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1246    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1247    0     0     0  1  -1  -1   1   4   1   4   1  -1   1   1
## 1248    0     0     0 -1   1  -1   1   6   1   3   4   4   1   4
## 1249    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1250    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1251    0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 1252    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1253    0     1     0 -1  -1  -1   2  -1   1   4   5  -1   1   1
## 1254    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 1255    0     0     0 -1  -1  -1   1   5   1   3   5  -1   1   1
## 1256    0     0     0  6  -1  -1   1   3   2  -1   5   5   1   2
## 1257    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1258    0     0     0 -1  -1   4   2  -1   2  -1   1   1   1   1
## 1259    0     0     0  2  -1  -1   1   5   2  -1   1   1   1   2
## 1260    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   2
## 1261    0     0     0 -1  -1  -1   2  -1   2  -1   5   1   1   1
## 1262    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   1
## 1263    0     0     0 -1   1  -1   2  -1   1   5   3  -1   4   4
## 1264    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1265    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1266    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1267    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1268    0     0     0 -1   1  -1   1   4   1   2   1  -1   1   4
## 1269    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 1270    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1271    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1272    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1273    0     0     0 -1   1  -1   1   5   1   3   1  -1   1   2
## 1274    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   5
## 1275    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 1276    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1277    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1278    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1279    0     0     0 -1   1  -1   1   4   1   2   4   3   1   1
## 1280    0     0     0 -1   1  -1   2  -1   2  -1   1   5   1   4
## 1281    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1282    0     0     0  2  -1  -1   1   4   1   5   4   4   1   1
## 1283    1     0     0 -1   1  -1   1   6   1   3   4  -1   1   4
## 1284    0     0     0 -1   1  -1   1   6   1   4   1  -1   1   4
## 1285    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1286    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1287    0     0     0 -1   1  -1   2  -1   1   1   5   4   1   1
## 1288    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1289    0     0     0  2   2  -1   1   1   1   5   5   4   1   1
## 1290    1     0     0 -1   1  -1   2  -1   1   1   1  -1   4   4
## 1291    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1292    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1293    0     0     0 -1   1  -1   1   5   1   5   1  -1   1   4
## 1294    0     0     0 -1  10  -1   1   4   2  -1   3   1   1   4
## 1295    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1296    0     0     0 -1  -1   4   2  -1   1   4   1  -1   1   2
## 1297    0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 1298    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 1299    0     0     0 -1   3  -1   1   6   1   2   1   4   1   4
## 1300    0     0     0 -1   1  -1   1   3   1   5   1  -1   1   1
## 1301    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1302    0     0     0 -1   6  -1   1   3   2  -1   5   5   1   1
## 1303    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1304    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1305    0     0     0 -1   6  -1   1   5   1   3   5   5   1   4
## 1306    0     0     0  2  -1  -1   1   2   1   2   4   4   1   1
## 1307    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1308    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1309    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1310    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1311    1     0     0 -1  -1  -1   2  -1   1   3   1   1   1   1
## 1312    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1313    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1314    1     0     0 -1  -1  -1   1   4   1   3   1  -1   1   4
## 1315    0     0     0 -1   1  -1   1   2   1   3   1   1   1   4
## 1316    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 1317    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1318    0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 1319    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1320    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1321    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1322    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1323    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1324    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1325    1     0     0 -1  -1  -1   1   3   2  -1   3   5   1   1
## 1326    0     0     0  1  -1  -1   1   4   2  -1   4   1   2   1
## 1327    0     0     0 -1  -1   4   2  -1   1   3   1   4   1   4
## 1328    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1329    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 1330    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1331    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1332    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1333    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1334    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1335    0     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   4
## 1336    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1337    1     0     0 -1   6  -1   1   3   1   3   5   5   1   2
## 1338    0     0     0  2  -1  -1   1   2   2  -1   4  -1   4   4
## 1339    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1340    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1341    0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 1342    1     0     0 -1  -1  -1   1   3   1   3   4  -1   1   4
## 1343    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1344    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1345    0     0     0 -1   6   4   1   3   2  -1   1   5   1   1
## 1346    1     0     0 -1  -1  -1   1   5   1   5   1  -1   1   4
## 1347    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1348    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1349    0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 1350    0     0     0 -1   5  -1   2  -1   1   1   5  -1   1   1
## 1351    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1352    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1353    0     0     0 -1   1  -1   1   3   1   2   4  -1   1   1
## 1354    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1355    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1356    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1357    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1358    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1359    0     0     0 -1  -1  -1   1   5   1   3   1  -1   2   1
## 1360    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1361    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1362    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   3   4
## 1363    0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 1364    0     0     0 -1   3  -1   2  -1   1   6   5  -1   4   4
## 1365    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1366    0     0     0 -1  -1   9   2  -1   2  -1   4  -1   1   4
## 1367    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 1368    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 1369    0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 1370    0     0     0 -1   8   5   1   4   1   4   5  -1   1   2
## 1371    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1372    0     0     0 -1  -1   1   1   3   1   5   5   5   1   2
## 1373    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1374    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1375    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1376    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1377    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1378    0     0     0  1   1  -1   1   3   1   2   3  -1   1   1
## 1379    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1380    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1381    0     0     0 -1   1  -1   1   4   2  -1   4  -1   1   4
## 1382    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1383    0     0     0 -1   1   1   1   5   1   5   1  -1   1   2
## 1384    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1385    0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   2
## 1386    0     0     0 -1  -1   5   1   3   1   2   4   4   1   4
## 1387    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1388    0     0     0 -1   1  -1   1   2   2  -1   1  -1   1   2
## 1389    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1390    1     0     0 -1  -1  -1   1   6   1   3   3  -1   1   1
## 1391    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   1
## 1392    1     0     0 -1  -1  -1   2  -1   1   2   1   5   1   1
## 1393    0     0     0 -1  -1  -1   1   3   1   2   3  -1   1   2
## 1394    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1395    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1396    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1397    0     0     0  2   1  -1   1   4   1   4   1   4   1   4
## 1398    0     0     0  1  -1  -1   1   4   1   3   1  -1   1   1
## 1399    0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 1400    0     0     0 -1  -1   5   2  -1   1   3   5  -1   1   4
## 1401    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1402    0     0     0 -1   1  -1   1   3   2  -1   5  -1   4   4
## 1403    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   2   5
## 1404    0     0     0  2  -1  -1   1   2   1   3   4   4   1   1
## 1405    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   5
## 1406    0     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 1407    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1408    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1409    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1410    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1411    0     0     0 -1   1  -1   2  -1   1   4   4  -1   1   1
## 1412    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1413    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1414    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1415    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1416    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1417    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1418    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1419    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1420    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1421    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 1422    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1423    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1424    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 1425    0     0     0 -1   5  -1   1   2   1   3   3   3   1   2
## 1426    1     0     0 -1   1  -1   1   6   1   4   1  -1   1   1
## 1427    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1428    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1429    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1430    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1431    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1432    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 1433    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1434    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1435    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 1436    1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   2
## 1437    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1438    0     0     0 -1  -1  -1   2  -1   1   6   1   1   1   4
## 1439    0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 1440    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1441    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1442    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   4
## 1443    0     0     0 -1   6  -1   1   4   1   4   4   5   1   4
## 1444    0     0     0 -1  -1   1   1   2   1   1   1  -1   1   4
## 1445    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1446    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1447    0     0     0 -1   3  -1   2  -1   2  -1   5  -1   1   4
## 1448    0     0     0 -1   1  -1   1   4   2  -1   1   4   1   4
## 1449    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1450    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1451    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1452    0     0     0  1   1  -1   1   6   1   6   4  -1   1   3
## 1453    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1454    0     0     0  1   1  -1   1   6   1   6   1  -1   1   2
## 1455    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1456    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1457    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1458    0     0     0 -1   1   4   1   4   2  -1   4  -1   1   1
## 1459    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1460    1     0     0 -1   6  -1   2  -1   1   2   5  -1   1   4
## 1461    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1462    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1463    0     0     0 -1   8  -1   1   5   1   3   1   1   1   2
## 1464    0     0     0  1   1  -1   1   1   1   3   4   4   1   1
## 1465    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1466    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   5   5
## 1467    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1468    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1469    0     0     0 -1   3  -1   1   4   1   2   1   1   1   1
## 1470    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 1471    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1472    0     0     0 -1   3  -1   1   3   2  -1   1  -1   4   4
## 1473    0     0     0 -1  -1  -1   2  -1   1   3   4   1   1   1
## 1474    0     0     0 -1  -1  -1   2  -1   2  -1   2   4   1   1
## 1475    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1476    0     0     0 -1   1  -1   1   4   1   5   1  -1   1   4
## 1477    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1478    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 1479    0     0     0 -1   5  -1   1   3   1   3   4  -1   1   1
## 1480    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1481    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1482    0     0     0 -1  10  -1   1   1   1   3   5   5   1   1
## 1483    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1484    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1485    0     0     0  1  -1  -1   1   3   2  -1   1   1   1   1
## 1486    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1487    1     0     0 -1  -1  -1   2  -1   1   2   1  -1   4   4
## 1488    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1489    0     0     0 -1   6  -1   1   3   1   3   5  -1   1   4
## 1490    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1491    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1492    0     1     0 -1  -1  -1   1   3   1   6   5  -1   1   1
## 1493    0     0     0  3   1  -1   1   2   2  -1   2   4   1   4
## 1494    0     0     0 -1  -1  -1   1   1   1   4   5  -1   1   4
## 1495    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1496    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1497    0     0     0 -1  -1   5   1   3   1   3   1   1   1   4
## 1498    0     0     0 -1  -1   5   1   3   1   2   5  -1   1   5
## 1499    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 1500    0     0     0  2   1   4   1   2   1   2   1   1   1   1
## 1501    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1502    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1503    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1504    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1505    0     0     0 -1   1  -1   1   3   1   2   4   4   1   2
## 1506    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1507    0     0     0 -1   1  -1   1   2   1   2   1  -1   1   2
## 1508    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1509    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1510    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1511    1     0     0 -1   1   7   2  -1   2  -1   1  -1   1   1
## 1512    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1513    0     0     0 -1   1  -1   1   6   1   6   5  -1   1   1
## 1514    0     0     0 -1   5  -1   1   4   2  -1   5  -1   1   4
## 1515    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1516    0     1     0 -1  -1  -1   2  -1   1   4   5  -1   4   4
## 1517    1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1518    1     0     0 -1  -1  -1   2  -1   1   2   5  -1   4   4
## 1519    0     0     0 -1   6  -1   2  -1   2  -1   5   1   4   1
## 1520    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1521    0     0     0 -1   1  -1   1   4   1   6   1  -1   1   1
## 1522    0     0     0 -1  -1   5   1   6   2  -1   5  -1   1   1
## 1523    0     0     0 -1   1  -1   1   3   1   4   5  -1   1   1
## 1524    0     0     0 -1   1  -1   1   4   1   3   5  -1   1   4
## 1525    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1526    0     0     0 -1   1   4   1   3   1   6   1  -1   1   1
## 1527    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1528    0     0     0 -1   1  -1   1   3   2  -1   1   1   4   4
## 1529    1     0     0 -1  -1  -1   1   4   1   4   2   1   1   1
## 1530    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1531    0     0     0 -1   9  -1   2  -1   1   3   5  -1   2   4
## 1532    0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 1533    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1534    0     0     0 -1   1  -1   1   4   2  -1   4   4   1   2
## 1535    0     0     0 -1   4  -1   1   5   1   4   1  -1   1   2
## 1536    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1537    0     0     0 -1   4  -1   1   6   1   3   1  -1   1   4
## 1538    0     0     0 -1   1  -1   1   3   2  -1   1  -1   4   4
## 1539    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 1540    0     0     0 -1   6  -1   2  -1   1   2   1  -1   1   4
## 1541    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1542    0     1     0 -1  -1  -1   2  -1   2  -1   2  -1   1   4
## 1543    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1544    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1545    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1546    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 1547    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1548    0     0     0 -1  -1   5   1   3   1   4   4   1   1   1
## 1549    0     0     0 -1  -1  -1   2  -1   1   6   5  -1   4   4
## 1550    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   2
## 1551    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1552    1     0     0 -1   5  -1   1   5   2  -1   5  -1   1   1
## 1553    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1554    0     0     0 -1  -1   7   1   3   1   1   1  -1   2   2
## 1555    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1556    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1557    0     0     0 -1   5  -1   2  -1   1   5   5   5   1   1
## 1558    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1559    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 1560    0     0     0 -1   3   7   2  -1   2  -1   1  -1   1   1
## 1561    0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   5
## 1562    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   1
## 1563    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1564    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1565    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1566    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1567    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1568    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1569    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1570    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 1571    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1572    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1573    0     0     0 -1   1  -1   2  -1   1   2   3  -1   1   4
## 1574    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1575    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1576    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1577    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1578    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1579    0     0     0 -1   1  -1   1   6   1   6   2  -1   1   2
## 1580    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1581    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1582    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1583    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1584    0     0     0 -1   3  -1   1   4   1   4   1  -1   4   4
## 1585    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1586    0     0     0 -1   1  -1   1   2   1   3   4  -1   1   4
## 1587    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1588    0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 1589    0     0     0 -1   5  -1   1   5   1   2   5  -1   1   4
## 1590    0     0     0 -1   7  -1   1   4   1   2   1  -1   1   4
## 1591    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1592    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1593    1     0     0 -1   6  -1   1   3   1   3   5  -1   1   1
## 1594    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1595    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 1596    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1597    0     0     0 -1  -1  -1   1   4   1   3   1  -1   1   2
## 1598    0     0     0 -1   1  -1   1   5   1   6   5  -1   1   1
## 1599    1     0     0 -1   3  -1   2  -1   2  -1   1   1   4   4
## 1600    0     0     0 -1  -1   4   1   2   1   6   5   4   1   1
## 1601    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   5
## 1602    0     0     0 -1   1   4   2  -1   1   2   1  -1   1   2
## 1603    0     0     0 -1  -1   7   2  -1   2  -1   1  -1   4   4
## 1604    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1605    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1606    0     0     0 -1  -1  -1   1   3   1   3   5  -1   1   4
## 1607    0     0     0 -1   2  -1   2  -1   2  -1   5  -1   1   4
## 1608    0     0     0 -1   6  -1   2  -1   1   3   1   1   1   4
## 1609    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1610    0     0     0  2  -1  -1   1   4   1   4   1   1   1   2
## 1611    1     0     0 -1   6  -1   1   2   1   3   2   3   1   1
## 1612    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   2
## 1613    1     0     0 -1   1  -1   1   6   1   4   1  -1   4   4
## 1614    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1615    0     0     0 -1   3   4   1   1   1   4   4   4   1   4
## 1616    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1617    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1618    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1619    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1620    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1621    0     0     0 -1   2  -1   1   3   1   3   1  -1   1   4
## 1622    0     0     0 -1   6  -1   1   3   1   6   3  -1   1   4
## 1623    1     0     0 -1   1  -1   2  -1   1   6   4   4   1   1
## 1624    1     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1625    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1626    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1627    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1628    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 1629    0     0     0  5   1  -1   1   3   2  -1   1  -1   1   1
## 1630    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1631    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1632    1     0     0 -1  -1  -1   2  -1   1   4   3   1   1   4
## 1633    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 1634    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1635    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1636    0     0     0  1  -1  -1   1   4   1   6   4   4   1   1
## 1637    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1638    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1639    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1640    0     0     0 -1  -1  -1   1   5   1   5   1  -1   1   3
## 1641    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1642    1     0     0 -1   1  -1   1   5   2  -1   1  -1   1   1
## 1643    0     0     0 -1   5  -1   2  -1   1   3   1   1   1   4
## 1644    1     0     0 -1   6  -1   1   3   1   3   3  -1   1   2
## 1645    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   2
## 1646    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1647    1     0     0 -1   5  -1   1   5   1   6   1  -1   1   4
## 1648    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1649    0     1     0 -1  -1  -1   1   6   2  -1   5  -1   1   1
## 1650    0     0     0 -1   3  -1   1   4   1   3   5  -1   1   2
## 1651    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1652    0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 1653    0     0     0 -1  -1   1   2  -1   2  -1   1   1   1   4
## 1654    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1655    0     0     0  3   1  -1   1   2   2  -1   5  -1   1   4
## 1656    0     0     0  2  -1  -1   1   1   2  -1   2   4   1   1
## 1657    1     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   1
## 1658    0     0     0 -1   1  -1   1   1   1   3   4   4   1   1
## 1659    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1660    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1661    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1662    1     0     0 -1  -1  -1   1   3   1   4   5  -1   1   1
## 1663    0     0     0 -1   3  -1   2  -1   1   3   1  -1   1   2
## 1664    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1665    0     1     0 -1  -1  -1   1   5   1   5   4  -1   1   1
## 1666    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   2
## 1667    0     0     0 -1  -1  -1   1   2   1   3   4   4   1   4
## 1668    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 1669    1     0     0 -1   3  -1   1   6   1   4   5  -1   1   4
## 1670    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1671    1     0     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 1672    0     0     0 -1   6  -1   2  -1   2  -1   1   3   1   4
## 1673    0     0     0 -1   7  -1   1   5   2  -1   4  -1   1   1
## 1674    0     0     0  3  -1  -1   2  -1   1   2   4   4   1   2
## 1675    0     0     0 -1   1  -1   1   4   1   1   5   4   1   1
## 1676    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1677    0     0     0 -1   1  -1   2  -1   1   4   5  -1   4   4
## 1678    0     0     0 -1   6  -1   1   3   2  -1   2   4   1   1
## 1679    0     0     0 -1  -1   7   2  -1   1   4   5   4   1   1
## 1680    0     0     0 -1  -1   7   1   2   1   4   1  -1   1   2
## 1681    0     0     0 -1  -1   4   1   2   2  -1   1   1   1   2
## 1682    0     0     0 -1   1  -1   2  -1   1   5   1   1   1   4
## 1683    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1684    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   5
## 1685    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1686    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1687    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1688    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1689    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1690    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1691    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1692    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1693    0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1694    1     0     0 -1   1  -1   1   6   2  -1   4  -1   1   4
## 1695    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   3
## 1696    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 1697    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1698    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1699    0     0     0 -1   1  -1   1   6   1   6   5  -1   1   4
## 1700    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1701    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1702    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1703    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1704    0     0     0 -1   6  -1   1   4   1   6   3   1   1   4
## 1705    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   5   5
## 1706    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1707    0     0     0 -1   1  -1   1   4   1   4   1   4   1   4
## 1708    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1709    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1710    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1711    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1712    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1713    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1714    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1715    0     1     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1716    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1717    0     1     0 -1  -1  -1   1   5   2  -1   5  -1   4   4
## 1718    0     0     0 -1   9  -1   2  -1   2  -1   5  -1   1   4
## 1719    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1720    0     0     0 -1   1  -1   1   4   1   4   5  -1   1   4
## 1721    1     0     0 -1  -1  -1   1   2   1   6   1  -1   1   4
## 1722    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   3
## 1723    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 1724    0     0     0 -1   6  -1   2  -1   1   2   1   1   1   4
## 1725    0     0     0 -1  -1  -1   2  -1   1   3   1   1   1   2
## 1726    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1727    0     0     0 -1   4  -1   2  -1   1   3   4  -1   1   4
## 1728    1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1729    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1730    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1731    0     0     0 -1   1   7   1   4   2  -1   1  -1   1   4
## 1732    1     0     0 -1   6  -1   2  -1   1   4   1  -1   1   4
## 1733    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   1
## 1734    0     0     0 -1   1  -1   1   3   2  -1   1  -1   2   4
## 1735    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1736    0     1     0 -1  -1  -1   2  -1   1   3   3  -1   4   3
## 1737    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 1738    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1739    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1740    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   5
## 1741    0     0     0 -1   1  -1   1   3   2  -1   1   1   2   5
## 1742    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1743    0     0     0 -1   1  -1   1   6   1   3   1  -1   1   4
## 1744    1     0     0 -1   6  -1   1   2   1   1   3   3   1   1
## 1745    0     0     0 -1   3  -1   2  -1   1   1   1  -1   4   4
## 1746    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1747    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1748    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1749    0     1     0 -1  -1  -1   2  -1   1   6   1   4   1   4
## 1750    1     0     0 -1   1  -1   1   3   1   6   1  -1   4   4
## 1751    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1752    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1753    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1754    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 1755    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1756    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1757    0     0     0 -1   1  -1   1   5   1   5   1  -1   1   4
## 1758    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1759    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1760    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1761    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1762    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1763    1     0     0 -1  -1  -1   2  -1   1   3   3   3   1   1
## 1764    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1765    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1766    1     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   1
## 1767    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 1768    1     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1769    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1770    0     0     0 -1   1  -1   1   2   2  -1   2   2   1   1
## 1771    1     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 1772    0     0     0  2  -1  -1   1   3   1   4   1  -1   1   1
## 1773    1     0     0 -1  -1  -1   2  -1   1   3   5  -1   4   4
## 1774    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1775    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1776    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 1777    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1778    0     0     0 -1  -1   5   1   5   1   5   1  -1   1   2
## 1779    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1780    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1781    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1782    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1783    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1784    1     0     0 -1   1  -1   1   3   1   2   1   5   1   1
## 1785    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 1786    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1787    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1788    0     0     0 -1   6  -1   1   4   2  -1   5   1   1   2
## 1789    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1790    0     0     0 -1   1  -1   1   4   1   3   5   1   1   4
## 1791    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1792    0     0     0  2  -1   7   1   3   1   4   1  -1   1   1
## 1793    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1794    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1795    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1796    0     0     0 -1   1  -1   1   1   1   5   5   1   1   4
## 1797    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1798    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1799    0     0     0 -1   1  -1   2  -1   2  -1   3   1   1   4
## 1800    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1801    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1802    0     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 1803    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1804    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1805    0     0     0 -1   1  -1   1   2   1   3   1  -1   1   1
## 1806    0     0     0 -1   1   7   1   3   2  -1   4  -1   1   4
## 1807    0     0     0  1  -1  -1   1   4   2  -1   1   1   1   1
## 1808    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1809    0     0     0 -1   1  -1   2  -1   1   1   1  -1   1   4
## 1810    0     1     0 -1  -1  -1   1   3   2  -1   1   4   1   4
## 1811    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1812    0     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 1813    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1814    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1815    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1816    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 1817    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1818    1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1819    1     0     0 -1   1   7   1   4   1   3   4   4   1   1
## 1820    0     0     0 -1   1  -1   2  -1   1   5   4  -1   1   4
## 1821    0     0     0  2   1  -1   1   3   1   6   4  -1   4   4
## 1822    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1823    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1824    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 1825    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1826    0     0     0 -1   5  -1   1   4   1   2   1  -1   4   4
## 1827    0     0     0 -1   1  -1   1   2   2  -1   1  -1   4   4
## 1828    0     0     0  2  -1  -1   1   4   2  -1   3   3   1   1
## 1829    0     0     0 -1   5  -1   1   6   1   5   3   3   1   1
## 1830    0     0     0  7  -1  -1   1   5   1   3   4   4   1   1
## 1831    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1832    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1833    0     0     0 -1  -1  -1   2  -1   2  -1   1   2   1   1
## 1834    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1835    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1836    0     0     0 -1  -1  -1   1   3   1   3   5   5   1   5
## 1837    0     0     0 -1   1  -1   1   2   1   2   2  -1   1   1
## 1838    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1839    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   3   1
## 1840    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1841    0     0     0 -1   1  -1   1   5   2  -1   1  -1   4   4
## 1842    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1843    0     0     0 -1  -1   1   1   5   2  -1   1  -1   5   5
## 1844    0     0     0 -1   1  -1   1   2   1   4   1  -1   1   1
## 1845    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1846    1     0     0 -1  -1  -1   2  -1   1   3   4   4   1   4
## 1847    0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   4
## 1848    0     0     0  1  -1  -1   1   3   1   3   5   5   1   1
## 1849    0     0     0  1  -1  -1   1   3   1   3   3   4   1   1
## 1850    0     0     0 -1   1  -1   2  -1   1   3   5  -1   5   5
## 1851    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 1852    0     0     0 -1   1  -1   1   5   2  -1   5  -1   1   4
## 1853    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1854    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1855    1     0     0 -1  -1  -1   1   5   1   2   4  -1   1   1
## 1856    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1857    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1858    1     0     0 -1  -1  -1   1   6   1   3   4   4   1   1
## 1859    0     0     0 -1  -1  -1   1   6   2  -1   4  -1   1   1
## 1860    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1861    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1862    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1863    1     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 1864    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   5
## 1865    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1866    0     0     0 -1   1  -1   1   4   1   3   5   5   1   4
## 1867    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1868    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1869    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1870    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 1871    0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   5
## 1872    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1873    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1874    0     0     0 -1   9  -1   2  -1   2  -1   1  -1   4   4
## 1875    1     0     0 -1  -1  -1   1   4   1   2   4  -1   1   2
## 1876    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 1877    0     0     0  1  -1  -1   2  -1   2  -1   5  -1   1   1
## 1878    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1879    0     0     0 -1   1  -1   1   4   1   4   4  -1   3   4
## 1880    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1881    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1882    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   1
## 1883    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 1884    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1885    0     0     0 -1  -1  -1   1   4   1   6   4  -1   1   1
## 1886    0     0     0 -1  -1  -1   2  -1   1   2   5  -1   1   2
## 1887    0     0     0  1   1  -1   1   3   1   6   3   3   1   1
## 1888    0     1     0 -1  -1  -1   1   3   1   3   5  -1   1   1
## 1889    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 1890    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1891    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1892    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   1
## 1893    1     0     0 -1  -1  -1   1   3   2  -1   5  -1   1   1
## 1894    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1895    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1896    0     0     0 -1   1  -1   2  -1   1   4   4  -1   1   4
## 1897    0     0     0 -1  -1  -1   1   3   1   3   1   4   1   4
## 1898    0     0     0 -1  -1  -1   1   3   1   4   5  -1   1   1
## 1899    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1900    0     0     0 -1   1   7   1   3   1   4   1  -1   1   3
## 1901    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1902    1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1903    1     0     0 -1   5  -1   1   4   1   5   1  -1   1   1
## 1904    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1905    0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 1906    0     0     0 -1  -1   5   1   5   1   2   1   4   1   4
## 1907    0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   4
## 1908    0     0     0 -1  -1  -1   2  -1   1   4   5  -1   4   4
## 1909    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1910    1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 1911    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1912    0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 1913    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1914    0     1     0 -1  -1  -1   1   6   1   2   1  -1   1   1
## 1915    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1916    0     0     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 1917    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 1918    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1919    0     0     0 -1   4   1   1   3   2  -1   5   1   1   1
## 1920    0     0     0  3  -1  -1   1   2   1   4   1  -1   4   4
## 1921    0     0     0  2   2  -1   1   3   2  -1   1  -1   1   1
## 1922    0     0     0 -1   7  -1   1   3   1   1   2   2   1   1
## 1923    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   3
## 1924    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1925    0     1     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 1926    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1927    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 1928    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 1929    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1930    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1931    0     0     0  1  -1  -1   2  -1   2  -1   1   5   1   1
## 1932    0     0     0  1   1  -1   1   4   1   3   1  -1   1   1
## 1933    0     0     0 -1   1  -1   2  -1   1   3   1   4   1   1
## 1934    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1935    0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 1936    0     0     0 -1  -1   5   1   3   1   4   5   5   1   4
## 1937    1     0     0 -1   6  -1   2  -1   1   6   5  -1   1   4
## 1938    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1939    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1940    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1941    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1942    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1943    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1944    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1945    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1946    0     0     0 -1  -1  -1   1   1   1   4   1  -1   1   4
## 1947    0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 1948    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   1
## 1949    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1950    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1951    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1952    1     0     0 -1  -1  -1   1   3   1   4   3   4   1   1
## 1953    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1954    1     0     0 -1  -1  -1   2  -1   1   2   3  -1   1   4
## 1955    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1956    0     0     0 -1   1  -1   1   4   2  -1   5  -1   2   4
## 1957    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1958    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1959    1     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1960    0     0     0 -1  -1   5   1   6   1   4   1  -1   1   1
## 1961    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   3
## 1962    0     0     0 -1  -1   1   2  -1   1   5   1  -1   1   4
## 1963    1     0     0 -1   1  -1   1   3   1   6   1  -1   1   4
## 1964    0     0     0 -1   1  -1   1   6   1   5   1  -1   1   4
## 1965    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1966    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1967    0     0     0 -1   5  -1   2  -1   1   3   5  -1   1   4
## 1968    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1969    0     0     0 -1  -1  -1   1   4   1   5   1  -1   1   1
## 1970    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1971    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1972    0     0     0 -1  -1  -1   1   6   2  -1   5  -1   1   4
## 1973    1     0     0 -1  -1   4   1   4   1   4   5   5   1   2
## 1974    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1975    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1976    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1977    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1978    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1979    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 1980    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1981    0     0     0 -1   1  -1   1   2   1   6   5  -1   1   1
## 1982    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1983    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1984    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1985    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1986    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1987    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 1988    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1989    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1990    0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 1991    0     1     0 -1  -1  -1   1   3   2  -1   5  -1   1   2
## 1992    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 1993    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1994    0     0     0 -1   7  -1   2  -1   1   6   2  -1   1   4
## 1995    0     0     0  2  -1  -1   1   2   1   2   4   4   1   1
## 1996    0     0     0 -1  -1  -1   1   6   2  -1   5  -1   1   1
## 1997    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 1998    0     0     0 -1  -1   1   1   2   2  -1   1  -1   1   4
## 1999    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2000    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 2001    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2002    1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   5
## 2003    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2004    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 2005    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2006    0     1     0 -1  -1  -1   2  -1   1   4   4  -1   1   1
## 2007    0     0     0 -1   6  -1   2  -1   1   3   5   1   1   1
## 2008    0     0     0 -1  -1  -1   2  -1   1   3   5   5   1   1
## 2009    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 2010    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 2011    0     0     0 -1  -1   5   1   4   1   5   5  -1   1   4
## 2012    0     0     0 -1  -1  -1   1   3   2  -1   1   1   1   4
## 2013    0     0     0 -1  -1  -1   1   2   1   3   1   1   1   1
## 2014    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   2
## 2015    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2016    0     0     0 -1   1  -1   1   6   2  -1   4  -1   4   4
## 2017    0     0     0  3  -1  -1   1   3   2  -1   1  -1   4   4
## 2018    0     0     0 -1   1   5   2  -1   1   3   1  -1   1   1
## 2019    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 2020    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2021    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2022    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 2023    0     0     0  1  -1  -1   1   1   1   4   3   3   1   1
## 2024    0     0     0 -1   6  -1   2  -1   1   4   4   1   4   1
## 2025    0     0     0 -1   6  -1   1   2   1   3   1   1   4   4
## 2026    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2027    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2028    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2029    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2030    1     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 2031    0     0     0 -1  -1   5   2  -1   2  -1   1   1   1   1
## 2032    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2033    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 2034    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2035    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2036    0     0     0 -1   1  -1   1   5   2  -1   1  -1   2   4
## 2037    0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 2038    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   3
## 2039    0     0     0 -1   4  -1   1   3   2  -1   5  -1   1   4
## 2040    1     0     0 -1   7  -1   1   3   2  -1   5   5   1   1
## 2041    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 2042    0     0     0 -1   1  -1   1   2   2  -1   5  -1   4   4
## 2043    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 2044    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2045    0     0     0 -1  -1  -1   1   5   1   3   1  -1   1   1
## 2046    0     0     0 -1  -1   4   1   2   1   1   3   5   1   1
## 2047    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 2048    0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   4
## 2049    1     0     0 -1   3  -1   2  -1   1   5   1  -1   4   4
## 2050    0     0     0 -1   6  -1   2  -1   1   5   1  -1   1   4
## 2051    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 2052    0     0     0  6  -1  -1   2  -1   2  -1   5  -1   1   4
## 2053    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2054    0     0     0 -1   4  -1   2  -1   2  -1   1   1   1   1
## 2055    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2056    0     0     0 -1  -1  -1   1   3   1   6   3  -1   1   1
## 2057    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2058    0     0     0 -1   1   5   1   5   2  -1   1  -1   1   1
## 2059    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2060    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   2
## 2061    1     0     0 -1  -1   1   2  -1   2  -1   1   1   4   4
## 2062    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 2063    0     0     0 -1   1  -1   1   1   1   5   1  -1   1   1
## 2064    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 2065    0     0     0 -1   1  -1   1   3   2  -1   3   5   1   2
## 2066    0     0     0 -1   6  -1   1   1   1   2   5  -1   1   1
## 2067    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2068    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2069    0     0     0 -1  -1   1   2  -1   1   3   1  -1   1   4
## 2070    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2071    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 2072    0     0     0 -1   7   7   1   6   2  -1   1  -1   1   2
## 2073    0     0     0 -1   3  -1   1   3   2  -1   4  -1   1   4
## 2074    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 2075    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2076    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2077    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 2078    0     0     0  1   1  -1   1   3   2  -1   4  -1   1   1
## 2079    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 2080    0     0     0 -1   1   5   1   4   1   2   1  -1   1   1
## 2081    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2082    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2083    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2084    1     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 2085    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2086    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 2087    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2088    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2089    0     0     0 -1  -1  -1   1   6   1   2   5  -1   4   4
## 2090    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2091    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 2092    0     0     0 -1  -1   1   2  -1   2  -1   5  -1   4   4
## 2093    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2094    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 2095    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2096    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2097    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 2098    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2099    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2100    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 2101    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2102    0     0     0 -1   7  -1   1   2   2  -1   1  -1   4   4
## 2103    0     0     0 -1   4  -1   2  -1   1   3   1   1   1   1
## 2104    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   1
## 2105    0     0     0 -1  -1   7   2  -1   2  -1   3  -1   4   4
## 2106    0     0     0 -1   1  -1   1   4   1   2   3  -1   1   4
## 2107    1     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 2108    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2109    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 2110    1     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 2111    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   1
## 2112    0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   4
## 2113    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2114    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2115    0     0     0 -1   1  -1   1   6   1   5   1  -1   1   4
## 2116    0     0     0 -1   5  -1   2  -1   2  -1   1   1   1   4
## 2117    0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 2118    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 2119    1     0     0  2  -1   8   1   3   1   3   4  -1   1   1
## 2120    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   2
## 2121    0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   2
## 2122    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 2123    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 2124    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2125    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2126    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   5   5
## 2127    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2128    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2129    1     0     0 -1   1  -1   2  -1   1   3   1  -1   1   1
## 2130    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2131    0     0     0 -1   6  -1   2  -1   1   6   1  -1   1   2
## 2132    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2133    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 2134    0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   2
## 2135    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2136    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2137    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2138    1     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 2139    0     0     0 -1   1  -1   1   3   1   3   1  -1   4   4
## 2140    0     0     0 -1   1  -1   1   2   1   3   1  -1   1   4
## 2141    0     0     0 -1   6  -1   1   2   1   2   5  -1   1   1
## 2142    0     0     0 -1   1  -1   1   5   1   6   1  -1   1   4
## 2143    0     0     0 -1  -1  -1   1   3   1   6   5  -1   1   4
## 2144    0     0     0 -1   1  -1   2  -1   1   3   5  -1   4   4
## 2145    0     0     0 -1   1  -1   2  -1   1   6   3  -1   1   4
## 2146    0     0     0  2  -1  -1   1   6   1   3   5   5   1   1
## 2147    0     0     0 -1   7  -1   1   3   2  -1   3  -1   1   1
## 2148    0     0     0 -1   6  -1   2  -1   1   3   1   1   1   1
## 2149    0     0     0 -1  -1   4   1   5   2  -1   1  -1   1   4
## 2150    0     0     0 -1   4  -1   2  -1   2  -1   4   4   1   1
## 2151    0     0     0 -1   3  -1   1   4   1   1   1  -1   1   1
## 2152    0     0     0 -1   1  -1   2  -1   1   4   5   5   1   4
## 2153    1     0     0 -1   1  -1   1   2   1   5   4   4   1   4
## 2154    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 2155    0     0     0 -1   1  -1   1   6   2  -1   3   3   1   1
## 2156    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   1   1
## 2157    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2158    0     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 2159    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   2
## 2160    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2161    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 2162    0     0     0 -1   6  -1   1   6   2  -1   5  -1   1   1
## 2163    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2164    0     0     0  1  -1  -1   1   4   2  -1   5  -1   1   1
## 2165    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2166    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2167    0     0     0 -1   6  -1   2  -1   1   3   2   2   1   1
## 2168    0     0     0 -1  -1   7   2  -1   1   6   1  -1   1   1
## 2169    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2170    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2171    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2172    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2173    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 2174    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2175    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   1
## 2176    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   2
## 2177    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 2178    0     0     0 -1   1  -1   2  -1   1   5   1   1   1   2
## 2179    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 2180    0     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 2181    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2182    0     0     0 -1   1  -1   1   1   2  -1   5  -1   4   4
## 2183    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 2184    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 2185    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2186    0     0     0 -1   7  -1   2  -1   1   2   1  -1   1   2
## 2187    0     0     0 -1   6  -1   2  -1   2  -1   4   4   1   1
## 2188    0     0     0  2  -1  -1   1   4   1   3   4  -1   1   4
## 2189    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2190    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2191    0     0     0 -1   1  -1   1   6   1   2   1  -1   1   4
## 2192    0     0     0 -1   5  -1   1   3   1   3   1  -1   1   4
## 2193    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2194    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2195    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2196    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   5   5
## 2197    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   2
## 2198    0     0     0  1  -1  -1   2  -1   2  -1   4   3   1   1
## 2199    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2200    0     0     0  1  -1  -1   1   3   2  -1   4   4   1   1
## 2201    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 2202    0     0     0  1   1  -1   1   3   2  -1   4  -1   1   1
## 2203    0     0     0 -1  -1  -1   2  -1   2  -1   1   4   1   2
## 2204    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2205    0     1     0 -1  -1  -1   1   3   1   3   4  -1   1   2
## 2206    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2207    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2208    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2209    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2210    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2211    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   2
## 2212    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 2213    0     0     0  1  -1  -1   1   3   1   1   1   4   1   1
## 2214    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2215    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2216    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2217    0     0     0 -1   1  -1   2  -1   1   4   5  -1   2   4
## 2218    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2219    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2220    0     0     0 -1   2  -1   1   2   1   4   3   1   1   4
## 2221    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 2222    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2223    0     0     0 -1  -1  -1   1   2   2  -1   4  -1   1   1
## 2224    1     0     0 -1  -1  -1   1   3   1   2   4   4   1   2
## 2225    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2226    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 2227    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2228    0     1     0 -1  -1  -1   1   5   1   4   5  -1   1   1
## 2229    0     0     0 -1   6  -1   1   3   2  -1   3   2   1   1
## 2230    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2231    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2232    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2233    0     0     0 -1  -1  -1   2  -1   2  -1   5   4   1   1
## 2234    0     0     0 -1   5  -1   1   2   2  -1   5  -1   1   2
## 2235    0     0     0 -1   6  -1   1   3   1   2   4   4   1   4
## 2236    0     0     0 -1   1  -1   1   3   2  -1   4  -1   1   4
## 2237    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2238    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2239    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2240    0     0     0 -1  -1  -1   1   3   1   5   1  -1   1   1
## 2241    1     0     0 -1   1  -1   2  -1   1   4   1  -1   5   5
## 2242    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 2243    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2244    0     0     0 -1   7  -1   2  -1   2  -1   1   4   1   1
## 2245    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 2246    0     0     0 -1   1  -1   2  -1   1   6   5   1   4   4
## 2247    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 2248    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 2249    0     0     0 -1  -1   5   2  -1   2  -1   1   1   1   1
## 2250    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2251    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2252    0     0     0 -1   1  -1   1   6   1   3   5  -1   1   4
## 2253    0     0     0  6  -1  -1   2  -1   2  -1   1  -1   1   1
## 2254    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 2255    0     0     0  1  -1  -1   1   3   1   4   3   3   1   1
## 2256    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2257    0     0     0 -1   6  -1   1   2   2  -1   1   3   1   1
## 2258    0     0     0  2  -1  -1   2  -1   1   5   1  -1   1   1
## 2259    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2260    1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 2261    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2262    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   1
## 2263    1     0     0 -1   3  -1   2  -1   1   6   1   4   1   1
## 2264    0     0     0 -1   2  -1   1   3   2  -1   1  -1   1   4
## 2265    1     0     0 -1  -1  -1   2  -1   1   3   5  -1   4   4
## 2266    1     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 2267    0     0     0 -1   5   7   2  -1   1   3   1  -1   1   1
## 2268    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2269    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2270    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2271    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2272    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 2273    0     0     0 -1  -1  -1   1   4   1   2   1  -1   1   4
## 2274    0     0     0 -1   6  -1   1   3   2  -1   4  -1   1   4
## 2275    1     0     0 -1   1  -1   1   1   1   3   1  -1   1   4
## 2276    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2277    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2278    0     0     0 -1   5  -1   1   4   1   5   1  -1   1   1
## 2279    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2280    0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   4
## 2281    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2282    0     0     0 -1   8  -1   2  -1   2  -1   1  -1   1   1
## 2283    0     0     0 -1  -1   1   2  -1   1   4   1  -1   4   4
## 2284    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2285    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2286    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2287    1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 2288    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 2289    0     0     0  2  -1  -1   1   3   2  -1   1  -1   1   2
## 2290    0     1     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 2291    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2292    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2293    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2294    0     0     0 -1   1  -1   1   5   1   4   1  -1   1   4
## 2295    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2296    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2297    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 2298    1     0     0 -1  -1  -1   2  -1   1   2   1  -1   4   4
## 2299    0     1     0 -1  -1  -1   1   4   1   3   5  -1   1   4
## 2300    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2301    0     0     0 -1   1  -1   1   4   1   4   5   5   1   4
## 2302    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2303    0     0     0 -1   1  -1   2  -1   2  -1   4   4   1   2
## 2304    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   1
## 2305    0     1     0 -1  -1  -1   2  -1   2  -1   2  -1   1   1
## 2306    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 2307    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2308    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2309    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 2310    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2311    0     0     0 -1   1  -1   2  -1   1   4   5  -1   2   4
## 2312    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2313    0     0     0 -1   1  -1   1   2   1   4   5  -1   1   1
## 2314    1     0     0 -1   1  -1   2  -1   1   6   5   4   1   5
## 2315    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2316    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   1
## 2317    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2318    0     0     0  2  -1  -1   1   4   2  -1   3  -1   1   1
## 2319    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 2320    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2321    1     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   3
## 2322    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2323    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2324    0     0     0 -1   1   5   2  -1   1   3   1  -1   1   2
## 2325    0     0     0 -1   1  -1   1   4   1   3   4  -1   1   4
## 2326    0     0     0  2  -1  -1   1   1   1   1   5   1   1   1
## 2327    0     0     0 -1   5  -1   1   3   1   4   5   4   1   1
## 2328    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   2
## 2329    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 2330    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2331    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2332    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2333    0     0     0 -1   1  -1   1   2   1   5   5  -1   1   1
## 2334    0     0     0 -1   1  -1   1   6   2  -1   1   1   1   1
## 2335    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2336    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   1
## 2337    1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 2338    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2339    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 2340    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2341    1     0     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 2342    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2343    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2344    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 2345    0     0     0 -1   1  -1   1   4   1   6   4   1   1   3
## 2346    0     1     0 -1  -1  -1   2  -1   1   5   5   5   1   5
## 2347    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2348    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 2349    0     0     0 -1   5  -1   2  -1   2  -1   1   1   1   1
## 2350    0     0     0 -1  10  -1   1   3   2  -1   2   4   1   1
## 2351    0     0     0 -1   8  -1   2  -1   1   4   1  -1   1   4
## 2352    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 2353    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2354    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2355    0     0     0 -1   1  -1   1   4   2  -1   1  -1   4   4
## 2356    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2357    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   5   5
## 2358    0     0     0  1   6  -1   1   2   1   2   4   1   1   1
## 2359    0     0     0 -1  -1  -1   1   4   1   1   4  -1   1   1
## 2360    0     0     0 -1   6  -1   1   6   1   5   1   1   1   4
## 2361    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2362    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2363    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2364    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2365    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2366    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2367    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2368    0     0     0  6   1  -1   2  -1   1   3   1  -1   1   4
## 2369    0     0     0 -1   1  -1   1   2   2  -1   1  -1   4   4
## 2370    0     1     0 -1  -1  -1   1   5   1   2   5  -1   1   1
## 2371    0     0     0 -1  -1   4   1   3   1   1   2   5   1   1
## 2372    0     0     0 -1   5  -1   2  -1   1   6   5  -1   4   4
## 2373    1     0     0 -1   3  -1   2  -1   1   4   1  -1   1   4
## 2374    0     0     0  2  -1  -1   1   3   1   3   5   4   1   1
## 2375    1     0     0 -1  -1  -1   1   3   1   4   5   4   1   4
## 2376    0     0     0 -1  -1  -1   2  -1   1   2   4  -1   1   2
## 2377    0     0     0  1   1  -1   1   3   1   2   5   5   1   1
## 2378    1     0     0 -1  -1  -1   1   2   1   2   4   5   1   1
## 2379    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2380    1     0     0 -1  -1  -1   1   4   1   2   1   1   1   4
## 2381    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 2382    1     0     0 -1   1  -1   2  -1   1   4   5  -1   4   4
## 2383    0     0     0 -1   1   4   1   4   1   3   1  -1   1   1
## 2384    0     0     0 -1  -1  -1   1   2   1   2   4   4   1   1
## 2385    0     0     0 -1   6  -1   1   4   2  -1   1  -1   1   5
## 2386    1     0     0 -1  -1  -1   2  -1   1   3   5   5   1   4
## 2387    0     0     0  1  -1  -1   2  -1   2  -1   5   5   1   1
## 2388    1     0     0 -1  -1  -1   1   5   1   4   4  -1   1   1
## 2389    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2390    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2391    0     1     0 -1  -1  -1   2  -1   1   1   1  -1   1   4
## 2392    0     0     0 -1   4  -1   1   3   1   5   1  -1   1   1
## 2393    0     0     0  2  -1  -1   1   3   2  -1   1  -1   1   1
## 2394    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2395    1     0     0 -1  -1  -1   1   5   1   1   5   1   1   4
## 2396    0     0     0 -1   6  -1   2  -1   1   4   1  -1   1   4
## 2397    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2398    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 2399    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2400    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 2401    0     0     0  1  -1  -1   2  -1   1   1   3   4   1   1
## 2402    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2403    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2404    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2405    1     0     0 -1  -1  -1   1   6   1   1   1  -1   1   1
## 2406    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2407    1     0     0 -1   6  -1   1   6   1   3   1  -1   1   4
## 2408    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 2409    0     0     0 -1   7  -1   1   3   2  -1   1  -1   1   4
## 2410    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 2411    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2412    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   4   4
## 2413    0     0     0 -1  -1  -1   2  -1   1   4   1   1   1   4
## 2414    0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 2415    0     0     0 -1   1   9   1   2   1   2   3   3   1   4
## 2416    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2417    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2418    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 2419    0     0     0 -1   1  -1   2  -1   1   1   5  -1   1   4
## 2420    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 2421    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2422    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2423    0     0     0 -1   1  -1   1   5   1   3   5  -1   1   1
## 2424    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2425    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 2426    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   1
## 2427    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2428    1     0     0 -1   6  -1   1   2   1   1   3  -1   1   1
## 2429    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   1
## 2430    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2431    0     0     0 -1   6  -1   1   2   1   2   4  -1   4   4
## 2432    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2433    1     0     0 -1  -1  -1   1   6   1   2   3   1   1   1
## 2434    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 2435    1     0     0 -1   1  -1   2  -1   1   4   4   4   1   4
## 2436    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2437    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2438    0     0     0 -1  -1  -1   1   2   1   2   2   4   1   1
## 2439    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2440    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2441    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 2442    0     0     0 -1   1  -1   2  -1   1   4   4  -1   1   4
## 2443    0     0     0  1  -1  -1   1   3   1   4   5   5   1   1
## 2444    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 2445    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 2446    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2447    0     0     0 -1   4  -1   2  -1   2  -1   1   1   1   4
## 2448    0     0     0  7   1  -1   2  -1   2  -1   1  -1   1   2
## 2449    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   1
## 2450    0     0     0 -1   5  -1   1   1   1   3   4  -1   1   1
## 2451    0     0     0 -1   1  -1   1   4   1   4   4   4   1   4
## 2452    0     0     0 -1   5  -1   1   3   1   3   3   3   1   4
## 2453    0     0     0 -1   4  -1   1   2   2  -1   5  -1   1   2
## 2454    0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 2455    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2456    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2457    1     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   4
## 2458    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   4   4
## 2459    1     0     0 -1   6   5   2  -1   1   2   4  -1   1   1
## 2460    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2461    0     0     0 -1   1  -1   1   3   1   4   4  -1   1   4
## 2462    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 2463    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 2464    0     0     0 -1  -1   7   1   2   1   4   5   4   1   1
## 2465    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2466    0     0     0 -1  -1  -1   1   5   2  -1   1  -1   4   4
## 2467    0     0     0 -1   1  -1   2  -1   1   2   4  -1   1   1
## 2468    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2469    0     0     0 -1   1  -1   2  -1   1   4   5  -1   2   4
## 2470    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2471    0     0     0 -1   6  -1   1   6   2  -1   1  -1   1   4
## 2472    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   1
## 2473    0     0     0  3   1  -1   1   2   1   2   5   5   4   4
## 2474    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2475    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2476    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 2477    0     0     0 -1   3  -1   1   4   1   4   5  -1   1   4
## 2478    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2479    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2480    0     0     0 -1   1  -1   1   2   2  -1   5   4   1   4
## 2481    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2482    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 2483    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2484    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2485    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2486    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 2487    1     0     0 -1  -1  -1   1   5   1   4   3   1   1   1
## 2488    0     0     0 -1   3   5   2  -1   1   3   1  -1   4   4
## 2489    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2490    0     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 2491    0     1     0 -1  -1  -1   1   5   1   6   5  -1   1   1
## 2492    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   2   4
## 2493    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2494    0     0     0 -1   5  -1   1   3   1   2   5  -1   1   1
## 2495    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   2
## 2496    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2497    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 2498    0     0     0 -1  -1   1   1   4   2  -1   4   3   1   1
## 2499    0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
##        Latitude Longitude mobile_money savings borrowing insurance
## 1     -4.460442  29.81140            0       0         0         0
## 2     -6.176438  39.24487            1       1         1         0
## 3     -6.825702  37.65280            1       0         0         0
## 4     -3.372049  35.80831            1       0         1         0
## 5     -7.179645  31.03910            1       1         0         1
## 6     -6.362331  37.13774            0       0         1         0
## 7     -8.089257  35.83641            1       1         1         1
## 8     -8.916028  33.43390            1       1         0         0
## 9     -3.972247  32.64995            0       1         1         0
## 10    -8.033973  35.76942            1       0         0         1
## 11    -3.619491  33.81397            1       1         1         0
## 12    -8.847496  34.82359            1       0         0         0
## 13   -10.743503  34.73308            0       1         1         0
## 14    -8.295917  31.50903            0       0         0         0
## 15    -6.169053  39.19849            1       0         0         0
## 16    -1.338745  30.90012            0       0         0         0
## 17   -10.488371  39.02762            1       0         0         0
## 18    -3.180342  36.86124            1       1         1         0
## 19    -1.261826  30.67859            1       1         1         0
## 20    -7.782641  35.66560            1       1         0         0
## 21    -4.614918  29.78761            1       1         0         0
## 22    -2.597419  32.91360            1       0         1         0
## 23   -10.918859  38.00266            1       1         0         0
## 24    -8.871831  34.95540            0       1         0         0
## 25    -5.072699  38.45452            1       0         1         0
## 26    -7.774543  35.69338            1       1         1         0
## 27    -6.219971  39.23240            1       1         1         0
## 28    -1.324064  31.79063            1       1         1         0
## 29    -3.352235  37.34739            1       1         1         1
## 30    -6.819066  37.64553            1       1         1         0
## 31    -4.290469  35.85897            1       0         0         0
## 32    -2.762266  33.61668            1       1         0         0
## 33    -8.898817  33.54752            1       0         1         0
## 34    -3.831435  32.68175            0       0         1         1
## 35    -8.568090  32.12580            1       0         0         0
## 36   -11.467450  36.97929            0       1         0         0
## 37    -4.090220  34.73737            0       1         0         0
## 38   -10.511796  38.99460            1       1         1         0
## 39    -5.035472  36.23767            0       0         1         0
## 40    -2.402577  32.32959            1       0         1         0
## 41    -3.808334  32.22749            0       0         1         1
## 42    -8.539498  32.94379            0       0         1         0
## 43    -4.833257  34.76190            1       1         1         0
## 44    -5.717437  38.23602            1       0         0         0
## 45    -8.603990  39.26019            1       1         0         0
## 46    -2.545407  32.95832            1       0         0         0
## 47    -3.871321  35.65141            0       1         0         0
## 48    -8.564092  35.33906            1       1         1         0
## 49    -4.225851  34.61299            1       1         1         1
## 50    -8.953660  32.56462            1       0         0         0
## 51    -3.996847  33.37908            0       1         1         0
## 52    -2.611466  32.07196            0       0         1         0
## 53    -8.978150  36.76014            0       1         1         0
## 54    -2.340967  32.29512            1       1         1         0
## 55    -3.432752  31.51375            1       0         1         0
## 56    -8.128108  30.96697            0       0         1         0
## 57    -6.265031  36.86941            0       0         1         0
## 58   -10.488619  39.02783            1       0         1         0
## 59    -4.025963  34.50822            0       0         0         0
## 60    -8.571489  33.44991            1       1         0         0
## 61    -2.506709  32.01181            1       1         0         0
## 62    -3.363681  36.72003            1       1         1         0
## 63    -6.968397  39.08682            1       1         1         1
## 64    -6.372752  38.35172            0       1         1         0
## 65    -3.252335  30.90823            0       0         0         0
## 66   -10.662969  35.65687            1       0         1         0
## 67    -2.852849  32.88685            1       0         1         0
## 68   -10.467358  36.13245            1       1         0         0
## 69    -6.875757  39.23261            1       1         0         0
## 70    -6.883295  39.25355            1       1         1         0
## 71    -3.821738  33.30840            0       0         1         0
## 72   -11.263398  34.79128            1       1         1         1
## 73    -7.854259  31.17578            0       0         1         0
## 74    -4.268603  38.05357            1       1         0         0
## 75   -11.400793  36.42849            1       0         0         0
## 76    -6.148147  39.22280            1       0         1         0
## 77    -8.797980  34.99026            0       1         0         0
## 78    -6.290723  35.88228            0       0         0         1
## 79    -4.573588  33.03776            1       0         1         0
## 80    -5.245949  39.78153            0       0         0         0
## 81    -3.202463  37.20557            1       1         1         0
## 82   -10.750776  38.53077            1       0         0         0
## 83    -6.570029  35.51702            0       0         0         0
## 84    -6.931571  39.26271            0       0         0         0
## 85    -5.959047  36.69328            0       0         0         0
## 86   -10.919896  39.38173            0       1         0         0
## 87    -1.940385  32.85856            0       0         0         0
## 88    -9.330313  33.71555            1       1         1         0
## 89    -3.350379  37.30189            1       0         1         1
## 90    -3.365591  33.53727            1       1         1         0
## 91    -9.237312  34.89158            0       1         1         0
## 92    -9.493857  34.65333            1       0         1         0
## 93   -10.674737  35.64183            1       1         1         0
## 94    -9.930898  39.72115            0       0         0         0
## 95    -3.903049  35.81426            0       0         0         0
## 96    -6.833702  39.24087            1       0         0         0
## 97    -3.627541  33.40639            0       0         0         0
## 98    -2.040158  33.83592            0       0         1         0
## 99    -2.745153  31.88754            1       0         1         0
## 100   -3.674167  33.44101            1       1         1         0
## 101   -7.757071  35.48008            1       1         0         0
## 102   -7.255773  31.39929            1       1         1         0
## 103   -6.170265  39.22253            1       1         0         0
## 104  -10.519409  38.67833            1       1         0         1
## 105   -8.460328  32.15848            0       0         1         0
## 106   -7.681498  36.03874            1       0         1         1
## 107   -2.774334  32.70359            0       1         1         0
## 108   -1.498239  33.80839            1       1         0         0
## 109   -4.796151  38.29238            1       0         0         0
## 110   -2.416812  32.93535            1       0         0         0
## 111   -7.289010  38.99792            1       0         1         0
## 112  -11.042891  37.43361            0       0         0         0
## 113   -9.240114  33.33921            0       0         0         0
## 114   -4.642396  38.32172            0       0         0         0
## 115   -8.295487  31.52009            0       0         0         0
## 116   -6.885442  39.15487            1       0         0         0
## 117   -8.584248  35.20766            1       0         0         0
## 118   -2.037014  33.02725            0       1         1         1
## 119   -3.545571  36.98625            0       0         0         0
## 120  -10.281696  40.19748            1       0         0         0
## 121   -9.335193  34.76613            0       1         0         0
## 122  -11.107797  39.32546            0       0         0         0
## 123   -9.295657  32.75979            1       0         1         0
## 124   -6.819074  39.23892            1       1         0         0
## 125   -8.616326  39.26434            0       0         1         0
## 126   -3.147341  32.36981            0       0         0         0
## 127   -3.348855  35.78177            1       0         1         0
## 128   -5.605736  36.56213            0       0         1         0
## 129   -1.875367  33.70181            0       0         0         1
## 130   -6.220586  39.23271            1       0         0         0
## 131   -4.613718  34.95000            1       1         1         1
## 132   -2.844044  33.08184            1       1         1         1
## 133   -7.780921  35.69346            0       0         0         0
## 134   -3.282538  32.87852            0       0         0         0
## 135  -10.779779  39.54917            1       1         1         0
## 136   -8.844225  34.82568            1       0         0         0
## 137   -7.110450  31.16725            0       0         0         1
## 138  -10.663179  38.75114            1       1         1         1
## 139   -8.635658  31.42978            1       0         1         0
## 140  -10.853290  39.27796            1       0         0         0
## 141   -4.760987  34.58148            0       1         1         0
## 142   -6.907859  39.16891            1       1         0         1
## 143   -9.010237  33.00567            1       0         0         0
## 144   -1.959388  35.34817            0       0         0         0
## 145   -8.905958  33.46200            1       1         1         1
## 146  -10.629344  35.70398            1       0         0         0
## 147   -5.241083  32.33783            0       0         0         0
## 148   -3.358085  36.68217            1       1         1         0
## 149   -9.405595  39.59767            0       0         0         0
## 150   -6.121117  38.40738            1       1         0         0
## 151   -6.857071  39.28186            1       0         0         0
## 152   -3.420720  30.74116            0       0         1         0
## 153   -6.798244  39.24889            1       1         0         0
## 154  -10.661450  35.65716            1       1         0         0
## 155   -6.163611  39.19200            0       0         0         0
## 156   -7.750966  35.86474            1       1         1         1
## 157  -10.784345  38.62104            0       0         1         0
## 158   -5.618218  32.74653            1       0         0         0
## 159   -8.847223  34.82324            0       0         0         0
## 160   -6.153780  35.73856            1       0         0         0
## 161   -4.215867  35.73768            1       0         0         0
## 162   -8.695957  34.37510            1       1         0         1
## 163   -8.777397  33.64056            1       0         1         0
## 164   -7.251994  31.39577            0       0         0         0
## 165   -2.597026  32.91296            1       1         0         0
## 166   -1.302024  33.94419            1       0         0         0
## 167   -6.897877  39.28304            1       0         0         0
## 168   -4.775708  33.23886            0       0         0         0
## 169   -9.294164  32.76012            0       0         0         0
## 170  -10.551023  39.79038            0       1         0         1
## 171   -4.362962  35.07469            1       0         1         0
## 172   -8.802597  34.22394            1       0         0         0
## 173   -9.463246  33.95387            0       1         0         0
## 174  -10.849092  39.69424            0       0         0         0
## 175   -8.860809  34.00852            0       0         0         0
## 176   -7.934367  35.62788            1       1         0         1
## 177   -6.156445  39.21357            1       0         1         0
## 178   -1.497544  33.81604            1       1         1         1
## 179   -2.415815  32.93552            1       0         1         0
## 180  -10.344932  40.24872            0       0         1         0
## 181   -6.844976  39.27956            1       1         1         0
## 182   -4.269849  38.05020            1       0         1         0
## 183   -6.191095  31.22190            1       0         1         1
## 184   -1.568206  30.88958            0       0         1         0
## 185   -3.253247  34.21561            0       0         1         0
## 186   -9.954110  39.32897            0       0         1         0
## 187   -5.052858  33.49014            0       1         1         0
## 188   -2.401976  32.33061            0       0         0         0
## 189  -10.442330  36.05890            0       0         1         1
## 190   -2.535150  32.96039            1       1         1         1
## 191   -4.065121  35.28788            0       0         0         0
## 192   -2.752715  31.88174            1       0         1         0
## 193  -10.828834  34.88715            1       0         1         0
## 194   -2.776980  32.70354            0       1         1         0
## 195   -3.871249  35.65141            0       0         0         0
## 196   -5.867472  35.07340            0       1         0         0
## 197   -4.873362  38.45562            1       0         1         0
## 198   -6.184964  39.20752            1       1         0         0
## 199   -6.793946  39.25061            1       1         1         0
## 200   -3.287257  37.37458            0       0         0         0
## 201   -9.331522  33.33315            1       0         0         0
## 202   -3.353460  37.56767            1       0         0         0
## 203   -5.011343  32.80220            1       0         0         0
## 204   -2.060479  35.47691            0       0         0         0
## 205   -3.545911  36.98624            1       1         0         0
## 206   -8.074549  31.93359            0       1         0         0
## 207   -5.866409  35.13523            0       1         1         0
## 208   -2.769081  32.69200            1       1         1         0
## 209   -6.743296  32.48179            0       0         0         0
## 210   -8.590996  35.15098            1       0         1         0
## 211   -4.455599  33.95443            0       1         0         0
## 212   -8.906000  33.45583            1       0         1         0
## 213   -4.603282  34.65740            0       1         0         0
## 214   -2.609280  32.06952            0       0         1         0
## 215   -1.723663  33.96093            1       1         0         0
## 216   -2.636411  32.27621            1       0         0         0
## 217   -5.183178  39.79332            0       0         0         0
## 218   -6.811831  39.24486            0       1         1         0
## 219   -6.657472  37.14428            1       0         1         0
## 220   -5.125592  38.38524            1       0         0         0
## 221   -6.128432  39.21582            0       1         1         0
## 222   -7.490266  30.59744            0       0         0         0
## 223   -3.525608  35.34402            1       0         0         0
## 224   -8.696757  34.37410            0       0         0         1
## 225   -6.662062  37.13561            1       1         1         0
## 226   -4.185944  33.13411            1       0         1         0
## 227  -11.112992  38.47258            0       1         1         1
## 228   -7.141858  39.07478            0       1         1         0
## 229   -6.142630  39.24135            1       0         1         0
## 230   -4.188187  33.12340            0       1         1         0
## 231   -6.844786  39.27936            0       0         0         0
## 232   -6.173131  39.22521            0       0         0         0
## 233   -9.164725  33.81672            0       0         1         0
## 234   -6.212815  34.83488            1       1         0         1
## 235   -4.466974  35.69146            0       0         0         0
## 236   -2.905372  32.74710            0       1         1         0
## 237   -4.849303  34.83936            0       1         1         0
## 238   -9.011469  33.00584            0       0         0         0
## 239   -6.148424  39.22327            1       0         1         0
## 240   -2.018018  33.87930            0       1         0         0
## 241   -7.697167  35.62144            1       1         0         0
## 242   -4.744900  29.69787            1       1         0         1
## 243  -11.112724  38.47243            1       1         0         1
## 244   -3.300823  34.20970            0       1         0         0
## 245   -3.387680  36.67019            1       1         1         0
## 246   -1.513483  33.80911            1       1         0         0
## 247   -6.931571  39.26271            1       0         0         0
## 248   -4.545269  31.96504            1       0         0         0
## 249   -5.104970  32.39614            0       0         1         0
## 250   -4.638348  38.19302            1       1         0         1
## 251   -2.347185  32.29514            0       0         1         0
## 252   -6.264926  36.86952            1       1         1         0
## 253   -4.642978  38.32028            1       1         0         0
## 254  -11.039856  37.18551            0       0         0         0
## 255   -2.063752  35.55784            0       0         0         0
## 256   -6.301055  33.84649            0       1         0         0
## 257   -5.615290  38.27523            0       0         0         0
## 258   -3.103718  31.08312            1       0         1         0
## 259   -9.000066  34.54953            1       0         0         0
## 260  -10.181910  38.94369            1       1         0         0
## 261   -4.196712  34.82013            0       0         0         0
## 262  -11.040754  37.18215            0       0         0         0
## 263   -6.849305  39.14634            1       0         1         0
## 264   -3.070385  33.35457            1       0         1         0
## 265   -7.873138  30.79579            1       1         1         0
## 266   -2.523244  32.96335            1       1         1         0
## 267  -10.128376  39.13902            0       1         1         0
## 268   -4.268993  35.68586            0       0         0         0
## 269   -5.322255  34.51866            0       0         0         0
## 270   -8.764780  31.84100            0       0         1         0
## 271   -3.906508  35.81326            0       1         1         0
## 272   -2.979759  34.25998            0       1         0         0
## 273   -2.377594  33.58021            1       1         1         1
## 274   -5.887828  39.25355            0       0         0         0
## 275   -4.907854  29.66219            1       0         0         0
## 276   -2.634961  33.97212            1       0         0         0
## 277   -7.191244  31.02309            1       0         1         0
## 278   -2.103280  31.49478            0       0         0         0
## 279   -6.792464  39.24096            1       1         0         0
## 280   -3.559171  36.98752            1       1         1         1
## 281   -3.820754  37.45852            1       1         1         0
## 282   -8.370363  31.71733            0       0         0         0
## 283  -10.951186  39.02943            1       1         1         0
## 284  -10.287815  40.11716            1       0         0         0
## 285   -2.769726  32.59721            0       1         0         1
## 286   -9.327941  33.70485            0       0         1         0
## 287   -5.132928  39.09780            0       1         0         0
## 288   -8.973461  33.95759            0       1         0         0
## 289   -7.429241  31.37628            1       1         0         1
## 290   -2.539014  33.19913            1       0         1         0
## 291   -3.211082  37.26119            1       0         0         0
## 292   -7.106507  31.16539            0       1         0         0
## 293  -10.286637  40.11661            1       0         0         0
## 294   -5.879811  35.12092            0       1         0         0
## 295   -3.169872  33.30070            1       1         0         1
## 296   -5.041131  34.75544            0       0         0         0
## 297   -2.534127  32.93342            1       1         0         0
## 298   -5.329121  34.51971            0       0         0         0
## 299  -10.827532  34.88608            0       0         1         0
## 300   -6.800089  39.25587            1       0         0         0
## 301   -6.897340  39.25251            1       0         0         0
## 302   -7.782667  35.71354            1       0         0         0
## 303  -10.493106  39.32400            1       1         1         1
## 304   -9.336857  34.76603            0       1         0         0
## 305   -6.854797  30.52560            0       1         0         0
## 306   -6.484753  31.11700            0       0         0         0
## 307  -10.692438  39.39623            1       0         1         0
## 308   -2.641297  32.78498            0       0         0         1
## 309  -10.642997  38.84683            0       0         1         0
## 310   -3.739584  37.66097            1       0         0         0
## 311   -9.203381  34.56231            1       1         0         0
## 312   -2.518059  32.91151            1       1         1         0
## 313   -9.104020  33.18237            0       0         1         0
## 314   -2.801443  33.99067            1       1         0         0
## 315   -9.442549  33.55591            1       0         1         1
## 316   -4.356816  37.82229            1       1         1         0
## 317   -3.252566  34.21582            0       0         1         0
## 318   -4.545061  31.96526            1       0         1         0
## 319   -3.366650  37.31895            1       0         0         0
## 320   -1.630723  31.44443            0       0         0         0
## 321   -9.954605  39.33124            1       0         1         0
## 322   -4.489448  35.60621            0       0         1         0
## 323   -2.195641  31.44535            0       1         1         0
## 324  -11.144231  37.51044            1       1         1         1
## 325   -3.002279  31.94635            0       0         0         0
## 326   -1.335447  30.90514            0       0         1         0
## 327   -4.188567  35.02130            1       0         0         0
## 328   -5.037426  38.88133            0       0         0         0
## 329   -3.044137  31.37516            1       0         1         0
## 330   -6.345682  31.06963            0       0         0         0
## 331   -4.823232  34.75150            1       0         1         0
## 332   -1.863771  33.86567            0       0         0         0
## 333   -4.895145  38.57563            0       0         0         0
## 334   -1.208473  31.40702            0       1         1         0
## 335   -5.603523  36.56622            1       0         1         0
## 336   -5.974767  29.85589            1       1         1         1
## 337   -3.366902  36.71639            1       1         1         1
## 338   -4.199982  30.49019            0       0         1         0
## 339   -6.059043  37.09621            1       0         1         0
## 340  -10.280398  40.19799            1       0         0         1
## 341   -3.079075  32.08483            1       0         0         0
## 342   -6.341885  31.06502            1       1         1         1
## 343   -8.896037  31.69136            0       0         0         1
## 344   -7.909390  39.67025            0       0         0         0
## 345   -6.239907  39.53002            0       1         0         0
## 346   -4.268837  38.05366            1       0         0         0
## 347   -4.943768  38.91569            0       0         0         0
## 348  -10.378108  39.84106            0       1         0         1
## 349   -2.777050  32.70326            0       1         0         0
## 350   -2.963889  33.34137            0       0         0         1
## 351   -5.605833  36.56221            1       1         1         0
## 352   -3.821281  37.45938            0       1         0         0
## 353   -8.297941  35.28262            1       1         0         0
## 354   -3.443411  37.43350            1       0         0         0
## 355   -7.975373  31.62949            1       0         1         0
## 356   -2.523538  32.96288            1       1         1         0
## 357   -7.838941  35.63902            0       0         0         0
## 358  -10.860940  39.28016            1       1         0         0
## 359   -2.704197  33.48899            1       1         0         0
## 360   -2.870928  33.28540            0       0         0         1
## 361  -10.562191  39.17013            1       1         0         0
## 362   -3.348458  37.45972            0       0         0         0
## 363  -11.077934  38.27428            0       0         0         1
## 364   -4.962391  34.94210            0       0         0         0
## 365   -8.686935  36.70570            0       1         1         0
## 366   -3.564367  36.98124            1       1         1         0
## 367   -3.422855  30.73987            1       0         1         1
## 368  -10.893691  38.98678            0       0         0         0
## 369   -3.372700  36.65887            1       1         0         0
## 370   -7.380402  31.36434            0       0         0         1
## 371   -1.099997  34.01068            0       1         0         0
## 372   -3.200963  34.42227            0       0         0         0
## 373   -7.979895  31.63732            1       0         1         0
## 374   -8.825045  34.95897            0       1         1         0
## 375   -8.848541  32.28139            1       0         0         0
## 376   -5.046095  33.50275            1       1         1         0
## 377   -6.187375  39.21643            1       1         1         0
## 378   -5.873497  39.29242            0       1         1         0
## 379   -5.875086  39.25422            0       1         0         0
## 380   -6.208290  39.38595            0       0         1         0
## 381   -3.561104  33.89020            0       0         1         0
## 382  -10.603943  35.61389            1       0         1         0
## 383   -4.915051  34.93223            1       0         1         0
## 384   -6.161793  34.85769            0       0         1         0
## 385   -9.077891  34.64864            0       1         0         0
## 386   -5.763183  38.70204            0       1         0         0
## 387   -7.980074  31.63643            0       0         0         1
## 388   -6.751968  38.93444            1       0         1         0
## 389   -6.485667  35.94317            0       0         1         0
## 390   -1.249261  31.66376            0       1         1         0
## 391   -9.249496  32.83672            1       0         0         0
## 392   -8.934728  33.34384            1       1         0         0
## 393  -10.900564  39.63933            0       0         0         0
## 394   -2.961864  34.14980            0       0         0         0
## 395  -11.260035  34.79371            1       1         1         0
## 396  -10.793808  38.31887            1       0         0         1
## 397   -7.520484  39.28717            1       0         1         0
## 398   -5.238302  39.77755            1       1         0         0
## 399   -2.775613  33.79583            0       0         1         0
## 400   -6.137421  39.22995            0       0         0         0
## 401  -10.369849  39.22202            1       1         0         0
## 402   -3.864171  32.61097            1       0         0         0
## 403   -5.982628  39.28634            1       1         0         0
## 404   -7.750790  35.86440            1       0         1         0
## 405   -5.246152  39.78143            0       1         1         0
## 406   -9.347154  34.26108            1       1         1         0
## 407   -3.398257  36.53062            1       1         0         1
## 408   -2.979613  34.26952            1       1         1         0
## 409   -3.828861  30.63579            1       0         1         0
## 410   -6.125816  39.21909            0       0         0         0
## 411   -7.166858  30.53542            0       1         0         0
## 412   -6.155475  39.21215            0       0         0         0
## 413   -6.783983  39.23907            1       1         0         1
## 414   -6.742754  32.48287            0       0         0         0
## 415   -6.792668  39.24105            1       0         1         0
## 416   -9.601324  33.86540            0       0         0         0
## 417   -8.951976  33.24725            1       0         1         0
## 418   -5.677415  38.42597            1       0         1         1
## 419  -10.951173  39.02943            1       1         1         0
## 420   -2.415767  32.93514            1       1         1         0
## 421   -9.174879  32.86261            1       1         1         0
## 422   -7.786718  31.68321            1       0         1         0
## 423   -6.768802  39.26405            1       1         1         0
## 424   -3.196830  37.64922            1       0         0         0
## 425   -8.897929  33.45462            1       1         1         0
## 426   -9.006916  33.06786            1       1         1         0
## 427   -8.839791  34.80556            1       1         1         1
## 428   -7.118978  39.20020            1       0         0         0
## 429   -2.316523  32.68360            1       1         1         0
## 430   -9.001133  32.81153            1       0         0         0
## 431   -4.216691  35.73719            1       1         1         0
## 432   -7.945280  31.63928            1       1         0         0
## 433   -6.175935  39.24439            0       0         0         0
## 434   -8.123703  35.41988            0       0         0         0
## 435   -4.607088  34.46569            0       0         0         0
## 436   -6.960959  39.33519            1       1         1         0
## 437  -10.452590  39.41371            0       0         0         0
## 438   -6.538450  38.99099            1       0         1         0
## 439   -4.481284  34.19435            1       0         0         1
## 440   -1.234919  30.94733            0       1         1         0
## 441   -8.409383  35.86672            0       0         0         0
## 442   -6.485977  31.11694            0       1         0         0
## 443   -4.577621  30.30198            0       1         0         0
## 444   -3.745123  37.66582            1       1         0         1
## 445   -6.484983  35.93960            1       0         1         0
## 446   -7.490884  30.59589            0       1         1         0
## 447   -5.953726  39.26362            0       0         0         0
## 448   -5.350433  39.70199            1       1         0         0
## 449   -1.396004  34.61867            1       0         1         0
## 450   -9.493811  34.65333            1       0         0         0
## 451   -6.193548  36.37211            1       1         0         0
## 452  -10.694118  39.79462            0       0         0         0
## 453   -8.562328  35.33731            1       1         0         0
## 454  -10.098016  34.68721            1       1         0         0
## 455   -8.934525  33.34370            0       0         1         0
## 456   -8.351521  31.83402            0       0         0         0
## 457   -9.987597  38.96514            1       0         0         0
## 458   -2.386796  33.09744            1       1         0         0
## 459   -2.856078  30.54669            0       1         1         0
## 460   -4.073442  37.98994            1       0         0         0
## 461   -5.952817  36.69149            1       0         1         0
## 462   -3.429924  37.29028            1       1         1         0
## 463   -8.806513  34.97654            0       0         0         0
## 464   -4.610622  35.03752            0       0         0         0
## 465   -2.376992  33.58297            1       0         1         0
## 466  -10.863138  39.02731            0       1         1         0
## 467   -7.483167  31.18866            0       0         1         0
## 468   -3.387308  36.67108            1       0         1         0
## 469   -5.236976  39.78056            0       1         1         0
## 470   -2.456528  33.63985            1       0         0         0
## 471   -6.206686  34.83610            1       0         1         0
## 472   -1.782937  34.72699            1       1         1         0
## 473   -6.871658  38.57175            1       0         0         0
## 474   -4.204748  32.33176            0       0         0         0
## 475   -6.144322  35.73491            1       0         1         0
## 476  -10.917921  38.00300            0       0         0         0
## 477   -4.510312  34.17508            0       0         1         0
## 478   -5.929299  39.23306            0       0         0         0
## 479   -4.431526  34.46536            0       0         0         0
## 480   -4.351797  34.43500            0       1         0         0
## 481   -6.173824  35.63869            1       1         1         1
## 482   -5.136158  34.77293            1       1         1         0
## 483   -2.555089  33.05302            1       1         1         0
## 484   -6.823067  39.31011            1       1         0         1
## 485   -1.333372  30.90686            0       0         1         0
## 486   -5.087740  31.84774            0       0         0         0
## 487   -8.896828  31.69163            0       0         1         1
## 488   -8.297016  34.90485            0       0         0         0
## 489   -6.344063  31.08271            0       0         0         0
## 490   -4.580134  30.30334            0       1         1         0
## 491   -9.012380  33.06852            1       1         0         0
## 492   -5.346835  36.43177            0       0         0         0
## 493   -4.864235  30.34152            0       0         0         0
## 494   -6.161794  39.19225            1       1         1         0
## 495   -7.501528  31.43542            0       1         0         0
## 496   -6.157547  39.24593            1       1         0         0
## 497   -7.943048  31.63910            1       0         0         0
## 498   -8.509026  35.05530            1       0         0         1
## 499   -2.505295  32.00959            0       0         0         1
## 500   -7.119389  37.80367            0       0         0         0
## 501  -10.549913  39.78831            1       0         1         0
## 502   -6.880398  39.25065            1       1         0         0
## 503   -6.330410  31.06473            1       1         1         1
## 504   -4.887248  29.63958            0       0         0         0
## 505   -1.178618  31.42527            1       0         1         0
## 506   -6.522827  37.21554            0       1         1         0
## 507   -2.880233  37.37065            0       1         1         0
## 508   -5.083258  31.84803            0       0         0         0
## 509   -3.870967  32.76275            1       0         1         0
## 510   -6.334194  31.07925            1       1         1         0
## 511  -10.606220  39.62229            0       1         0         0
## 512   -9.215652  33.07898            1       0         0         0
## 513   -6.773837  36.64776            1       1         1         1
## 514   -2.533452  32.93166            1       1         0         1
## 515   -5.128472  39.10187            0       1         1         0
## 516   -7.997281  35.51670            1       0         1         0
## 517   -9.599984  33.86392            0       0         0         0
## 518   -2.479219  32.90873            1       0         0         0
## 519   -5.245700  39.76819            1       1         0         0
## 520   -3.720849  32.67924            1       0         1         1
## 521   -4.435023  30.02593            1       1         1         0
## 522   -9.174834  32.86467            1       1         0         0
## 523   -5.246045  39.78138            0       0         0         0
## 524   -2.525426  32.90297            1       1         0         0
## 525   -1.237315  34.23270            1       0         0         0
## 526   -2.107253  33.07570            1       1         1         0
## 527   -1.089506  31.80645            1       1         1         0
## 528   -3.368890  37.32185            1       0         0         1
## 529  -10.243959  38.25158            0       0         0         0
## 530   -8.496958  35.59041            1       1         0         0
## 531   -4.877587  31.58217            0       0         1         0
## 532   -1.340950  34.37664            0       0         0         0
## 533   -6.801584  39.25610            1       1         1         0
## 534   -8.282102  35.30936            1       1         0         0
## 535   -3.328359  36.63484            1       0         0         1
## 536   -9.212787  33.08299            1       0         1         0
## 537   -6.331498  31.06614            0       1         1         0
## 538   -8.929726  33.51238            1       0         0         0
## 539   -7.108497  31.16780            0       0         0         1
## 540   -8.278952  36.16308            1       0         1         0
## 541   -2.802618  33.99150            1       1         1         1
## 542   -2.518358  32.91259            1       1         1         0
## 543   -2.543599  32.97678            1       1         0         0
## 544   -3.367349  36.68591            1       1         0         0
## 545   -3.351811  37.34884            1       1         0         0
## 546   -5.246267  39.78131            1       0         1         0
## 547   -7.948720  35.78571            1       0         0         0
## 548   -9.336732  34.76600            0       1         1         1
## 549   -6.858264  39.23410            1       0         1         0
## 550   -3.374429  35.85422            1       1         1         0
## 551   -4.054862  32.24252            0       1         1         0
## 552   -6.241727  39.52942            1       1         1         0
## 553   -5.085428  31.84662            0       1         1         0
## 554   -9.174452  32.86430            1       0         0         0
## 555   -6.852880  39.25272            1       1         0         0
## 556   -2.533642  32.93235            1       1         0         0
## 557   -6.167751  35.89135            1       0         1         0
## 558  -10.244265  38.25265            0       0         1         0
## 559   -2.775401  33.79571            1       1         0         0
## 560   -6.002638  37.74761            0       1         0         0
## 561  -10.697917  35.80059            1       1         1         0
## 562   -8.296885  31.51606            0       0         0         0
## 563   -2.681389  30.57979            1       1         0         0
## 564   -6.160834  34.84365            0       1         1         0
## 565   -8.848432  34.82376            1       0         0         1
## 566   -9.253212  32.83682            1       0         1         0
## 567   -8.543366  34.44228            1       0         0         0
## 568   -3.382967  35.50345            1       1         1         1
## 569   -6.410001  35.10643            0       0         0         0
## 570   -8.687845  36.70755            1       0         0         1
## 571   -2.502878  33.55027            0       0         1         1
## 572   -2.462953  32.38394            0       0         0         0
## 573   -5.968360  39.19610            0       0         0         0
## 574   -4.801293  32.43059            0       0         0         0
## 575   -2.506915  33.54625            0       0         0         0
## 576   -5.440896  37.76881            0       0         0         0
## 577   -1.650807  31.70748            1       1         1         0
## 578   -8.883027  33.29293            0       0         1         0
## 579   -6.586633  36.08064            1       0         1         1
## 580   -9.083480  33.56219            0       1         0         0
## 581   -2.669543  32.98413            0       1         1         0
## 582   -6.484302  35.93892            1       0         0         0
## 583   -5.954697  35.96853            0       0         0         0
## 584   -4.760894  34.20092            0       0         1         1
## 585   -7.827022  33.35099            0       0         0         0
## 586   -1.335952  30.90493            0       0         0         0
## 587  -11.144555  37.51214            0       0         0         0
## 588   -6.951559  39.33051            1       0         0         0
## 589  -10.672729  35.64100            1       0         1         0
## 590   -9.083711  34.65344            0       1         0         0
## 591   -7.496951  31.03377            0       1         0         0
## 592   -2.748364  31.62747            0       0         0         1
## 593   -3.358981  36.66100            1       1         1         0
## 594   -4.881635  29.64784            1       0         1         0
## 595   -6.896591  39.25345            0       0         0         0
## 596   -6.948591  39.23188            1       0         0         0
## 597   -3.342265  35.78733            1       0         1         0
## 598   -1.876115  33.70149            1       1         0         0
## 599   -1.438035  34.58890            0       1         0         0
## 600   -6.041485  39.23010            1       0         0         0
## 601   -4.146826  32.88942            0       0         1         0
## 602   -7.045480  39.03073            0       0         0         0
## 603   -2.499938  33.54656            0       1         1         1
## 604   -4.438947  30.03459            0       0         1         0
## 605   -9.174398  32.86384            0       1         0         0
## 606   -5.693600  34.49531            1       1         1         1
## 607   -8.202698  35.99768            1       0         1         0
## 608   -7.497040  31.03245            1       0         0         0
## 609   -6.734163  38.84894            1       0         1         0
## 610   -6.784537  39.01631            1       0         0         0
## 611   -8.221546  35.46092            1       0         1         1
## 612  -11.034050  35.12097            0       0         1         0
## 613   -4.575918  30.09259            0       0         0         0
## 614   -4.454058  29.81093            1       0         1         0
## 615   -4.482062  34.19564            0       1         0         1
## 616  -10.203384  40.03890            1       0         0         0
## 617   -9.338054  34.56067            1       1         0         0
## 618   -7.955370  36.86374            0       1         0         0
## 619   -7.868047  35.40623            0       1         0         1
## 620   -6.873695  39.17482            0       1         1         0
## 621   -2.589076  32.64506            0       1         0         1
## 622   -3.217375  36.86661            1       1         1         0
## 623   -3.751652  32.85322            1       1         1         0
## 624   -4.502347  34.16541            0       1         0         0
## 625   -6.856450  39.28190            1       1         0         1
## 626  -10.847712  39.69935            1       1         0         0
## 627   -1.571293  30.88618            1       0         1         1
## 628   -6.931022  39.26420            1       1         1         0
## 629  -10.344922  40.24879            1       0         0         0
## 630   -4.193169  33.13199            0       0         1         0
## 631   -8.410753  35.36654            1       0         1         0
## 632   -6.678311  39.20479            1       0         0         0
## 633   -9.270369  33.36344            0       0         0         0
## 634  -10.281707  40.19750            1       0         0         0
## 635  -10.793825  39.59613            0       1         0         0
## 636   -7.216001  38.79324            0       0         0         0
## 637   -8.802407  34.22164            1       0         0         0
## 638   -8.905060  32.96149            1       0         0         0
## 639   -7.999127  35.85235            0       0         1         0
## 640   -4.482683  30.16062            0       1         0         0
## 641   -7.041571  30.56129            1       1         1         1
## 642   -2.711093  32.72457            0       1         0         0
## 643   -1.975942  32.91388            1       1         0         0
## 644   -2.397797  32.06342            0       1         0         0
## 645   -8.203472  36.69363            0       1         1         0
## 646   -5.246350  39.78141            0       0         0         0
## 647   -8.879760  34.82585            1       0         0         0
## 648   -4.740031  38.35021            1       0         1         0
## 649   -4.482911  30.16142            1       1         0         1
## 650   -8.906579  34.67260            1       1         0         0
## 651   -2.640628  32.78334            0       0         0         0
## 652   -6.744112  38.93101            1       0         0         0
## 653   -8.848410  32.28136            1       0         0         0
## 654   -8.205215  35.99778            0       0         1         0
## 655   -7.833434  33.35174            0       0         0         0
## 656   -5.122775  38.38481            0       0         1         0
## 657   -5.134827  34.77145            1       1         1         1
## 658   -2.608383  32.06985            1       1         1         0
## 659   -1.567965  30.88283            0       1         0         0
## 660   -6.375635  38.35002            1       0         1         0
## 661   -8.875282  34.82419            1       1         1         0
## 662  -10.834925  38.65013            0       0         0         0
## 663   -1.233503  34.22592            1       0         1         0
## 664   -6.798304  39.24894            1       1         1         0
## 665   -4.677560  38.46839            1       0         1         0
## 666   -6.345043  31.08317            0       0         0         0
## 667   -6.792645  39.24001            1       1         0         0
## 668   -9.246992  34.77573            0       1         0         0
## 669   -8.088196  36.68237            1       0         0         0
## 670   -8.296041  31.51167            0       0         0         1
## 671  -10.919520  35.27903            1       1         1         1
## 672   -7.596765  39.22961            1       1         1         0
## 673   -6.674549  39.17874            1       0         1         0
## 674   -3.522947  35.34588            1       0         1         0
## 675   -8.262122  35.30209            0       0         0         1
## 676   -7.647118  35.75620            0       1         1         1
## 677   -6.883253  39.25321            0       0         0         0
## 678  -10.911303  38.29750            1       1         0         1
## 679  -11.047807  34.76365            1       1         0         0
## 680   -6.135115  39.32389            0       0         0         0
## 681   -7.740814  35.87432            1       1         0         1
## 682   -9.988118  38.96452            1       1         1         0
## 683   -5.249295  32.34454            1       0         0         0
## 684   -6.162706  35.63959            0       0         0         1
## 685   -6.844802  39.27961            1       0         1         0
## 686   -5.125842  38.38466            1       0         0         0
## 687   -4.551515  34.84324            1       1         0         0
## 688   -7.759743  35.85600            1       1         1         0
## 689   -8.386332  33.23017            0       0         1         0
## 690   -6.743765  32.48060            0       1         0         0
## 691   -3.628043  34.26937            0       0         0         0
## 692   -9.249638  32.83648            1       1         0         0
## 693   -5.553021  37.33960            0       0         0         0
## 694  -10.128545  39.13891            0       1         0         1
## 695   -6.794004  39.25044            0       0         0         0
## 696   -7.681020  31.56045            1       0         1         0
## 697   -1.794876  34.72726            0       0         0         0
## 698   -5.024822  34.76461            0       0         0         0
## 699  -10.196750  38.56411            1       1         0         0
## 700   -3.347075  37.30240            1       1         0         1
## 701   -3.493885  36.81844            1       0         1         1
## 702   -3.360694  37.02811            1       0         1         0
## 703  -10.407368  39.16585            1       1         1         1
## 704  -10.361232  40.10445            0       0         1         0
## 705   -5.102358  39.80807            0       1         1         0
## 706  -11.014966  34.88006            1       1         1         0
## 707   -2.753136  31.65280            1       1         1         0
## 708  -10.180767  38.94161            1       0         0         0
## 709   -3.215508  36.86083            0       0         0         0
## 710   -7.751862  35.68172            1       1         0         0
## 711   -3.376479  36.67656            0       0         0         0
## 712   -6.079457  36.64711            1       1         0         1
## 713   -7.867612  35.40623            0       0         1         1
## 714   -5.926765  39.22105            0       0         1         0
## 715   -9.639440  34.57478            1       1         0         1
## 716   -8.630674  33.14908            1       0         0         0
## 717   -8.103924  35.90298            1       0         1         1
## 718   -8.696094  34.37366            1       1         1         1
## 719   -4.359322  35.07495            0       0         0         0
## 720   -6.207871  39.38608            0       0         1         0
## 721   -4.357362  37.82197            1       0         1         1
## 722   -4.624469  34.94520            0       0         0         0
## 723   -3.030877  33.25054            0       0         0         0
## 724   -2.599781  33.42122            1       1         1         0
## 725  -10.347772  40.08527            1       1         1         1
## 726   -3.743557  33.83470            0       0         0         0
## 727   -1.840512  31.14021            0       1         0         1
## 728   -6.768348  39.26735            1       0         1         0
## 729   -6.774287  36.64687            0       1         1         0
## 730   -8.433743  31.65853            0       0         0         1
## 731   -4.825238  34.75312            1       1         1         0
## 732  -10.203087  38.61948            1       1         0         0
## 733   -1.643161  31.43036            1       1         1         0
## 734   -7.481828  35.97683            0       0         0         0
## 735   -3.741618  33.83798            0       0         1         0
## 736   -8.902091  32.96400            0       1         1         0
## 737   -4.734325  34.92381            1       1         1         1
## 738   -4.874275  36.79100            0       1         0         0
## 739   -2.987156  34.19036            0       0         1         0
## 740   -4.186206  34.24277            1       1         0         0
## 741  -10.939607  34.99763            1       0         0         0
## 742   -3.430437  37.29052            1       1         1         0
## 743   -8.965028  32.89908            0       0         0         0
## 744   -4.876151  34.63017            1       1         0         0
## 745   -4.013727  34.51307            0       0         0         0
## 746   -4.916418  34.67375            0       1         0         0
## 747   -1.356994  31.63398            1       1         1         0
## 748   -6.242119  39.53025            1       1         1         0
## 749   -9.336808  34.76595            0       0         0         0
## 750   -6.149321  39.51664            1       1         0         0
## 751   -5.132168  39.09657            1       1         1         0
## 752   -5.608584  38.27904            0       0         1         0
## 753   -4.360872  29.96591            1       0         1         0
## 754   -6.054137  37.08920            0       0         0         1
## 755   -1.694281  34.29524            0       0         0         0
## 756   -4.489362  35.60642            0       0         0         0
## 757   -8.303533  32.32578            0       0         1         0
## 758   -2.824096  33.56847            1       1         1         0
## 759   -3.362605  36.48346            0       0         1         1
## 760  -10.665548  38.75009            0       0         1         0
## 761   -4.944119  38.91484            0       0         1         0
## 762   -1.176994  31.42242            0       1         1         0
## 763   -7.291475  36.06158            1       1         0         1
## 764  -10.857757  39.27922            1       0         0         1
## 765   -8.452301  35.17381            1       1         0         0
## 766   -4.120960  34.83554            1       0         1         0
## 767   -3.630122  34.29560            1       0         0         0
## 768  -10.107788  39.62153            0       0         0         0
## 769   -8.252518  31.98803            1       1         1         0
## 770   -6.758968  36.47029            1       0         1         0
## 771   -1.512548  33.80892            1       1         0         0
## 772   -4.432074  30.02836            1       1         0         1
## 773   -4.984155  39.83427            0       0         0         0
## 774   -3.102101  37.59077            1       1         0         1
## 775   -2.698431  33.48642            0       1         0         0
## 776   -3.214105  31.78429            1       1         1         0
## 777   -4.990917  39.07661            1       0         0         0
## 778   -7.797489  35.77105            1       1         1         1
## 779   -3.658031  32.23175            1       0         1         0
## 780   -2.017218  33.46502            1       1         0         0
## 781  -10.683534  39.59331            0       1         1         0
## 782   -6.807494  39.23123            1       0         1         0
## 783   -5.192490  38.76435            0       0         0         0
## 784   -4.200826  30.49374            0       0         0         0
## 785   -5.695991  36.63142            0       0         0         0
## 786   -4.641922  34.18432            0       1         0         0
## 787   -4.200235  32.32572            0       0         1         0
## 788   -4.683379  35.95498            1       0         0         0
## 789  -10.921938  39.38392            0       0         1         0
## 790   -9.011527  33.06948            1       0         0         0
## 791   -5.226239  35.17876            0       0         0         1
## 792   -3.365808  33.53942            1       1         1         1
## 793   -7.252047  31.39579            0       1         0         0
## 794   -9.169366  33.54174            1       1         1         0
## 795   -5.181991  38.79147            0       1         1         0
## 796   -3.822684  37.46291            1       1         1         0
## 797   -3.373275  36.65844            1       1         0         0
## 798   -3.030828  33.92736            1       1         1         0
## 799   -9.005242  34.54913            1       0         0         0
## 800   -4.887248  29.63958            1       1         0         0
## 801   -4.545303  31.96518            0       1         1         0
## 802   -3.042386  35.48199            0       0         1         0
## 803   -2.485763  32.92276            1       0         0         0
## 804   -3.830379  30.63567            1       1         1         0
## 805   -2.663604  32.64076            1       1         0         0
## 806   -8.011575  35.49811            1       0         1         0
## 807   -9.336969  34.76623            1       0         0         0
## 808   -2.635285  31.31249            1       0         0         0
## 809  -11.143326  37.51215            1       0         0         1
## 810   -9.336791  34.76600            1       1         0         1
## 811   -7.872945  30.79661            1       1         0         1
## 812   -3.082593  32.08669            0       0         0         1
## 813   -6.767140  39.11742            1       0         1         0
## 814  -10.923872  39.38218            0       0         1         0
## 815   -5.967492  39.19699            0       0         0         0
## 816   -4.617100  35.03143            0       1         1         0
## 817   -8.359675  32.29617            0       0         1         0
## 818   -5.131904  39.09902            0       0         0         0
## 819  -10.617617  38.81132            0       0         0         0
## 820   -6.218177  36.35919            1       0         0         1
## 821   -9.930898  39.72115            1       0         0         0
## 822   -6.735368  38.84880            1       1         1         1
## 823   -3.156105  32.37273            1       0         1         0
## 824   -7.780980  35.69260            0       0         1         0
## 825   -7.982354  31.53769            0       0         0         1
## 826   -5.246621  39.76660            0       0         0         0
## 827   -5.179832  38.79018            1       0         0         0
## 828   -8.980224  36.75909            0       0         0         0
## 829  -10.857828  39.78017            0       0         1         0
## 830   -2.497108  32.90594            1       1         0         0
## 831   -1.325962  31.82266            1       0         0         0
## 832   -8.253354  31.36132            1       1         1         1
## 833   -9.305501  33.62544            0       0         0         0
## 834   -3.752147  32.85004            0       0         1         0
## 835   -5.104153  32.39617            0       1         0         0
## 836   -2.546164  32.95737            1       1         0         0
## 837  -10.378723  39.84088            0       0         0         0
## 838   -4.112272  35.15864            0       1         0         0
## 839   -3.389938  36.76768            1       0         0         0
## 840  -10.171023  39.85875            1       1         1         0
## 841   -7.496754  31.03255            1       0         0         0
## 842   -3.400768  37.35744            1       1         1         0
## 843  -10.667499  38.74775            1       1         1         0
## 844   -6.263346  36.86894            0       0         0         0
## 845   -4.550209  34.84322            0       0         0         0
## 846   -3.287638  32.22239            0       0         0         0
## 847   -8.316859  35.55161            1       1         1         0
## 848  -10.797879  38.65343            0       0         0         0
## 849   -7.730373  35.71968            1       0         0         0
## 850   -1.507128  33.78789            1       1         1         0
## 851   -8.409450  35.86655            0       1         0         1
## 852   -5.060554  39.73325            1       1         1         0
## 853   -3.822367  37.46240            0       0         0         0
## 854   -2.529937  32.94447            0       0         0         0
## 855   -7.482223  35.96893            1       0         0         0
## 856   -5.073140  38.45363            1       1         1         0
## 857   -6.750875  30.41145            0       0         0         0
## 858   -8.781510  34.64492            0       0         0         0
## 859   -9.408772  33.91602            0       1         0         0
## 860   -6.148856  39.21399            0       0         0         0
## 861   -5.687193  36.62851            0       1         0         0
## 862   -3.618565  33.81542            1       1         1         0
## 863   -1.792115  34.73468            0       1         1         0
## 864   -8.572715  33.45564            0       0         0         0
## 865   -1.506447  33.78902            1       1         0         0
## 866   -4.834474  34.75082            0       0         0         0
## 867   -7.933247  35.78296            1       1         1         0
## 868   -9.170717  33.82011            0       0         0         0
## 869   -5.926778  39.22305            0       0         1         0
## 870   -3.053623  34.34203            0       1         0         0
## 871   -1.329375  31.80872            0       1         1         0
## 872   -4.627531  35.02776            1       0         0         0
## 873   -1.372901  34.43386            1       1         1         0
## 874  -10.683742  38.87934            1       1         0         0
## 875   -1.464741  31.73768            1       1         1         0
## 876   -5.402919  38.61264            1       0         1         0
## 877   -1.405404  33.70625            1       1         0         1
## 878   -8.936643  33.34546            1       1         0         0
## 879   -4.625868  35.75762            1       1         0         0
## 880  -10.416477  38.80636            0       0         1         0
## 881   -7.754419  35.48312            1       1         1         0
## 882   -3.574056  32.61107            0       0         1         0
## 883   -8.633744  33.15060            1       0         0         0
## 884   -8.204229  36.69396            1       1         1         0
## 885   -8.243206  35.02418            1       0         1         0
## 886   -6.815340  39.27343            0       1         1         0
## 887   -2.602053  33.42233            0       1         1         0
## 888   -8.282282  35.30944            1       1         1         0
## 889   -4.073239  37.99144            1       1         0         1
## 890   -6.044318  39.22818            0       1         0         0
## 891   -4.748464  29.69622            1       1         1         0
## 892  -10.727719  39.78729            0       0         0         0
## 893   -3.425950  30.73144            1       1         0         1
## 894  -10.684642  39.59021            0       0         0         0
## 895   -8.777538  33.64095            1       0         1         0
## 896   -3.388996  36.74088            1       1         1         0
## 897  -10.130070  39.13526            0       1         0         1
## 898   -3.276120  37.10946            1       0         0         0
## 899   -8.391658  38.94882            1       1         0         0
## 900   -6.586865  36.07748            1       1         1         1
## 901  -10.781496  39.54885            1       1         0         0
## 902   -5.085441  30.56619            1       1         1         1
## 903   -8.820650  36.25196            0       1         1         0
## 904   -3.238648  31.86982            0       1         1         0
## 905   -8.310717  31.05488            0       0         0         0
## 906   -5.313408  36.55919            0       0         0         0
## 907   -8.433683  31.66030            1       0         1         1
## 908   -6.955818  39.33102            1       1         0         0
## 909   -4.642832  38.32358            1       0         1         1
## 910   -5.054704  35.86374            1       0         0         0
## 911   -9.305675  35.28553            0       0         0         0
## 912   -2.541324  32.91309            1       0         0         0
## 913   -6.346440  31.06988            1       0         1         0
## 914   -8.937241  33.34711            1       0         0         0
## 915  -10.744102  34.73293            0       0         0         0
## 916   -3.211241  31.81910            1       1         1         0
## 917   -5.964764  35.97465            1       0         0         1
## 918   -4.745897  29.69706            0       1         0         1
## 919   -3.361153  36.68377            1       0         1         0
## 920   -7.041666  30.56138            0       1         0         0
## 921   -6.753309  30.41272            0       0         0         1
## 922   -2.637137  32.28019            1       1         0         0
## 923   -3.366356  36.68580            1       1         1         1
## 924   -4.534585  38.24079            1       1         0         0
## 925   -6.358466  39.45430            0       0         1         1
## 926   -4.545183  31.96512            0       0         1         0
## 927   -6.301227  35.88022            0       0         0         0
## 928   -4.408921  34.52967            1       0         1         0
## 929   -3.636546  32.93983            0       0         1         0
## 930   -6.139575  39.32515            1       0         1         0
## 931   -8.960022  32.89953            0       0         1         0
## 932   -8.374517  31.97839            1       1         1         0
## 933   -7.118598  39.20521            1       1         1         0
## 934   -9.337657  34.76740            1       1         0         0
## 935   -8.034076  35.76821            1       1         1         1
## 936   -8.490923  32.28890            0       0         1         0
## 937   -8.952210  33.24702            1       1         1         1
## 938   -4.335681  35.40283            0       0         0         0
## 939   -6.751094  36.46955            0       0         1         0
## 940   -2.802117  33.99140            1       0         0         0
## 941   -8.683723  35.10519            0       0         0         0
## 942   -1.677410  33.71071            0       1         0         0
## 943   -8.536823  32.94141            1       1         1         1
## 944   -9.199114  33.10054            1       0         0         0
## 945   -3.028071  33.25188            0       1         1         1
## 946   -9.325212  34.76290            1       1         1         0
## 947   -5.876844  39.29078            1       0         1         0
## 948  -10.557790  36.23737            1       1         1         0
## 949   -7.146022  31.20282            0       1         1         0
## 950   -2.122017  33.48686            0       1         0         0
## 951   -2.785471  33.78834            0       0         0         0
## 952   -7.424692  31.37070            1       0         1         0
## 953   -1.088420  31.80648            0       0         0         0
## 954   -3.162708  32.25907            1       0         0         0
## 955   -4.634835  38.20696            1       1         0         0
## 956   -2.040879  33.83973            0       0         1         0
## 957   -9.672312  39.10597            1       1         1         0
## 958   -2.538632  33.19864            1       0         1         0
## 959   -6.342315  31.08301            1       0         0         0
## 960   -2.078613  32.93989            1       1         1         0
## 961   -7.571408  36.10763            0       0         0         0
## 962   -8.977482  33.95139            1       1         0         0
## 963   -8.256622  35.09216            1       1         0         1
## 964   -7.942946  31.62918            1       0         1         0
## 965   -9.171456  33.82048            0       0         0         0
## 966  -10.737359  38.80795            1       0         0         0
## 967   -4.089253  34.73639            0       1         0         0
## 968   -1.890073  34.72970            1       1         1         0
## 969   -3.352097  36.66113            1       0         1         0
## 970   -6.072730  36.64452            1       1         0         1
## 971   -7.747411  35.71584            1       1         1         0
## 972   -2.657758  33.94021            0       1         1         0
## 973   -4.310061  35.62750            0       0         1         0
## 974   -9.119846  32.93786            0       0         0         0
## 975   -6.582218  39.07972            1       0         0         0
## 976   -6.755314  30.41356            0       0         0         0
## 977   -7.994485  31.79560            0       0         1         0
## 978  -10.793280  39.42274            1       1         0         0
## 979   -6.052412  37.08709            0       0         1         0
## 980   -2.527669  32.94528            1       1         1         0
## 981   -2.057465  31.51319            0       1         1         0
## 982   -8.302900  32.32682            0       0         1         0
## 983   -8.370214  31.71728            0       0         1         0
## 984   -5.165026  39.81222            0       0         1         0
## 985  -10.900501  39.64024            0       1         1         0
## 986   -5.748391  34.82956            0       1         0         0
## 987   -6.812393  39.24450            0       1         1         0
## 988   -6.928704  39.26278            1       0         0         0
## 989   -5.748464  34.83053            0       1         0         0
## 990   -9.237544  33.33852            0       0         0         0
## 991   -3.392292  36.74103            1       1         1         0
## 992   -8.687149  36.70807            1       1         1         1
## 993   -8.497040  35.59113            0       1         1         0
## 994  -11.132054  38.60646            1       0         1         1
## 995   -9.348936  34.77191            1       0         0         0
## 996   -1.302054  33.94417            1       0         0         0
## 997   -3.361639  36.68351            1       1         0         0
## 998   -5.769654  38.70284            0       0         1         0
## 999   -8.409383  35.86672            0       1         0         0
## 1000  -8.566789  34.44583            0       0         0         0
## 1001  -7.473740  36.12578            1       1         1         0
## 1002  -4.103362  32.40901            0       0         0         0
## 1003  -4.700120  38.11962            0       0         0         0
## 1004  -3.820722  37.45835            0       0         0         0
## 1005  -2.535342  32.93955            0       0         0         0
## 1006  -3.991295  33.38841            0       0         0         0
## 1007 -11.058681  37.33865            1       1         0         0
## 1008  -5.802079  34.40206            0       1         1         0
## 1009  -5.754774  38.69909            1       1         0         0
## 1010  -6.767303  38.98445            0       0         0         0
## 1011  -7.949883  31.60424            1       1         1         0
## 1012  -4.868917  29.64284            1       1         0         0
## 1013  -4.910217  29.66150            1       0         0         0
## 1014 -10.952199  39.27203            0       0         1         1
## 1015  -2.525437  32.90177            1       0         0         0
## 1016  -8.204114  35.99724            1       1         0         0
## 1017  -7.958475  31.61809            1       1         1         0
## 1018  -3.276007  32.79980            0       0         1         0
## 1019  -2.949926  33.36856            0       0         0         0
## 1020  -2.556107  30.60723            0       1         1         0
## 1021  -1.245187  31.66583            0       0         0         0
## 1022  -6.744098  30.40708            1       1         1         0
## 1023  -9.408100  33.91683            0       1         1         0
## 1024 -11.258996  34.79142            0       0         0         0
## 1025  -7.780918  35.69237            0       0         0         0
## 1026  -3.302949  37.51187            1       0         1         0
## 1027  -8.546793  32.54849            0       0         1         0
## 1028  -6.195374  39.22670            1       0         1         0
## 1029  -3.129820  33.64721            0       1         0         0
## 1030  -6.785439  39.23877            1       1         0         0
## 1031  -2.754981  31.87903            0       0         0         0
## 1032 -10.602689  39.62188            1       1         0         0
## 1033  -2.557304  36.78190            0       0         0         0
## 1034  -6.528858  37.21855            0       0         0         0
## 1035  -6.142729  39.22070            0       0         0         0
## 1036  -4.420343  34.75703            0       1         1         0
## 1037  -9.973875  34.62902            0       0         0         0
## 1038  -6.583188  38.55414            0       0         0         0
## 1039  -1.507042  33.78796            1       1         1         0
## 1040  -4.200494  34.82258            1       1         0         1
## 1041  -6.379011  38.35326            0       1         0         0
## 1042  -9.321775  32.78161            0       0         0         0
## 1043 -10.924964  39.38053            0       0         0         0
## 1044  -3.042396  35.48202            0       0         0         1
## 1045  -2.634303  32.79086            0       0         0         0
## 1046  -8.820687  36.25189            0       1         0         0
## 1047  -5.953565  39.26091            0       1         0         0
## 1048  -3.003309  31.94541            1       1         1         0
## 1049  -1.453420  31.06506            1       1         1         0
## 1050  -7.309372  30.63862            0       0         0         0
## 1051 -10.936574  39.28002            1       1         1         0
## 1052 -10.282454  40.18761            1       1         0         0
## 1053  -2.759560  33.61826            0       0         0         0
## 1054  -1.749394  31.61544            1       0         0         0
## 1055  -8.240094  35.44110            0       0         0         1
## 1056  -7.657839  35.45411            0       1         1         0
## 1057  -8.654806  35.12939            1       1         1         0
## 1058 -10.493125  39.32407            0       0         0         0
## 1059  -2.639400  33.97032            1       0         0         0
## 1060  -9.208730  33.08781            1       0         0         0
## 1061  -8.874971  34.82141            1       1         1         0
## 1062  -6.131042  39.30377            1       0         1         0
## 1063  -3.364465  33.54148            1       1         1         1
## 1064  -2.849018  30.53578            0       0         0         0
## 1065  -5.717323  38.23610            1       0         1         1
## 1066 -10.702943  39.13491            1       0         0         0
## 1067  -4.110708  35.18611            0       0         0         0
## 1068  -3.011582  33.93829            1       0         1         0
## 1069  -2.639184  32.95502            0       0         1         0
## 1070  -4.577699  30.09297            1       0         1         0
## 1071  -4.887558  29.64393            1       1         1         0
## 1072  -3.042507  35.48205            0       0         0         0
## 1073  -2.543495  32.90502            1       1         0         0
## 1074  -9.362257  34.79626            1       0         0         0
## 1075  -6.300749  35.50043            1       1         1         1
## 1076  -2.987681  34.19190            1       1         1         0
## 1077  -3.372336  36.65839            1       1         1         0
## 1078  -9.421972  33.95901            0       1         0         0
## 1079  -3.279447  32.88017            1       1         0         0
## 1080  -7.120795  39.20260            1       1         1         0
## 1081  -7.814538  35.78913            0       0         1         1
## 1082  -5.236558  39.77960            1       0         0         0
## 1083  -6.786935  39.11268            0       1         0         0
## 1084  -2.948407  34.14765            0       0         0         0
## 1085  -4.193376  33.13089            0       0         0         0
## 1086  -3.828789  32.60401            1       0         1         0
## 1087  -8.692032  35.10012            1       1         1         0
## 1088  -5.181955  39.09144            1       0         0         0
## 1089 -10.617497  38.81129            1       0         1         0
## 1090  -4.310329  34.22565            1       1         1         1
## 1091  -3.274321  32.79393            1       1         1         0
## 1092 -10.509894  38.99350            1       0         0         0
## 1093  -6.211118  31.22427            0       1         0         0
## 1094  -1.854728  31.58990            0       1         1         0
## 1095  -7.252124  31.39579            1       0         0         1
## 1096  -2.577908  32.13885            1       1         0         0
## 1097  -7.376220  31.36464            1       0         0         0
## 1098 -10.281816  40.19749            0       0         0         0
## 1099  -7.291695  36.06155            0       0         0         1
## 1100  -5.175875  34.62329            0       1         1         0
## 1101  -6.751050  36.46960            0       1         0         1
## 1102  -8.896721  31.69141            0       0         0         1
## 1103  -4.433357  30.02851            0       0         0         0
## 1104  -5.078245  39.10406            1       1         0         0
## 1105 -10.692603  39.81413            1       1         1         0
## 1106  -3.076902  32.08708            0       1         1         1
## 1107  -5.930022  39.29880            0       0         0         0
## 1108  -5.897271  35.21064            0       1         0         0
## 1109  -9.354617  34.41985            1       1         1         1
## 1110  -3.317067  36.70742            0       0         1         1
## 1111  -7.837171  38.34423            1       1         0         1
## 1112  -2.744255  31.88140            0       0         0         0
## 1113  -8.189757  31.84927            0       1         0         0
## 1114 -10.674655  35.64220            1       1         0         0
## 1115  -9.318674  32.77968            1       0         0         0
## 1116  -4.646342  35.04234            0       0         0         0
## 1117  -3.787501  30.49837            0       0         1         0
## 1118  -6.333513  31.08038            1       1         0         0
## 1119 -10.936330  34.99597            0       1         1         0
## 1120  -9.405334  39.59772            0       1         0         0
## 1121  -8.541288  31.90556            0       0         0         0
## 1122  -6.167220  39.21019            1       1         0         0
## 1123  -7.958412  31.61411            1       0         1         0
## 1124  -4.487604  35.61584            0       1         0         0
## 1125  -1.248912  31.66388            1       1         1         0
## 1126  -3.408707  31.51607            0       0         1         0
## 1127  -2.506179  32.91077            1       1         1         0
## 1128  -9.670500  39.10818            0       0         0         0
## 1129  -9.003208  32.80798            0       0         1         0
## 1130  -7.783640  35.67740            1       0         1         0
## 1131  -4.828142  34.75095            0       1         0         0
## 1132  -1.941336  32.86262            0       1         1         0
## 1133  -8.913861  33.43317            0       0         0         0
## 1134  -2.553917  30.60878            0       0         0         0
## 1135  -9.949313  37.90564            1       1         1         0
## 1136  -3.368412  36.73275            1       1         0         1
## 1137  -8.564994  32.12666            0       0         0         0
## 1138  -6.931875  39.26458            1       0         0         0
## 1139  -6.816883  30.48970            1       1         0         1
## 1140  -4.730659  38.33666            1       1         0         0
## 1141 -11.042250  37.43294            1       0         0         0
## 1142  -9.011570  33.00484            1       0         1         0
## 1143  -8.240115  35.44104            0       0         1         1
## 1144  -9.171341  33.81924            0       1         1         0
## 1145  -7.202537  31.08025            1       1         0         0
## 1146  -4.479575  34.19142            1       1         1         0
## 1147  -5.076110  38.45355            1       1         1         0
## 1148  -8.204259  36.69424            1       1         0         0
## 1149  -9.239578  33.33965            0       0         0         1
## 1150  -5.036571  36.23245            0       0         0         0
## 1151 -10.632288  38.84619            1       1         0         0
## 1152  -8.433944  31.66007            1       0         1         0
## 1153  -6.815037  39.15245            1       1         0         0
## 1154  -6.422808  31.22119            0       0         0         0
## 1155  -3.029920  33.26524            0       0         1         0
## 1156  -8.933314  33.34415            1       1         0         1
## 1157  -5.246162  39.78157            0       0         0         0
## 1158  -4.475330  34.18779            0       1         0         0
## 1159 -10.604963  35.61390            1       0         1         0
## 1160  -6.898221  37.49584            0       0         1         0
## 1161  -6.184958  39.20786            1       1         1         1
## 1162  -9.490176  33.27444            0       0         1         1
## 1163  -6.147715  39.51641            1       0         0         0
## 1164  -6.897652  39.28292            1       0         1         1
## 1165  -4.573104  35.65115            0       0         0         1
## 1166  -6.125615  39.21900            0       0         0         0
## 1167  -1.511382  33.80774            0       0         0         0
## 1168  -7.480956  31.18938            1       0         1         0
## 1169 -10.785433  38.61889            0       0         0         0
## 1170  -6.908738  39.17039            1       1         1         0
## 1171  -6.873981  30.52882            0       0         0         0
## 1172  -4.529464  38.23771            1       0         0         0
## 1173  -5.415161  39.72593            1       1         0         0
## 1174  -2.554943  33.05497            1       0         0         0
## 1175 -11.078110  38.27464            0       1         0         0
## 1176  -6.208129  39.38594            0       0         1         0
## 1177 -10.131074  39.13991            0       0         1         0
## 1178  -4.545238  31.96532            0       0         0         1
## 1179  -4.801082  32.43040            0       0         0         0
## 1180  -7.118777  37.80533            1       0         1         0
## 1181  -5.445350  38.03467            0       0         0         0
## 1182 -10.248619  38.69714            1       0         0         0
## 1183  -8.546546  32.54826            0       0         0         0
## 1184  -4.874166  36.79103            0       0         0         0
## 1185  -2.879652  32.23385            0       1         0         0
## 1186  -2.026642  33.46306            1       0         1         0
## 1187  -1.236945  30.94802            1       0         0         0
## 1188  -1.939928  32.86013            0       1         1         0
## 1189  -8.237302  35.43624            0       0         1         0
## 1190  -2.775935  33.79542            0       0         1         0
## 1191  -5.078630  39.12394            1       0         0         0
## 1192  -3.015183  33.04971            1       1         1         0
## 1193  -4.536829  38.24079            1       1         0         1
## 1194  -1.248176  31.66149            1       1         1         0
## 1195  -6.833379  39.24081            1       0         0         0
## 1196  -8.535848  32.94236            0       1         1         0
## 1197  -7.897603  31.59961            1       1         1         0
## 1198  -7.951425  35.78691            0       1         0         0
## 1199  -5.037125  38.88051            0       0         0         0
## 1200  -7.277879  31.04180            0       1         0         0
## 1201  -9.442633  33.55587            0       0         0         0
## 1202  -6.138801  39.23038            0       0         0         0
## 1203  -2.015420  33.94363            1       1         1         0
## 1204  -4.470482  35.69451            0       0         0         0
## 1205  -6.174307  39.21255            1       1         1         0
## 1206  -8.185828  31.52245            0       0         1         0
## 1207  -6.717176  38.73739            1       1         1         0
## 1208  -4.078846  37.13652            0       1         0         0
## 1209  -2.548617  32.98186            1       1         1         0
## 1210  -2.552243  32.91020            1       1         1         0
## 1211  -6.867696  39.28217            1       1         0         0
## 1212  -2.961180  34.16304            1       0         0         0
## 1213  -2.636654  32.27992            1       0         1         0
## 1214  -9.569345  34.87792            0       0         0         1
## 1215  -2.656405  31.57546            1       0         1         0
## 1216  -2.662600  32.64005            1       1         0         0
## 1217  -3.565175  36.95175            0       0         1         0
## 1218  -1.087705  31.80655            1       0         0         0
## 1219  -8.875161  34.82138            1       1         0         0
## 1220  -8.818194  34.84048            1       0         0         0
## 1221  -5.246048  39.78142            0       0         1         0
## 1222  -4.545293  31.96516            0       0         0         0
## 1223  -6.149396  39.51521            0       1         1         0
## 1224 -10.861290  39.02940            0       1         0         0
## 1225  -5.702095  34.49524            1       0         0         0
## 1226  -6.743388  30.40857            0       1         0         0
## 1227  -6.802138  39.04799            0       1         0         0
## 1228  -2.740385  31.39077            1       0         0         0
## 1229  -4.205279  34.83163            0       0         0         0
## 1230  -8.062827  36.00712            0       1         1         1
## 1231  -3.672029  33.43527            1       1         1         1
## 1232  -9.320334  32.78026            0       0         1         0
## 1233 -11.117437  35.18501            0       0         0         0
## 1234  -2.198380  31.44758            0       1         1         0
## 1235  -8.936705  33.34808            1       0         0         0
## 1236  -9.081679  34.80899            1       1         1         0
## 1237  -4.645499  35.04322            0       1         0         1
## 1238  -4.619285  35.76662            0       0         0         0
## 1239  -6.580177  39.08224            1       1         0         0
## 1240  -6.857164  39.27358            1       1         1         0
## 1241  -9.861860  38.89359            1       0         0         0
## 1242  -7.945408  31.63786            0       0         0         0
## 1243  -7.980466  31.63574            1       0         0         0
## 1244  -6.360085  37.13779            0       0         1         0
## 1245  -4.673296  29.99765            1       1         0         0
## 1246  -2.961771  34.16602            0       0         0         0
## 1247  -5.066668  31.93906            1       1         0         1
## 1248  -8.189974  31.84973            1       0         1         0
## 1249  -3.477845  37.57739            0       0         1         0
## 1250  -2.508970  35.60500            0       0         0         0
## 1251  -5.262932  39.78371            1       0         0         0
## 1252 -11.039236  34.75534            0       0         1         0
## 1253 -10.274178  40.17478            1       0         1         1
## 1254  -9.860296  38.89422            0       0         0         0
## 1255  -7.374329  30.62932            1       1         1         0
## 1256  -8.569586  34.45042            1       1         0         0
## 1257  -6.883073  39.25367            1       0         0         0
## 1258  -5.077282  39.10379            1       0         0         1
## 1259  -8.911420  33.43468            1       0         1         0
## 1260  -5.042673  33.49187            0       1         0         0
## 1261  -9.296204  32.77090            1       1         0         0
## 1262  -8.847476  34.82358            1       1         0         0
## 1263  -3.351815  37.02198            1       1         0         1
## 1264  -5.329071  34.51967            0       0         0         0
## 1265  -6.891166  38.56030            0       0         1         0
## 1266  -8.897497  33.45377            0       1         0         1
## 1267  -8.571663  33.45149            1       0         0         1
## 1268  -6.575886  36.05810            1       1         1         0
## 1269 -10.942641  39.24212            0       0         1         0
## 1270  -3.517377  32.39407            0       0         0         1
## 1271  -9.174110  32.86404            0       0         0         0
## 1272 -11.028368  39.25391            1       1         1         0
## 1273  -1.370831  34.08924            1       1         1         0
## 1274  -8.204944  35.99792            0       0         1         0
## 1275  -6.331423  31.06528            0       1         0         0
## 1276  -4.189685  35.02100            0       0         0         1
## 1277  -8.295835  34.90755            0       0         1         0
## 1278  -4.341213  35.39678            0       1         0         0
## 1279  -8.590790  35.15396            1       0         1         1
## 1280 -10.518433  38.68013            1       1         0         0
## 1281  -3.808550  32.22603            0       0         0         0
## 1282  -6.798603  39.16722            1       1         1         0
## 1283  -8.167511  36.33343            1       1         1         0
## 1284  -3.426084  30.73260            1       0         0         1
## 1285  -3.830539  30.63431            1       0         1         0
## 1286  -8.497178  35.59163            0       0         1         0
## 1287  -9.294835  32.75985            1       0         1         0
## 1288  -5.505384  32.49113            0       0         0         0
## 1289  -7.957530  31.61707            1       1         1         0
## 1290 -10.618727  38.81156            1       1         0         0
## 1291 -10.718672  38.77085            0       0         0         0
## 1292 -10.859750  39.78383            0       0         0         0
## 1293 -10.821988  39.53047            1       1         1         1
## 1294  -6.833252  39.24086            1       1         0         0
## 1295  -6.784750  39.15751            0       1         0         0
## 1296  -6.774998  37.75401            1       1         1         0
## 1297  -8.074447  31.93379            1       0         1         1
## 1298  -8.520152  39.09367            1       1         1         0
## 1299  -8.563262  35.33710            1       1         1         0
## 1300  -7.291474  36.06154            1       0         0         0
## 1301  -3.535957  32.41699            0       0         0         0
## 1302  -6.881212  39.28669            1       0         1         0
## 1303  -8.611124  31.29043            0       0         0         0
## 1304  -7.252479  37.73303            0       0         1         0
## 1305  -8.047945  35.46859            1       1         1         0
## 1306  -8.584176  35.20690            1       1         1         1
## 1307  -9.468258  33.95033            0       1         0         0
## 1308  -1.858006  33.05043            0       1         0         0
## 1309  -5.403271  38.61076            0       0         0         0
## 1310  -4.141928  33.45479            0       1         0         0
## 1311  -6.885232  39.15516            1       1         0         0
## 1312  -8.863944  34.01013            0       1         0         0
## 1313  -1.813507  33.39918            0       0         0         0
## 1314  -6.808917  39.10798            1       0         1         0
## 1315  -6.819884  39.23896            1       0         0         0
## 1316  -9.296518  32.77075            0       0         0         0
## 1317  -3.541056  33.13700            0       0         0         0
## 1318  -9.861525  38.89591            1       0         0         0
## 1319  -5.970089  39.19655            0       0         0         0
## 1320  -7.481221  31.18948            0       0         0         1
## 1321  -2.457498  32.91673            0       1         0         0
## 1322  -6.766904  39.11711            0       0         0         0
## 1323  -2.766226  32.11302            0       0         0         0
## 1324  -8.015630  31.60780            0       0         0         0
## 1325  -6.845011  39.27910            1       1         1         0
## 1326  -7.957522  31.61655            1       1         0         0
## 1327  -5.443251  38.03571            1       1         1         0
## 1328  -4.410158  34.77274            0       1         0         0
## 1329  -2.477641  32.20389            1       1         0         0
## 1330 -10.730171  39.79008            0       0         0         1
## 1331  -1.842942  31.14182            0       0         1         0
## 1332  -7.199297  31.05353            0       0         0         0
## 1333  -8.488180  32.28749            0       0         0         0
## 1334 -10.181007  38.94339            0       1         1         0
## 1335  -3.330566  36.63986            1       1         1         0
## 1336  -3.532103  33.10909            0       0         1         0
## 1337  -3.828594  32.60323            1       1         0         0
## 1338  -6.834060  39.24094            1       0         0         0
## 1339  -2.868922  32.52956            1       1         1         0
## 1340  -8.842268  34.81681            1       1         0         0
## 1341  -5.255828  32.36004            1       0         0         1
## 1342  -3.367226  36.68713            1       1         0         0
## 1343  -4.677816  35.95593            0       0         0         1
## 1344  -7.599822  36.99752            0       0         0         0
## 1345  -6.175132  37.60666            1       1         1         0
## 1346  -6.819436  37.64590            1       0         0         0
## 1347  -4.578554  33.05226            1       0         0         0
## 1348  -4.683479  34.89565            0       0         0         0
## 1349  -9.296036  32.77076            1       0         0         0
## 1350  -3.313394  37.13128            1       1         1         0
## 1351  -1.804956  33.40066            0       0         0         0
## 1352  -3.834086  32.68197            0       1         0         0
## 1353  -3.390898  35.50080            1       0         0         0
## 1354  -1.328819  31.80836            1       0         0         0
## 1355  -4.199558  32.32511            0       1         0         0
## 1356 -10.716993  38.77125            0       0         0         0
## 1357  -2.639351  32.27665            0       0         0         0
## 1358  -4.909873  29.66181            0       0         0         0
## 1359  -2.555321  33.04835            1       1         1         0
## 1360  -9.309252  33.62369            0       0         0         0
## 1361  -3.116547  33.63500            0       0         0         0
## 1362 -10.280367  40.11473            1       1         1         0
## 1363  -3.574209  33.39663            1       1         1         0
## 1364  -7.697058  35.62115            1       0         0         0
## 1365  -5.592471  38.25013            0       0         0         0
## 1366  -1.498631  33.81373            1       1         1         0
## 1367  -4.731770  38.33659            1       0         0         0
## 1368  -1.968789  32.91859            1       1         0         0
## 1369  -7.045029  30.56190            1       0         1         1
## 1370  -6.150041  39.51527            1       1         1         0
## 1371  -6.582160  39.08075            1       0         0         0
## 1372  -8.911144  33.46021            1       1         1         0
## 1373  -8.217617  31.68497            0       1         1         0
## 1374  -7.656825  35.45321            0       0         0         0
## 1375  -8.128389  30.96691            0       0         0         1
## 1376  -6.880545  39.28634            0       0         0         0
## 1377  -7.901711  31.59238            0       1         1         0
## 1378  -5.747892  34.82993            1       1         1         1
## 1379  -6.874888  30.53203            0       1         1         0
## 1380  -5.041033  33.49203            0       1         0         0
## 1381  -9.989919  38.96651            1       1         0         0
## 1382  -4.432813  30.02746            1       0         0         1
## 1383  -4.146769  32.88496            1       0         0         0
## 1384  -7.326880  35.54300            0       0         1         0
## 1385  -3.376518  36.67711            1       1         0         0
## 1386  -5.182547  38.78996            1       0         1         0
## 1387  -3.901757  35.81303            1       1         1         0
## 1388 -10.853176  39.27811            1       1         1         0
## 1389  -8.252193  31.98853            1       0         0         0
## 1390 -10.272671  40.16403            1       0         0         1
## 1391  -5.986547  38.22086            1       1         1         0
## 1392  -4.357457  37.82201            1       0         0         1
## 1393  -7.783844  35.66376            1       1         0         0
## 1394  -2.774221  32.61751            0       1         0         0
## 1395  -6.172539  35.73678            1       0         0         0
## 1396 -10.987258  35.62965            0       0         0         0
## 1397  -5.961231  35.97312            1       1         1         1
## 1398  -4.906134  35.78076            1       1         1         1
## 1399  -8.230081  35.43240            1       1         0         1
## 1400  -8.591173  35.15342            1       0         0         0
## 1401  -5.981867  35.44181            1       1         1         1
## 1402  -3.360554  33.92838            1       1         1         0
## 1403  -5.246029  39.78162            0       1         0         0
## 1404  -1.323663  31.79133            1       1         1         1
## 1405  -7.646819  35.75635            0       0         0         0
## 1406  -2.878944  37.36677            1       1         1         1
## 1407  -3.483882  37.57666            0       1         0         0
## 1408 -10.550582  39.78867            0       0         1         0
## 1409  -2.552190  32.90921            0       0         0         0
## 1410  -9.441318  33.56298            1       0         0         1
## 1411  -3.313353  36.70905            1       1         0         1
## 1412 -10.453933  39.40890            0       0         0         0
## 1413  -2.822872  33.36669            0       0         0         1
## 1414  -6.335614  31.06467            0       1         0         0
## 1415 -10.489456  39.02757            1       0         0         0
## 1416 -10.779807  39.54819            0       0         0         0
## 1417 -10.816626  39.52980            0       1         0         0
## 1418  -4.482634  35.05801            0       0         1         0
## 1419  -8.555560  34.44041            0       0         0         0
## 1420 -10.406698  39.16537            1       1         1         0
## 1421  -4.984155  39.83425            0       0         1         0
## 1422  -2.820199  33.37472            0       1         1         0
## 1423  -3.183415  35.47565            0       1         0         0
## 1424  -2.463518  33.63358            1       1         1         0
## 1425  -2.501594  32.88812            1       0         1         0
## 1426  -3.354894  37.02816            1       1         1         0
## 1427 -10.442568  36.06212            0       0         0         0
## 1428  -4.201522  30.48920            0       1         1         0
## 1429  -9.448775  34.44471            1       0         1         1
## 1430  -8.409128  35.86672            0       1         1         0
## 1431  -5.877589  39.28965            0       0         0         0
## 1432  -5.078551  39.12222            0       1         0         0
## 1433  -6.174566  39.21972            0       1         0         0
## 1434  -4.143758  33.45603            0       0         0         0
## 1435  -6.346204  31.06996            1       0         1         0
## 1436  -9.153371  33.48439            0       0         0         0
## 1437 -10.733520  39.51668            0       1         0         0
## 1438  -2.562278  32.92273            1       0         0         0
## 1439 -10.952359  39.34114            1       0         1         0
## 1440  -3.529821  32.41743            0       0         0         0
## 1441 -10.262463  39.92201            0       0         0         0
## 1442 -10.734911  39.51145            1       1         1         0
## 1443 -10.406595  39.16513            1       1         1         0
## 1444 -10.366193  38.76088            1       1         1         0
## 1445  -6.833240  39.24099            0       0         0         0
## 1446  -5.591854  38.25097            0       0         0         0
## 1447  -4.303707  34.21886            1       1         0         0
## 1448  -1.346914  31.65839            1       0         1         0
## 1449 -11.098781  39.30737            1       1         0         0
## 1450  -7.994345  31.79559            0       0         1         0
## 1451  -4.677372  35.95597            0       0         0         1
## 1452  -4.026007  34.50814            1       1         1         1
## 1453  -6.319659  31.08185            1       1         0         0
## 1454 -10.697105  39.39365            1       1         1         0
## 1455 -11.042434  37.43106            0       1         0         0
## 1456  -5.246212  39.78156            0       0         0         0
## 1457  -7.516174  39.23449            1       0         0         0
## 1458  -6.808057  39.25017            1       1         1         0
## 1459  -3.230813  31.81441            0       0         0         0
## 1460  -6.844884  39.23454            1       0         0         0
## 1461  -8.288632  35.30630            0       0         0         0
## 1462  -9.442603  33.55586            0       0         0         0
## 1463  -4.905149  35.77963            1       1         1         1
## 1464 -10.835639  38.64884            1       1         1         1
## 1465  -3.030816  34.35169            1       1         1         1
## 1466  -5.874116  39.25850            0       0         1         0
## 1467  -3.203744  34.41586            0       0         1         0
## 1468  -2.287084  32.26856            1       0         0         0
## 1469  -3.008850  37.58281            1       1         1         0
## 1470  -3.005696  37.58405            1       1         0         0
## 1471  -6.252552  30.91319            0       0         1         0
## 1472  -1.902157  35.41788            0       1         1         0
## 1473  -5.260576  39.78331            1       0         1         0
## 1474  -2.526170  32.90252            1       1         0         0
## 1475 -11.114904  38.47047            0       0         0         0
## 1476  -8.072963  31.93342            1       1         1         0
## 1477  -7.781061  35.69213            0       1         1         0
## 1478  -2.348638  32.29561            0       0         0         0
## 1479  -3.110210  32.72898            1       1         1         1
## 1480  -5.156076  38.44841            0       0         0         0
## 1481  -8.868727  34.95338            0       0         0         0
## 1482  -6.762835  38.98394            1       0         1         1
## 1483  -6.165228  39.20935            0       0         0         0
## 1484  -5.051254  33.48712            0       0         0         0
## 1485  -3.346076  37.30234            1       1         1         1
## 1486  -5.094561  39.77253            0       1         0         0
## 1487 -10.283449  40.11816            1       0         0         0
## 1488  -8.496129  35.59115            1       0         1         0
## 1489  -1.324223  31.79124            1       0         1         0
## 1490  -6.744328  36.09118            0       0         0         0
## 1491  -3.279386  32.21993            0       1         1         0
## 1492  -6.801701  39.05391            1       1         0         0
## 1493  -4.894028  38.57581            1       1         1         0
## 1494  -9.656229  33.90275            1       1         1         0
## 1495  -2.769367  32.59830            1       1         1         0
## 1496 -11.078765  38.27433            0       0         0         0
## 1497  -6.180251  39.23729            1       1         1         0
## 1498  -8.285460  35.30856            1       1         1         1
## 1499  -5.177701  39.79283            0       0         0         0
## 1500  -1.324367  31.79133            1       1         1         0
## 1501 -10.781260  39.54818            0       0         0         0
## 1502  -4.984044  39.83425            0       0         1         0
## 1503  -8.904659  34.66930            1       1         0         0
## 1504  -8.906187  33.45562            0       0         0         0
## 1505  -7.468961  36.12839            1       1         1         1
## 1506  -8.609636  31.29035            0       0         0         0
## 1507 -10.561740  39.17122            1       1         1         0
## 1508  -4.108853  35.18651            0       0         0         0
## 1509  -5.187207  38.76915            1       0         0         0
## 1510  -3.263644  32.22343            0       0         1         0
## 1511  -4.199660  32.32598            0       1         1         0
## 1512  -1.402118  34.39060            0       1         0         0
## 1513  -3.627718  33.39548            1       1         0         0
## 1514  -2.989378  34.19545            1       1         1         0
## 1515  -6.298305  35.48931            0       1         0         0
## 1516  -2.958909  34.15203            1       0         1         0
## 1517  -3.290587  32.24776            1       0         1         1
## 1518  -2.580367  32.13700            1       1         0         0
## 1519  -6.180251  39.23729            1       0         1         0
## 1520  -2.767162  32.60761            0       1         0         0
## 1521  -4.225829  34.61311            1       1         0         1
## 1522  -2.317028  32.68445            1       1         1         0
## 1523  -9.012511  33.06826            1       0         1         1
## 1524  -5.072166  38.45411            1       0         0         0
## 1525  -1.371133  34.08894            0       1         0         0
## 1526  -2.287163  32.26921            1       1         1         1
## 1527  -3.209626  37.31099            0       1         0         0
## 1528  -4.943269  38.91512            1       1         0         0
## 1529  -6.888472  39.16117            1       1         1         0
## 1530  -8.973632  33.95745            1       0         0         0
## 1531  -7.798882  35.77168            1       0         0         1
## 1532  -6.917841  39.25849            1       0         1         0
## 1533  -6.813962  30.48862            0       1         0         0
## 1534  -8.283058  35.30969            1       1         1         0
## 1535  -7.680544  31.56242            1       0         0         0
## 1536  -2.193328  31.44266            0       1         1         0
## 1537  -1.335291  33.80024            1       1         1         0
## 1538  -3.240666  33.42970            1       0         0         1
## 1539  -7.954961  36.86503            1       1         0         1
## 1540 -10.361872  40.10192            1       0         0         0
## 1541  -4.879503  34.63683            0       1         1         0
## 1542  -7.680511  36.03972            1       0         1         0
## 1543 -10.560232  36.23843            0       0         0         0
## 1544  -4.108829  35.18654            0       1         0         0
## 1545  -6.172697  35.73670            0       0         0         0
## 1546  -5.446184  38.03563            0       0         0         1
## 1547  -5.246176  39.78152            0       0         1         0
## 1548  -3.372394  37.34017            1       1         0         0
## 1549  -6.743822  36.09175            1       0         0         0
## 1550  -8.017376  31.60421            0       0         0         0
## 1551 -10.663162  38.75215            0       1         1         0
## 1552  -6.720384  38.73755            1       1         0         0
## 1553 -10.818248  39.52731            1       1         0         0
## 1554  -6.814287  37.68486            1       1         0         0
## 1555  -8.848242  32.28191            1       0         0         0
## 1556  -7.872670  30.79677            0       1         1         0
## 1557  -8.299517  35.28403            1       1         0         0
## 1558  -9.575299  33.77273            0       1         0         0
## 1559  -4.230434  35.42796            1       1         0         0
## 1560  -6.584905  36.07362            0       0         0         0
## 1561  -6.823028  39.31091            1       1         0         0
## 1562  -5.873696  39.29160            0       0         0         0
## 1563  -5.323720  34.51856            0       0         1         0
## 1564  -4.648166  35.04097            1       1         1         0
## 1565  -3.101723  31.08703            0       1         0         0
## 1566  -1.875248  33.70188            0       1         0         0
## 1567 -11.050098  34.75486            1       1         1         1
## 1568  -9.957604  34.61850            0       1         0         0
## 1569  -6.265062  36.86318            0       1         0         0
## 1570  -9.408402  33.91706            0       1         0         0
## 1571  -2.526941  34.05992            0       0         0         0
## 1572  -5.992601  37.75381            0       0         0         0
## 1573  -3.042940  31.37638            1       1         1         0
## 1574  -5.873522  39.25880            0       0         0         0
## 1575  -2.951463  33.91648            0       0         1         0
## 1576  -3.871301  35.65138            0       1         0         0
## 1577  -2.755046  31.87911            0       0         0         1
## 1578  -4.954600  39.78724            0       1         0         0
## 1579  -8.252495  31.98901            1       1         1         0
## 1580  -1.461846  31.68683            0       1         1         1
## 1581  -8.374812  31.97821            0       0         1         0
## 1582  -8.392441  38.94695            1       1         1         0
## 1583  -8.848334  34.82286            1       0         0         0
## 1584  -3.996728  34.54162            1       1         1         0
## 1585  -3.568046  36.94879            0       1         1         0
## 1586  -3.622045  33.81446            1       0         1         0
## 1587  -6.742766  32.48257            0       0         1         0
## 1588  -3.808663  32.22639            1       0         1         0
## 1589  -6.538357  38.99085            1       1         1         0
## 1590  -1.556631  31.64424            1       1         1         0
## 1591  -5.505623  32.49358            1       0         0         0
## 1592  -7.252623  37.73266            1       0         0         0
## 1593  -4.881701  29.64791            1       1         1         1
## 1594  -5.956557  36.69484            0       0         0         1
## 1595  -2.763815  32.60413            1       1         0         0
## 1596  -6.484378  31.11691            0       0         0         0
## 1597  -3.822062  37.46193            1       1         0         0
## 1598  -9.464686  33.94887            1       0         0         0
## 1599  -8.088045  36.68110            0       1         1         0
## 1600  -3.005139  31.92481            1       1         0         1
## 1601 -11.217201  34.97810            1       0         0         0
## 1602  -8.820627  36.25205            1       1         0         0
## 1603  -7.872740  30.79650            0       1         0         0
## 1604  -8.316642  35.55187            0       0         0         0
## 1605  -9.334995  34.76437            0       0         0         0
## 1606  -6.897663  38.55779            1       1         1         0
## 1607  -8.905791  33.45594            1       1         0         0
## 1608  -2.501981  32.88888            1       1         1         0
## 1609 -11.039624  37.18491            0       1         0         0
## 1610  -6.819832  39.23836            1       0         1         0
## 1611 -10.275122  40.18637            1       1         0         0
## 1612  -7.255795  31.39926            1       1         1         0
## 1613  -1.986809  33.06927            1       1         1         0
## 1614  -7.154886  31.06596            0       0         1         0
## 1615  -7.784096  35.71351            1       1         1         0
## 1616  -4.804338  34.22029            0       1         0         0
## 1617  -7.937941  31.62741            0       0         0         0
## 1618  -3.983516  34.53671            0       0         1         0
## 1619  -3.571770  32.61084            0       0         1         0
## 1620  -7.044389  30.55955            0       0         1         0
## 1621  -4.638137  38.19882            1       1         0         0
## 1622  -6.790044  39.05432            1       0         1         0
## 1623  -4.216021  35.74168            1       1         1         1
## 1624  -9.336776  33.32216            0       0         0         0
## 1625  -8.977339  33.94898            0       1         0         0
## 1626  -3.130516  32.91876            0       0         0         0
## 1627  -3.196323  34.41477            0       0         1         0
## 1628  -5.992340  37.75255            1       1         1         0
## 1629  -9.591888  34.87660            1       0         1         1
## 1630  -5.181477  39.09101            0       0         0         0
## 1631  -7.393303  38.96921            1       1         0         0
## 1632  -5.170935  38.46550            1       0         1         0
## 1633  -2.563796  33.27545            1       0         1         0
## 1634  -3.128570  33.49541            0       0         1         0
## 1635  -6.484169  31.11612            1       1         0         0
## 1636  -4.793995  38.29087            1       1         1         1
## 1637  -8.616441  39.26453            0       0         0         0
## 1638  -6.778774  36.64757            0       0         1         0
## 1639  -8.773721  33.64296            1       1         0         0
## 1640  -4.312438  35.74456            1       0         0         0
## 1641  -3.220784  32.69438            0       0         0         0
## 1642  -3.278784  37.09615            1       1         1         1
## 1643  -2.539368  32.91289            1       0         1         0
## 1644  -4.700035  38.11984            1       0         1         0
## 1645  -8.253512  35.10657            0       0         0         0
## 1646  -6.213538  31.22455            0       0         0         0
## 1647  -1.858816  33.04993            1       1         0         0
## 1648  -9.239853  33.33894            0       0         1         0
## 1649  -6.321523  31.08085            1       0         0         1
## 1650  -5.725303  37.09664            1       1         1         0
## 1651  -4.762395  34.20166            0       1         0         0
## 1652  -9.309995  33.62291            1       1         0         0
## 1653  -6.165643  39.20898            0       0         0         0
## 1654  -4.847666  38.51229            1       1         0         0
## 1655  -2.490681  32.98829            1       1         0         0
## 1656 -10.345759  40.25116            1       1         1         0
## 1657  -7.746597  35.71928            1       1         1         0
## 1658  -8.213781  34.83908            1       1         0         0
## 1659  -3.128526  33.51308            0       0         0         0
## 1660  -4.142308  33.45834            0       0         0         0
## 1661  -9.905980  38.98556            0       1         0         0
## 1662  -3.952103  35.44045            1       0         0         0
## 1663  -6.575295  39.07677            1       0         0         0
## 1664  -5.054095  35.86419            0       0         1         0
## 1665  -6.856505  39.28311            1       1         1         0
## 1666  -6.420854  31.02019            1       1         0         0
## 1667  -7.736564  35.69494            1       0         1         0
## 1668  -2.662391  32.64137            0       0         1         1
## 1669  -5.440945  37.73055            1       0         1         1
## 1670  -7.144943  39.07801            1       0         1         0
## 1671  -8.891691  33.54492            1       0         0         0
## 1672  -7.945384  31.63919            1       0         1         0
## 1673  -6.345850  31.06956            1       0         0         1
## 1674  -6.659096  39.17855            1       0         0         0
## 1675 -10.853015  39.27820            1       1         1         0
## 1676  -4.771495  34.91792            0       1         0         0
## 1677  -9.174854  32.86412            1       1         0         0
## 1678  -6.849239  39.14637            1       1         0         0
## 1679  -6.775203  37.75313            1       1         0         0
## 1680  -6.811465  39.10764            1       0         0         0
## 1681 -10.274652  40.16780            1       1         1         0
## 1682  -9.010983  33.00515            1       1         0         0
## 1683  -9.326336  33.33306            0       0         0         0
## 1684  -8.843741  34.80464            1       1         0         0
## 1685  -5.883608  36.44749            0       0         0         0
## 1686  -3.952100  35.44060            0       1         1         0
## 1687  -2.377648  33.58031            1       0         0         0
## 1688  -5.019357  38.70771            1       0         0         1
## 1689  -5.612598  32.74700            0       1         1         0
## 1690  -8.572309  33.45624            1       1         1         1
## 1691  -4.324633  37.88633            1       0         0         0
## 1692 -10.442166  36.05909            0       1         0         0
## 1693 -10.106704  39.62071            1       0         0         0
## 1694  -8.173272  36.33574            1       1         1         1
## 1695  -5.865750  35.19121            0       0         0         0
## 1696  -3.997215  33.37929            1       0         0         0
## 1697  -1.496014  33.81085            0       0         0         0
## 1698  -4.575166  30.09850            0       1         1         0
## 1699 -10.369790  39.22200            1       1         0         0
## 1700  -5.016971  32.81002            0       0         0         0
## 1701  -6.744070  30.40721            1       0         1         0
## 1702  -2.564949  36.78456            0       1         0         0
## 1703  -6.418922  39.54607            0       0         0         0
## 1704  -6.825991  37.65313            1       1         1         0
## 1705  -4.347483  32.88209            1       0         1         0
## 1706  -5.036151  36.23784            0       0         0         0
## 1707 -11.402195  36.43081            1       1         0         0
## 1708  -4.379514  35.47740            0       1         0         0
## 1709  -9.669812  39.10841            0       0         0         1
## 1710 -10.202919  38.84235            0       1         0         0
## 1711  -6.484725  35.93951            1       1         1         0
## 1712  -5.337003  39.73044            0       1         0         0
## 1713 -10.751565  38.53242            0       0         0         0
## 1714  -8.882983  32.79953            0       0         0         0
## 1715  -2.916553  32.16530            0       0         0         0
## 1716  -4.848358  29.74423            1       1         0         0
## 1717  -3.415501  31.52227            1       0         0         0
## 1718  -2.317051  32.68439            1       1         1         0
## 1719  -1.364433  34.43741            0       0         1         0
## 1720  -4.199139  30.49044            1       1         1         0
## 1721  -2.506684  32.00984            1       0         0         0
## 1722  -3.253151  37.00724            1       1         0         0
## 1723 -10.933880  39.28597            1       1         1         0
## 1724  -6.858386  39.23360            1       0         1         0
## 1725  -6.131434  39.31614            1       0         0         0
## 1726 -10.694773  39.39374            1       1         1         0
## 1727  -5.246111  39.78152            1       0         1         0
## 1728  -3.053619  34.34180            0       0         1         0
## 1729  -8.502466  35.08090            0       0         0         0
## 1730  -3.638685  32.95432            0       1         1         0
## 1731 -11.132198  38.60738            1       1         1         0
## 1732  -8.965131  32.89897            1       0         0         0
## 1733  -7.326877  35.54285            1       0         0         0
## 1734 -10.692207  39.39712            1       1         1         0
## 1735  -3.749834  32.85768            1       0         0         0
## 1736  -1.811149  33.40906            1       0         0         0
## 1737  -2.122842  33.05959            1       1         1         0
## 1738  -6.524381  37.21406            0       0         0         0
## 1739  -4.510074  35.06841            0       0         0         0
## 1740  -7.838677  38.34612            1       1         0         0
## 1741  -6.139624  37.59064            1       1         1         0
## 1742  -2.774411  33.79147            0       0         1         0
## 1743 -10.794144  39.42216            1       1         0         0
## 1744  -6.849290  39.14593            1       1         1         0
## 1745  -8.059813  35.46360            1       1         0         0
## 1746  -9.927538  39.72514            0       0         0         0
## 1747  -8.847350  34.82324            1       1         0         0
## 1748  -4.891229  29.74253            0       0         0         0
## 1749  -4.794421  38.28562            1       0         0         0
## 1750  -2.078227  32.93930            0       1         1         0
## 1751  -7.491411  30.59690            0       0         0         0
## 1752  -5.246169  39.78152            0       0         0         0
## 1753  -9.133788  32.74885            0       0         0         0
## 1754  -4.436389  34.87024            1       0         1         0
## 1755  -9.251326  32.83648            1       1         0         0
## 1756  -7.855481  31.17657            1       0         1         0
## 1757  -1.749973  31.61606            1       1         1         0
## 1758 -11.263935  34.79114            0       0         0         1
## 1759  -6.204194  31.22394            0       1         0         0
## 1760 -10.202887  38.61961            1       0         0         0
## 1761  -4.890348  29.74325            0       0         0         1
## 1762 -11.049011  34.76160            0       1         0         0
## 1763  -7.774221  35.69569            1       0         1         0
## 1764  -5.442208  38.03753            0       0         0         0
## 1765  -6.240166  39.52770            0       1         1         0
## 1766  -5.104936  32.39602            1       0         0         1
## 1767  -6.844722  39.27924            1       0         0         0
## 1768  -8.937450  33.18943            1       0         1         0
## 1769  -5.695753  36.63119            0       0         0         0
## 1770  -6.070210  36.64538            1       1         0         0
## 1771  -6.617259  39.09648            1       1         0         0
## 1772  -8.313724  35.27435            1       1         0         0
## 1773  -5.085805  30.56337            1       1         0         0
## 1774  -5.456934  33.82835            0       0         0         0
## 1775  -2.584752  32.64708            0       0         0         0
## 1776  -9.119015  32.93943            1       1         0         0
## 1777  -7.196613  31.09202            0       1         0         0
## 1778  -5.016726  38.70963            1       0         1         0
## 1779  -8.911367  33.43452            0       0         0         0
## 1780 -10.251400  38.69593            0       1         0         1
## 1781  -3.252763  33.43796            0       0         0         0
## 1782  -7.453471  31.38635            0       1         1         1
## 1783  -4.552511  34.84270            0       0         0         0
## 1784  -7.117449  31.23510            1       1         1         1
## 1785  -4.853477  34.87766            1       1         1         0
## 1786  -5.015404  38.70849            0       0         0         0
## 1787 -10.860995  39.27997            0       0         1         0
## 1788  -5.738672  34.84156            1       1         1         1
## 1789  -8.896624  31.69146            0       0         0         0
## 1790  -6.794218  39.23238            1       0         0         0
## 1791  -2.011927  33.94685            1       0         1         0
## 1792  -2.487316  32.92427            1       1         1         0
## 1793  -5.173541  38.46678            1       0         0         0
## 1794 -10.716805  38.76730            0       0         0         0
## 1795  -5.029538  38.69550            1       0         0         0
## 1796  -6.636902  38.35509            1       1         1         0
## 1797  -7.775075  31.10261            0       0         1         0
## 1798  -1.960005  35.35634            0       0         0         1
## 1799  -7.957994  31.61841            1       0         0         1
## 1800  -9.973396  34.62808            0       1         0         0
## 1801 -10.664190  38.75097            0       0         0         0
## 1802  -8.072968  31.93338            1       0         0         0
## 1803 -11.074049  38.27657            0       1         0         1
## 1804  -1.985535  33.06592            0       0         1         0
## 1805  -4.684252  34.89663            1       1         1         1
## 1806  -6.867777  39.28387            1       1         0         0
## 1807 -11.056857  37.33766            1       1         1         1
## 1808 -11.108296  35.20304            0       1         1         0
## 1809  -7.701168  31.28270            0       0         0         0
## 1810  -6.923374  39.25581            1       1         0         1
## 1811  -2.533532  32.93136            1       0         0         0
## 1812  -2.504959  32.01061            1       1         1         0
## 1813  -7.782660  35.66713            1       0         0         0
## 1814 -10.796302  39.42368            0       0         0         0
## 1815  -8.409273  35.86652            0       1         1         1
## 1816  -8.302826  32.32665            0       0         1         0
## 1817 -10.795314  39.42262            0       0         1         1
## 1818 -10.226628  40.22047            1       0         0         0
## 1819  -8.088016  36.68237            1       1         1         0
## 1820  -7.118782  37.80586            1       0         1         0
## 1821  -6.823234  39.23002            1       1         1         0
## 1822  -8.039318  35.76125            0       1         1         0
## 1823  -5.872647  39.29254            0       0         1         0
## 1824  -6.395152  30.97914            0       1         1         0
## 1825 -10.237950  39.47138            0       0         0         1
## 1826  -6.882901  39.25327            1       0         0         0
## 1827  -3.448597  37.42518            1       1         1         0
## 1828  -4.188611  35.02128            1       1         1         1
## 1829  -4.056461  33.08408            1       1         0         0
## 1830  -7.774946  31.10267            1       1         1         1
## 1831  -3.358762  36.60110            0       0         0         0
## 1832  -9.773358  39.60115            0       0         0         1
## 1833  -6.884961  39.15519            1       0         0         0
## 1834  -4.345548  32.89008            0       0         0         0
## 1835  -8.350217  31.83529            1       1         0         0
## 1836  -6.923583  39.25703            1       1         0         0
## 1837  -4.372977  35.07264            1       1         1         0
## 1838 -10.712195  39.44463            0       0         0         0
## 1839  -5.777245  39.30055            0       0         0         0
## 1840  -4.984201  39.83419            0       1         1         0
## 1841  -3.439856  31.89303            1       1         0         0
## 1842  -4.140427  33.46406            0       1         0         0
## 1843  -6.837059  39.18588            1       0         0         0
## 1844  -8.012022  35.49688            1       1         1         0
## 1845  -3.333017  33.92523            0       0         1         0
## 1846  -3.667719  35.60286            1       0         1         0
## 1847  -6.341594  31.06431            1       0         0         0
## 1848  -6.892275  39.22910            1       1         1         1
## 1849  -6.211128  39.21805            1       0         0         1
## 1850  -3.388338  36.94392            1       0         1         0
## 1851  -6.881226  39.28643            0       0         0         0
## 1852  -9.438225  33.56092            1       0         0         1
## 1853  -4.119316  34.82136            0       1         1         0
## 1854 -10.521873  38.67520            1       1         0         0
## 1855  -1.324265  31.79129            1       0         0         0
## 1856  -5.169510  39.80646            0       1         0         0
## 1857  -3.016358  33.04483            1       1         1         0
## 1858  -7.731434  35.70265            1       0         0         1
## 1859  -6.883011  39.25342            1       1         0         1
## 1860 -10.719292  38.77158            0       1         0         0
## 1861  -3.162447  33.30108            1       0         0         0
## 1862  -4.906169  35.78085            0       0         0         0
## 1863  -6.148665  35.73767            1       0         0         0
## 1864  -8.089743  35.83677            1       1         0         1
## 1865 -10.442327  36.06147            1       0         0         1
## 1866  -8.052735  31.50348            1       1         1         0
## 1867  -5.200430  38.71752            1       0         0         1
## 1868  -6.220632  36.35454            0       0         1         1
## 1869  -3.512551  35.95517            0       1         1         0
## 1870  -9.987725  38.96400            1       1         1         0
## 1871  -5.242975  39.76736            1       1         0         0
## 1872  -2.640704  33.93040            0       1         1         0
## 1873  -6.483856  31.11671            0       1         1         1
## 1874  -5.981871  35.44183            0       1         0         1
## 1875  -5.246220  39.78233            1       1         1         0
## 1876  -4.567826  33.03933            1       1         1         0
## 1877 -10.861374  39.02941            1       1         1         0
## 1878  -3.251487  30.90944            1       1         1         0
## 1879  -4.311841  35.74577            1       0         0         0
## 1880  -6.921514  37.77748            0       0         0         0
## 1881  -9.489001  33.27174            0       0         1         0
## 1882 -10.182372  40.01454            1       0         0         0
## 1883  -4.646231  35.04335            1       0         1         0
## 1884 -10.663274  38.75023            0       1         1         0
## 1885  -6.779442  39.23631            1       1         0         1
## 1886  -4.808834  34.75382            1       1         0         0
## 1887  -4.292207  35.55142            1       0         1         1
## 1888  -6.331494  38.38498            1       1         0         0
## 1889  -1.593010  31.14144            1       0         0         0
## 1890  -1.870342  34.73408            0       0         0         0
## 1891  -8.102938  35.90314            0       0         0         0
## 1892  -9.057494  33.28735            1       0         1         0
## 1893  -6.857194  39.28204            1       0         1         0
## 1894  -9.083033  34.64290            0       0         0         0
## 1895  -6.223189  36.35387            1       1         0         0
## 1896  -2.770246  32.69655            1       1         1         0
## 1897  -6.616494  39.11045            1       1         0         0
## 1898  -3.320310  36.33822            1       0         0         0
## 1899 -10.560745  39.17486            0       0         0         0
## 1900  -4.310558  35.74179            1       0         0         0
## 1901  -7.955387  36.86436            0       1         1         0
## 1902 -10.950543  39.34136            1       0         1         0
## 1903  -5.071152  32.79159            1       1         0         0
## 1904  -8.243182  35.02466            0       0         1         0
## 1905 -10.704898  35.80127            1       0         1         0
## 1906  -3.741828  37.66342            1       1         0         1
## 1907  -8.386770  33.23058            1       0         0         0
## 1908 -10.281636  40.19760            1       0         1         0
## 1909  -9.336108  34.76667            0       1         0         0
## 1910  -6.783918  39.01765            1       1         0         0
## 1911  -9.986419  38.96440            1       0         0         0
## 1912  -2.401749  32.32909            1       1         1         0
## 1913  -9.464455  33.95018            0       0         0         0
## 1914  -2.528950  32.96297            1       0         1         1
## 1915  -2.879020  32.23297            1       0         0         0
## 1916  -1.456329  31.69376            1       1         1         0
## 1917  -5.873222  39.29424            0       1         0         0
## 1918  -9.283068  35.28421            1       1         0         0
## 1919  -6.151672  39.22428            1       0         1         0
## 1920  -4.796414  38.29167            1       1         0         1
## 1921  -3.329766  36.63739            1       1         0         0
## 1922  -6.827707  37.65220            1       0         1         1
## 1923  -4.809622  34.75340            0       0         0         0
## 1924  -5.986630  38.22105            0       0         0         0
## 1925  -6.897030  39.25355            1       0         0         0
## 1926  -4.528917  38.23805            0       0         0         0
## 1927  -3.335765  33.92738            0       1         0         0
## 1928  -4.642531  34.16671            0       1         0         0
## 1929  -4.574809  30.09948            0       0         0         0
## 1930  -3.153624  33.66235            0       0         0         0
## 1931  -2.747094  33.23101            0       1         0         1
## 1932  -4.909710  29.66180            1       1         1         1
## 1933  -4.324997  37.88642            1       0         1         0
## 1934  -6.750118  30.40934            0       1         0         0
## 1935  -8.885678  33.30232            1       0         0         0
## 1936  -1.511051  33.80825            1       1         0         0
## 1937  -1.084000  31.80719            1       1         1         0
## 1938  -6.909753  37.49554            0       1         1         0
## 1939  -5.715105  38.23726            1       0         0         0
## 1940  -1.375401  34.43289            0       1         0         0
## 1941  -7.389503  31.36446            0       0         1         0
## 1942 -10.793116  38.32066            0       1         0         0
## 1943 -11.098611  39.30909            0       0         0         0
## 1944 -10.704977  39.13345            0       0         1         1
## 1945  -7.167618  30.53641            1       0         1         0
## 1946  -6.948321  39.23169            1       0         1         0
## 1947  -4.957011  39.78686            1       1         0         0
## 1948  -6.146456  39.32883            0       0         0         0
## 1949  -4.548923  35.79580            1       1         1         0
## 1950  -2.715496  33.14014            0       0         0         0
## 1951  -8.539092  32.94157            0       1         0         0
## 1952  -6.888139  39.16064            1       1         1         1
## 1953  -4.824996  32.85682            0       0         0         0
## 1954  -6.041551  39.23003            1       0         1         0
## 1955  -8.016228  35.49347            0       0         0         0
## 1956  -3.788439  30.49477            1       1         0         0
## 1957  -3.199934  37.64567            1       1         0         0
## 1958  -9.669902  39.10836            1       0         0         0
## 1959  -6.087422  39.32903            0       0         0         0
## 1960  -8.841048  34.81143            1       1         1         0
## 1961  -5.926811  39.22311            0       0         1         0
## 1962  -4.820650  39.08783            1       1         1         0
## 1963  -4.625886  35.75632            1       0         0         1
## 1964  -4.269811  38.05066            1       1         1         0
## 1965  -8.409393  35.86655            0       0         0         0
## 1966  -2.486009  32.90195            0       1         1         0
## 1967  -9.221034  33.64046            1       0         1         0
## 1968  -2.560882  33.26424            1       0         1         0
## 1969  -3.448631  37.42520            1       1         0         0
## 1970  -9.404283  39.59920            0       0         0         0
## 1971  -5.283339  35.08206            1       0         1         0
## 1972  -5.337002  39.73052            1       0         0         0
## 1973  -3.005113  31.92495            1       1         1         1
## 1974 -10.204856  38.84306            0       1         0         0
## 1975  -2.564527  36.78431            0       0         0         1
## 1976  -6.616821  39.11027            1       0         0         0
## 1977  -8.551020  32.55034            1       0         0         0
## 1978  -6.869432  39.27548            0       0         0         0
## 1979  -2.402847  31.70872            1       0         0         0
## 1980  -6.163826  35.88974            0       0         0         0
## 1981  -3.828950  32.60460            1       1         1         0
## 1982  -7.104716  31.23705            0       1         0         0
## 1983  -9.408092  33.91681            0       1         1         0
## 1984  -4.453210  38.32891            0       0         0         0
## 1985  -5.246653  39.76678            0       0         0         0
## 1986  -5.176406  34.62006            0       0         1         0
## 1987  -8.465831  32.15776            1       0         1         0
## 1988 -11.023215  35.12412            0       1         0         0
## 1989  -8.526254  32.03569            0       0         0         0
## 1990  -8.361413  32.29751            1       0         0         0
## 1991  -5.873933  39.25830            1       0         0         0
## 1992  -2.879095  37.36977            1       0         0         0
## 1993  -9.029688  32.46648            0       0         0         0
## 1994  -5.700216  34.49165            1       1         0         0
## 1995  -3.390610  36.66734            1       1         1         0
## 1996  -3.387117  35.49957            1       1         1         1
## 1997  -8.033446  35.77037            0       0         0         1
## 1998  -6.883157  39.25347            1       0         0         0
## 1999  -6.598281  38.54620            0       0         1         0
## 2000  -6.794265  39.23270            1       0         0         0
## 2001 -10.735214  34.74395            0       1         1         0
## 2002  -8.253602  31.36164            1       1         1         1
## 2003  -3.607367  36.71279            0       1         0         1
## 2004 -10.692302  39.79992            1       0         0         1
## 2005  -7.408982  37.66951            0       1         0         0
## 2006  -6.721359  38.73640            1       0         0         1
## 2007  -6.193025  39.25603            1       1         1         0
## 2008  -6.142661  39.24159            1       1         1         0
## 2009 -10.965968  35.27540            0       0         0         0
## 2010  -9.971204  34.63016            1       1         1         0
## 2011  -6.814491  39.15244            1       1         1         0
## 2012  -8.934923  33.34461            1       0         0         0
## 2013  -2.665976  32.98017            1       1         1         0
## 2014  -6.150823  39.51708            0       1         1         0
## 2015  -7.872884  30.79704            0       0         1         0
## 2016  -2.705877  33.48917            1       0         0         1
## 2017 -10.258433  39.92180            1       0         0         0
## 2018  -7.599161  31.27127            1       1         0         0
## 2019  -3.133942  32.90605            1       0         0         1
## 2020  -6.816965  39.08526            0       0         1         0
## 2021  -4.419273  34.76239            0       0         0         0
## 2022  -8.062195  36.00653            1       0         1         1
## 2023  -4.734734  34.92388            1       1         1         1
## 2024  -6.808147  39.23252            1       1         0         0
## 2025  -7.510278  31.04500            0       1         0         0
## 2026  -8.967764  32.90095            0       1         0         0
## 2027  -7.646870  35.75628            0       1         1         0
## 2028  -5.236417  39.77872            0       0         0         0
## 2029  -8.635636  31.42947            0       0         0         0
## 2030  -1.241344  34.36808            1       1         1         0
## 2031  -6.849673  39.22526            1       0         1         0
## 2032  -4.776154  33.23853            0       1         0         0
## 2033  -3.209157  37.31183            1       1         0         0
## 2034  -7.302427  30.63091            0       1         1         0
## 2035 -10.274334  40.17459            0       0         0         0
## 2036  -8.541338  31.90562            1       0         1         0
## 2037  -2.843314  33.08111            1       0         0         0
## 2038  -4.460808  35.68938            1       0         1         0
## 2039  -2.602632  33.42278            1       1         0         0
## 2040  -6.209196  39.21827            1       1         1         1
## 2041  -9.050734  33.29010            0       0         0         0
## 2042  -3.432013  31.50893            1       1         1         0
## 2043  -6.849671  39.22503            0       0         0         0
## 2044  -4.453946  38.32841            0       0         0         0
## 2045  -6.187648  39.21582            1       0         0         0
## 2046  -6.200187  39.25399            1       0         1         0
## 2047  -4.493813  35.07229            0       0         0         0
## 2048  -3.351819  37.34918            1       1         0         1
## 2049  -4.200111  34.82145            1       0         0         0
## 2050  -2.121309  33.05953            1       1         0         1
## 2051  -7.849743  31.43522            1       0         1         1
## 2052  -7.954386  31.60717            1       0         0         0
## 2053  -4.474563  34.18417            0       1         0         0
## 2054  -5.875356  39.25609            1       0         0         0
## 2055  -4.071376  37.98837            1       1         1         0
## 2056  -5.134907  34.77139            1       1         0         0
## 2057  -1.750169  31.61119            1       0         0         0
## 2058 -10.378582  39.84099            1       1         0         1
## 2059  -4.395134  34.52822            0       1         0         0
## 2060  -8.167450  36.33011            1       1         0         0
## 2061  -6.162934  39.19122            0       0         1         0
## 2062  -5.074657  38.45269            0       0         0         0
## 2063  -4.435247  34.86985            1       1         1         0
## 2064  -4.612594  29.78251            1       1         1         0
## 2065  -6.858850  39.23302            1       1         0         0
## 2066  -3.391698  37.55031            1       1         1         0
## 2067  -4.874983  38.44760            0       0         0         0
## 2068  -6.854998  30.52992            0       1         0         0
## 2069  -6.816958  39.08603            1       0         1         0
## 2070  -5.769218  37.25095            0       0         0         0
## 2071  -5.185362  38.77041            1       1         0         1
## 2072  -2.120816  33.49131            1       1         1         0
## 2073  -3.204742  35.94439            1       0         0         0
## 2074  -4.088917  34.73578            1       0         1         0
## 2075 -10.817017  39.52649            1       1         1         0
## 2076  -9.171430  33.81922            0       0         0         0
## 2077 -10.926600  35.27890            1       1         0         0
## 2078  -4.760870  34.58139            1       1         1         1
## 2079  -8.803570  34.22392            1       0         1         0
## 2080 -10.258666  39.92090            1       1         1         0
## 2081  -8.973382  33.95753            0       1         0         0
## 2082  -2.578178  36.77668            0       0         0         0
## 2083  -4.776107  33.23834            0       0         0         0
## 2084  -3.355509  36.49439            0       0         0         0
## 2085 -10.793753  39.42271            0       1         1         0
## 2086  -4.191869  33.12874            0       0         0         0
## 2087  -2.856371  33.28018            0       1         1         0
## 2088  -8.088099  36.68166            0       0         0         0
## 2089  -1.331263  33.80811            1       0         0         0
## 2090  -4.200126  32.32583            0       0         1         0
## 2091 -10.488654  39.02789            1       1         0         0
## 2092  -6.154415  39.22299            1       0         1         0
## 2093 -11.125137  35.17390            1       1         0         0
## 2094 -10.488128  39.02829            1       1         0         1
## 2095 -11.023280  35.12392            0       0         0         1
## 2096  -8.189482  31.85022            0       0         0         0
## 2097  -1.557957  31.46215            1       1         1         0
## 2098  -9.336072  34.76558            1       0         1         0
## 2099  -2.344145  32.29518            0       1         0         0
## 2100 -11.057877  35.11873            0       1         1         0
## 2101  -1.344749  31.65857            1       0         1         0
## 2102  -1.321872  31.81752            1       1         1         0
## 2103  -6.192821  39.25603            1       1         0         0
## 2104  -3.366351  36.68724            1       1         1         0
## 2105  -3.005197  31.92445            1       0         1         0
## 2106  -4.105939  35.18116            1       1         1         1
## 2107  -2.538485  32.23759            1       1         1         0
## 2108  -3.031613  33.93113            0       0         1         0
## 2109  -8.806570  34.97652            1       0         1         0
## 2110  -9.369359  34.23857            1       0         1         0
## 2111  -6.181934  39.22333            0       1         0         0
## 2112  -3.358118  33.90985            1       0         1         0
## 2113  -1.853442  31.59029            0       1         1         1
## 2114  -2.743992  31.62895            0       0         0         0
## 2115  -8.305117  32.33495            1       0         1         0
## 2116  -4.310531  35.74016            0       0         0         0
## 2117  -5.124884  38.38488            1       0         0         0
## 2118  -6.933936  30.60138            0       0         0         0
## 2119  -7.752823  35.67893            1       1         1         0
## 2120  -2.766215  32.11263            1       1         1         0
## 2121  -4.552331  34.84274            0       1         0         0
## 2122  -1.880742  34.73088            1       0         1         1
## 2123 -10.493082  39.32410            1       0         0         0
## 2124  -8.553637  36.00417            0       0         0         0
## 2125  -1.794625  34.73343            1       0         0         1
## 2126  -8.906178  33.46299            0       1         0         0
## 2127  -1.556770  31.65016            0       1         1         0
## 2128  -8.251539  31.36193            0       1         0         1
## 2129  -6.743933  30.40716            1       1         1         0
## 2130  -8.954343  33.24194            0       0         0         1
## 2131  -6.661419  37.13609            1       1         1         0
## 2132  -2.627673  33.93041            0       1         0         0
## 2133  -6.418362  39.54793            0       0         1         0
## 2134 -10.686849  39.59189            0       1         0         0
## 2135  -3.523085  35.33449            0       1         1         0
## 2136 -10.196281  38.56199            0       1         0         0
## 2137  -4.844656  29.97259            0       0         0         1
## 2138  -2.559999  32.65545            1       1         0         0
## 2139 -10.867336  39.42960            1       1         1         0
## 2140  -7.393134  38.96937            1       1         1         0
## 2141  -2.596270  32.91345            1       1         0         0
## 2142  -2.554960  30.60707            1       0         1         0
## 2143  -8.600415  35.04390            1       0         1         1
## 2144  -9.759835  39.61860            1       1         0         0
## 2145  -1.874057  33.70225            1       0         0         1
## 2146  -3.394689  36.73829            1       1         1         0
## 2147  -6.869069  39.27626            1       1         0         0
## 2148  -3.376864  36.67659            1       1         1         0
## 2149  -5.017065  32.81012            1       0         0         0
## 2150  -4.701840  38.12082            1       0         0         0
## 2151  -3.331969  36.34391            1       1         0         0
## 2152  -6.222641  36.35265            1       0         1         1
## 2153  -7.769515  36.91530            1       0         1         0
## 2154  -6.965644  39.51337            0       1         0         0
## 2155  -6.783986  39.23880            1       1         1         1
## 2156  -8.953842  32.56485            1       1         0         0
## 2157 -10.606257  39.62233            0       0         0         0
## 2158  -4.872925  38.45612            1       0         1         0
## 2159  -6.220814  39.23285            0       0         1         0
## 2160  -4.450097  33.95166            0       1         0         1
## 2161  -4.853394  32.47505            1       0         0         0
## 2162  -6.222024  39.23324            1       0         0         0
## 2163  -3.680953  30.58997            1       0         0         0
## 2164  -3.681005  30.58993            1       1         0         1
## 2165  -3.042596  35.48211            0       0         1         0
## 2166  -2.759691  33.61841            0       0         0         0
## 2167  -6.210093  39.21912            1       0         1         1
## 2168  -2.887019  31.73253            1       1         1         1
## 2169  -7.556017  31.02547            0       0         1         0
## 2170  -4.510161  35.06835            0       0         0         0
## 2171 -10.706165  39.13305            1       1         0         0
## 2172 -11.014758  39.44334            1       0         0         0
## 2173  -5.078118  39.12214            1       1         0         0
## 2174  -5.414959  39.72396            0       0         1         0
## 2175  -6.326811  39.54995            0       0         0         0
## 2176  -2.802009  33.99103            1       1         1         0
## 2177  -2.827298  33.36686            1       1         0         0
## 2178  -5.874485  39.25644            0       1         1         0
## 2179  -3.078675  32.08505            0       0         0         0
## 2180 -10.951162  39.02943            1       1         1         0
## 2181  -4.843111  38.52186            0       0         0         0
## 2182  -5.695882  36.63144            1       0         0         0
## 2183  -6.759269  36.47060            1       1         1         1
## 2184  -8.631544  33.14788            1       1         0         0
## 2185  -9.054468  33.28924            0       0         0         0
## 2186  -6.566066  35.51695            1       1         1         0
## 2187  -6.227999  39.24173            1       1         0         0
## 2188  -7.748700  35.71592            1       0         1         0
## 2189  -4.887371  29.64412            1       1         0         0
## 2190  -4.983524  39.08415            0       0         0         0
## 2191  -6.485057  35.93949            1       1         1         0
## 2192  -6.833660  39.18554            1       1         1         0
## 2193  -9.427888  33.95596            0       0         1         0
## 2194  -5.246128  39.78123            0       0         0         0
## 2195  -7.838083  35.63740            0       1         1         0
## 2196  -9.305561  33.62524            0       0         1         0
## 2197  -2.643967  32.77833            1       1         1         0
## 2198  -6.169415  39.20041            1       1         0         0
## 2199  -8.908516  32.96499            0       1         0         0
## 2200  -6.813240  37.68254            1       1         1         1
## 2201  -8.898331  33.45403            0       0         0         0
## 2202  -8.916061  33.53401            1       1         0         1
## 2203  -6.616194  39.11210            0       1         0         0
## 2204  -4.186219  33.13551            0       0         0         0
## 2205  -2.877713  32.24622            1       1         1         0
## 2206 -10.861404  39.02941            0       0         0         0
## 2207  -3.239739  33.45499            0       1         1         0
## 2208  -4.865199  30.33689            0       0         1         0
## 2209  -2.680874  30.57971            0       1         1         0
## 2210  -3.373630  36.84828            0       1         0         0
## 2211  -8.481461  32.08486            1       1         1         0
## 2212  -3.345385  36.83518            0       0         0         1
## 2213 -10.835524  38.64745            1       1         1         1
## 2214  -6.207886  39.38627            0       0         0         0
## 2215  -3.720725  32.67925            0       1         0         0
## 2216 -10.096560  34.68139            0       0         0         1
## 2217  -8.603330  35.04272            1       0         1         0
## 2218  -8.302891  32.32756            0       1         1         0
## 2219 -10.920679  39.37978            0       0         1         0
## 2220  -7.731098  35.70030            1       0         0         0
## 2221 -10.362627  40.10336            1       0         0         1
## 2222 -11.133291  38.60670            0       0         0         0
## 2223  -3.376985  36.67632            1       1         0         0
## 2224  -6.948180  39.23120            1       1         0         0
## 2225  -2.763421  33.61448            1       0         0         0
## 2226  -3.516945  32.39224            1       0         1         0
## 2227  -5.968306  39.19658            0       0         0         0
## 2228  -8.774777  33.64481            1       0         0         0
## 2229  -3.372749  36.68573            1       1         1         0
## 2230  -4.363440  29.96320            0       0         1         0
## 2231  -2.109268  33.07542            0       1         1         1
## 2232  -2.415731  31.70042            0       0         0         0
## 2233  -1.507109  33.78726            1       0         1         0
## 2234 -10.859110  39.78019            1       1         1         0
## 2235  -6.797048  39.22951            1       1         0         0
## 2236  -5.350492  39.70171            1       1         1         0
## 2237  -5.010447  39.81179            0       0         0         0
## 2238 -10.692349  39.80029            0       1         0         0
## 2239  -1.778787  34.06960            0       0         1         0
## 2240  -2.533517  33.19509            1       1         1         0
## 2241  -5.935282  37.27536            1       0         0         0
## 2242  -5.130952  38.97426            0       0         0         0
## 2243  -8.231383  35.43057            0       0         1         0
## 2244  -6.897896  39.28340            0       1         1         0
## 2245 -10.286861  40.11686            1       0         0         0
## 2246  -3.347630  37.58006            1       1         1         0
## 2247  -9.933617  39.72449            0       1         0         0
## 2248  -8.391695  38.94911            0       0         0         0
## 2249  -6.185138  39.20795            0       0         1         0
## 2250  -1.341735  34.38516            1       1         0         0
## 2251  -8.411658  38.93983            0       1         1         0
## 2252  -5.716561  38.23595            1       1         0         0
## 2253  -6.885230  39.15550            0       0         0         0
## 2254  -6.143292  39.24144            0       0         1         0
## 2255  -4.208795  35.76789            1       0         0         0
## 2256  -9.847005  38.89747            0       0         0         0
## 2257  -6.192247  39.25564            1       0         1         0
## 2258  -4.361087  37.82408            1       1         1         0
## 2259  -5.934199  37.27861            0       0         0         0
## 2260  -2.546274  32.95749            1       1         1         0
## 2261  -7.600261  36.99795            0       1         0         0
## 2262  -3.863650  32.60694            0       0         1         1
## 2263  -3.349058  36.83625            1       0         0         1
## 2264  -9.336880  34.76610            1       0         1         0
## 2265  -6.137947  39.22995            1       1         0         0
## 2266  -8.131375  30.96871            0       0         1         0
## 2267  -6.849222  39.14526            1       1         1         0
## 2268  -5.076301  32.06909            0       0         0         0
## 2269  -8.128375  30.96699            0       0         0         0
## 2270  -1.783800  34.71444            0       1         0         0
## 2271  -9.165565  33.54238            0       1         0         0
## 2272  -4.900306  38.57287            1       1         1         0
## 2273  -2.596186  32.91290            1       1         0         0
## 2274  -4.373068  35.07338            1       0         0         0
## 2275  -3.043482  31.37582            1       1         1         0
## 2276  -9.239894  33.33897            0       0         0         0
## 2277  -2.525669  32.90239            0       1         0         0
## 2278  -3.282207  32.87863            1       0         1         0
## 2279  -9.336880  34.76602            0       0         0         0
## 2280  -8.905866  33.46194            1       1         0         0
## 2281  -3.680934  30.58989            0       0         0         1
## 2282 -11.041374  37.42902            0       1         1         0
## 2283  -6.971225  39.09557            1       1         0         0
## 2284  -5.125565  32.38959            0       0         0         0
## 2285  -2.644822  33.94641            0       0         1         0
## 2286 -10.715983  39.99636            0       0         0         0
## 2287 -10.281193  40.19734            1       0         0         1
## 2288  -6.192945  39.25620            1       0         0         0
## 2289  -5.177328  34.61952            1       1         1         0
## 2290  -6.843848  39.23462            1       0         1         0
## 2291 -10.234855  39.47383            0       1         1         0
## 2292  -8.052346  31.50338            0       0         0         0
## 2293 -10.709727  39.44401            1       1         1         0
## 2294  -4.548847  35.79581            1       0         0         1
## 2295  -4.774028  34.91749            0       1         1         0
## 2296  -1.584951  30.89356            0       1         1         0
## 2297  -9.057411  33.28771            1       1         0         0
## 2298  -3.830560  33.29128            1       0         0         0
## 2299  -3.461972  35.69868            1       0         0         0
## 2300  -7.128164  39.20790            0       0         0         0
## 2301  -3.478265  37.57771            1       1         1         0
## 2302  -5.042164  32.81342            1       0         0         0
## 2303  -4.185813  34.24530            1       0         1         0
## 2304  -4.199103  30.49058            1       1         0         0
## 2305  -4.875886  34.63680            1       1         0         0
## 2306  -4.435467  34.87067            1       1         0         0
## 2307  -4.409648  34.77309            0       1         0         0
## 2308  -3.446921  37.43409            0       0         0         0
## 2309  -2.575756  36.77407            1       1         1         0
## 2310  -1.088651  31.80475            0       1         1         1
## 2311  -5.020879  38.70638            1       0         1         1
## 2312  -8.171884  36.33536            0       1         0         0
## 2313  -4.281833  35.55610            1       0         1         0
## 2314  -3.338444  36.82906            1       1         1         0
## 2315  -5.988458  37.75491            0       1         1         0
## 2316  -8.788280  35.15073            1       1         0         0
## 2317  -7.390101  31.36502            0       0         0         0
## 2318  -2.746781  33.23087            1       1         1         1
## 2319  -6.226674  39.24024            0       0         0         0
## 2320  -5.029515  38.69537            0       0         0         0
## 2321  -4.210228  35.76519            1       0         0         0
## 2322  -6.626127  37.51913            0       1         0         0
## 2323  -7.999446  35.84875            0       0         0         0
## 2324  -8.217790  31.68495            0       1         0         0
## 2325  -4.931873  34.94236            1       1         1         1
## 2326  -6.079373  36.64923            1       1         0         0
## 2327  -7.779478  35.67066            1       1         1         0
## 2328  -3.563382  36.94721            1       1         1         0
## 2329  -8.296796  34.90609            1       0         1         0
## 2330  -8.848387  34.82302            0       0         0         0
## 2331  -2.841258  35.51343            0       0         1         0
## 2332  -3.281202  32.98756            0       1         1         0
## 2333 -10.181494  38.94267            1       1         1         0
## 2334  -4.268824  38.05358            1       1         1         0
## 2335 -10.942599  39.24223            0       0         0         0
## 2336  -5.779123  39.30257            0       0         1         0
## 2337 -10.737771  38.80796            1       0         0         0
## 2338  -4.916466  34.67373            0       0         0         0
## 2339  -6.300675  35.50063            1       0         1         0
## 2340  -9.317070  32.77234            0       1         0         0
## 2341  -6.152432  39.22363            1       0         1         0
## 2342  -8.605054  39.26018            0       0         0         0
## 2343  -9.332098  33.70054            0       0         0         0
## 2344  -2.929762  36.22740            0       1         1         0
## 2345  -6.923380  37.77178            1       1         1         1
## 2346  -6.923232  39.25726            1       0         1         0
## 2347  -9.948024  37.90626            0       0         0         0
## 2348  -2.490325  32.91200            0       0         0         0
## 2349  -6.227388  39.24078            0       0         0         0
## 2350  -2.540962  32.91277            1       1         0         0
## 2351  -5.588207  38.26388            1       0         1         0
## 2352  -7.846355  31.43902            0       0         0         0
## 2353 -10.717003  38.77125            1       0         0         0
## 2354  -5.490354  29.78235            1       1         0         0
## 2355  -3.292362  32.23032            0       1         1         0
## 2356  -3.749451  32.85053            0       1         0         0
## 2357  -6.301227  35.88024            0       1         1         0
## 2358  -2.801814  33.99176            1       1         0         1
## 2359 -10.511224  38.99688            1       1         1         0
## 2360  -4.268846  38.05023            1       1         1         0
## 2361  -7.994518  31.79431            0       0         0         0
## 2362  -8.467723  32.15757            0       0         0         0
## 2363  -7.498066  36.46825            0       0         0         0
## 2364 -11.208179  34.97160            0       1         1         0
## 2365  -9.079714  34.80920            0       1         1         0
## 2366  -5.173220  38.46609            0       0         0         0
## 2367  -1.378760  34.62302            0       1         1         0
## 2368  -5.884347  36.44609            1       0         1         0
## 2369  -8.460533  32.15881            1       1         0         0
## 2370  -6.699767  39.18783            1       0         0         1
## 2371  -3.545484  36.98615            1       1         0         0
## 2372  -5.618916  32.74555            1       1         1         0
## 2373  -4.848599  34.82812            0       0         1         0
## 2374  -6.791110  39.14621            1       1         1         1
## 2375  -6.773442  37.75378            1       0         1         0
## 2376  -7.724768  35.71993            1       0         0         0
## 2377  -9.000733  32.81140            1       1         0         1
## 2378  -6.759903  39.12668            1       0         0         1
## 2379  -1.864644  33.86878            0       1         1         0
## 2380  -2.845481  33.08505            1       0         1         0
## 2381  -7.114282  31.22827            1       0         0         1
## 2382 -11.017188  34.88400            1       1         1         0
## 2383  -7.287441  36.06037            1       1         1         1
## 2384  -5.022515  32.81919            1       1         1         0
## 2385  -8.775107  33.64467            1       1         1         0
## 2386  -3.216424  37.25918            1       0         0         0
## 2387  -6.885340  39.15525            1       1         0         0
## 2388  -3.332828  36.64142            1       1         1         1
## 2389  -7.309945  30.63526            0       0         0         0
## 2390  -2.043977  33.84529            1       1         1         0
## 2391 -10.511789  38.99269            1       0         0         0
## 2392  -3.693129  37.42715            1       1         0         0
## 2393  -6.867703  39.28417            1       1         1         0
## 2394  -6.163440  36.02292            1       1         1         0
## 2395  -2.877357  32.24718            1       1         1         0
## 2396  -1.369111  34.08745            1       1         0         0
## 2397  -6.210602  34.83528            0       0         0         1
## 2398  -6.184842  39.20873            0       0         0         0
## 2399 -10.732628  39.51362            0       1         0         0
## 2400  -4.984132  39.83273            0       0         0         0
## 2401  -6.888529  39.16086            1       1         1         1
## 2402  -8.768113  31.84190            0       0         0         0
## 2403  -9.000420  32.81158            1       0         0         0
## 2404  -8.255859  35.09254            0       0         0         1
## 2405  -6.880665  39.24543            1       1         0         0
## 2406  -9.434773  33.94877            0       1         0         0
## 2407  -2.034700  33.02638            1       1         0         0
## 2408  -1.232019  30.94882            1       0         1         0
## 2409  -4.566916  35.65825            1       0         0         0
## 2410  -6.123283  38.40803            1       1         1         0
## 2411 -10.442424  36.05887            0       1         1         1
## 2412 -10.281243  40.19089            0       1         0         0
## 2413  -6.896688  39.25344            1       0         0         0
## 2414  -9.334529  34.76649            1       1         1         0
## 2415  -8.820653  36.25187            1       1         1         0
## 2416  -7.323596  30.63086            0       1         0         0
## 2417  -5.935244  37.27330            0       0         0         0
## 2418  -6.138336  39.23007            0       0         0         0
## 2419  -1.726999  33.97483            1       0         0         0
## 2420  -6.363027  37.13973            0       1         1         0
## 2421  -1.238753  34.36521            0       0         0         0
## 2422  -7.481743  31.48242            0       0         1         0
## 2423  -7.564924  36.10861            1       0         0         0
## 2424  -6.376413  38.35185            1       0         0         0
## 2425  -6.175003  36.02788            0       1         1         0
## 2426  -4.983787  39.83453            0       0         1         0
## 2427  -6.194602  39.22579            0       1         1         0
## 2428  -3.406508  36.68098            1       1         1         1
## 2429  -2.459225  33.63088            1       0         0         0
## 2430  -3.680934  30.58989            0       1         0         0
## 2431  -8.931036  33.50725            1       1         0         0
## 2432  -7.680594  31.56070            0       0         1         0
## 2433  -5.123551  38.38284            1       1         1         1
## 2434  -4.825455  34.75298            1       0         1         0
## 2435  -4.399826  34.53083            1       1         0         1
## 2436  -6.085549  39.22238            0       0         1         0
## 2437  -4.226137  34.61280            0       1         0         0
## 2438  -2.748351  33.23057            1       1         0         0
## 2439  -6.228635  39.24224            0       0         0         0
## 2440  -6.220605  36.35456            0       0         0         1
## 2441  -1.446567  34.58732            0       1         0         0
## 2442  -3.377202  36.95809            1       0         1         0
## 2443  -6.891271  39.24113            1       1         0         1
## 2444  -4.984065  39.83414            0       0         0         0
## 2445  -6.813025  37.68301            1       0         1         0
## 2446  -5.769774  37.25102            0       0         0         0
## 2447  -5.777695  39.30213            0       0         0         0
## 2448  -3.725601  32.68026            0       0         1         0
## 2449  -9.464867  33.94933            1       1         1         0
## 2450  -8.294439  31.51348            1       0         1         0
## 2451  -7.778176  35.67418            1       0         0         0
## 2452  -7.697109  35.62000            1       1         0         0
## 2453  -6.324541  39.54777            1       1         0         0
## 2454  -6.162488  34.84314            1       1         0         0
## 2455  -8.373691  31.71754            0       0         0         0
## 2456  -7.216939  38.79336            0       0         1         0
## 2457  -6.822772  39.31010            1       0         0         0
## 2458  -5.802374  34.39091            0       1         0         0
## 2459  -3.871173  32.76154            1       1         0         0
## 2460  -5.861110  35.69626            0       0         0         0
## 2461  -7.833512  33.35175            1       0         1         0
## 2462  -3.389477  36.67771            0       1         0         0
## 2463  -5.870462  35.13794            0       0         1         0
## 2464  -4.303021  33.89077            1       1         1         1
## 2465  -3.439988  31.89243            0       1         0         0
## 2466  -6.172647  35.73794            1       1         0         0
## 2467 -10.692602  39.80857            1       0         0         0
## 2468  -8.609685  31.29039            0       0         0         0
## 2469  -3.032019  33.93111            1       0         1         0
## 2470 -10.607418  39.62223            0       1         0         0
## 2471  -7.779580  35.67041            1       0         0         0
## 2472  -9.111658  32.77026            1       1         0         0
## 2473  -6.145171  37.59335            1       0         1         0
## 2474  -1.984335  33.06309            0       1         1         1
## 2475  -4.293488  34.23201            0       1         0         0
## 2476  -5.088435  31.84673            1       0         0         1
## 2477  -2.547869  33.07483            1       1         1         0
## 2478  -4.432242  34.47053            0       1         1         0
## 2479  -4.435569  30.02751            0       0         0         0
## 2480  -9.002353  34.54873            1       1         1         1
## 2481  -3.750704  32.84776            0       0         0         0
## 2482  -7.999026  35.85124            0       0         0         0
## 2483 -10.965874  35.27532            0       0         0         0
## 2484  -6.094198  39.33015            0       1         0         0
## 2485  -2.662026  30.59727            0       0         0         0
## 2486  -1.912952  34.72767            0       1         1         0
## 2487  -2.488087  32.92426            1       1         0         1
## 2488  -5.870125  35.13630            1       1         1         0
## 2489  -4.821143  39.08807            1       0         0         0
## 2490  -9.971182  34.63029            1       0         1         0
## 2491  -1.372582  34.43296            1       0         0         0
## 2492  -2.643612  33.96664            1       1         0         0
## 2493  -6.960911  39.33483            0       0         0         0
## 2494  -6.636907  38.35490            1       1         0         0
## 2495  -5.204877  38.70711            1       0         1         1
## 2496  -1.703092  34.30154            0       1         0         0
## 2497  -3.281817  32.87833            1       0         0         0
## 2498  -6.839376  39.23981            1       0         1         0
## 2499  -1.883169  34.73212            1       1         0         0
##      mobile_money_classification if_else(Q2 == 1, "Male", "Female")
## 1                              0                             Female
## 2                              3                               Male
## 3                              2                             Female
## 4                              3                               Male
## 5                              3                               Male
## 6                              1                               Male
## 7                              3                             Female
## 8                              3                             Female
## 9                              1                             Female
## 10                             3                             Female
## 11                             3                             Female
## 12                             2                             Female
## 13                             1                               Male
## 14                             0                             Female
## 15                             2                             Female
## 16                             0                             Female
## 17                             2                             Female
## 18                             3                             Female
## 19                             3                               Male
## 20                             3                             Female
## 21                             3                             Female
## 22                             3                             Female
## 23                             3                               Male
## 24                             1                             Female
## 25                             3                               Male
## 26                             3                             Female
## 27                             3                             Female
## 28                             3                             Female
## 29                             3                             Female
## 30                             3                             Female
## 31                             2                             Female
## 32                             3                               Male
## 33                             3                             Female
## 34                             1                               Male
## 35                             2                             Female
## 36                             1                               Male
## 37                             1                               Male
## 38                             3                               Male
## 39                             1                             Female
## 40                             3                               Male
## 41                             1                             Female
## 42                             1                             Female
## 43                             3                             Female
## 44                             2                             Female
## 45                             3                               Male
## 46                             2                             Female
## 47                             1                             Female
## 48                             3                               Male
## 49                             3                             Female
## 50                             2                               Male
## 51                             1                             Female
## 52                             1                             Female
## 53                             1                             Female
## 54                             3                               Male
## 55                             3                               Male
## 56                             1                               Male
## 57                             1                               Male
## 58                             3                             Female
## 59                             0                             Female
## 60                             3                               Male
## 61                             3                               Male
## 62                             3                             Female
## 63                             3                               Male
## 64                             1                             Female
## 65                             0                             Female
## 66                             3                               Male
## 67                             3                             Female
## 68                             3                               Male
## 69                             3                               Male
## 70                             3                             Female
## 71                             1                             Female
## 72                             3                               Male
## 73                             1                               Male
## 74                             3                             Female
## 75                             2                               Male
## 76                             3                               Male
## 77                             1                               Male
## 78                             1                               Male
## 79                             3                               Male
## 80                             0                             Female
## 81                             3                             Female
## 82                             2                             Female
## 83                             0                               Male
## 84                             0                             Female
## 85                             0                             Female
## 86                             1                             Female
## 87                             0                               Male
## 88                             3                               Male
## 89                             3                               Male
## 90                             3                               Male
## 91                             1                               Male
## 92                             3                             Female
## 93                             3                             Female
## 94                             0                               Male
## 95                             0                             Female
## 96                             2                             Female
## 97                             0                               Male
## 98                             1                             Female
## 99                             3                               Male
## 100                            3                               Male
## 101                            3                               Male
## 102                            3                             Female
## 103                            3                             Female
## 104                            3                               Male
## 105                            1                             Female
## 106                            3                               Male
## 107                            1                             Female
## 108                            3                             Female
## 109                            2                               Male
## 110                            2                             Female
## 111                            3                               Male
## 112                            0                             Female
## 113                            0                             Female
## 114                            0                             Female
## 115                            0                               Male
## 116                            2                             Female
## 117                            2                             Female
## 118                            1                               Male
## 119                            0                               Male
## 120                            2                               Male
## 121                            1                             Female
## 122                            0                             Female
## 123                            3                               Male
## 124                            3                             Female
## 125                            1                             Female
## 126                            0                               Male
## 127                            3                               Male
## 128                            1                               Male
## 129                            1                             Female
## 130                            2                             Female
## 131                            3                               Male
## 132                            3                             Female
## 133                            0                             Female
## 134                            0                               Male
## 135                            3                             Female
## 136                            2                             Female
## 137                            1                             Female
## 138                            3                               Male
## 139                            3                               Male
## 140                            2                             Female
## 141                            1                               Male
## 142                            3                               Male
## 143                            2                             Female
## 144                            0                             Female
## 145                            3                               Male
## 146                            2                               Male
## 147                            0                             Female
## 148                            3                             Female
## 149                            0                             Female
## 150                            3                             Female
## 151                            2                               Male
## 152                            1                             Female
## 153                            3                               Male
## 154                            3                               Male
## 155                            0                             Female
## 156                            3                             Female
## 157                            1                             Female
## 158                            2                             Female
## 159                            0                             Female
## 160                            2                               Male
## 161                            2                             Female
## 162                            3                               Male
## 163                            3                               Male
## 164                            0                             Female
## 165                            3                               Male
## 166                            2                               Male
## 167                            2                               Male
## 168                            0                             Female
## 169                            0                             Female
## 170                            1                             Female
## 171                            3                             Female
## 172                            2                             Female
## 173                            1                               Male
## 174                            0                               Male
## 175                            0                             Female
## 176                            3                               Male
## 177                            3                               Male
## 178                            3                             Female
## 179                            3                             Female
## 180                            1                             Female
## 181                            3                             Female
## 182                            3                               Male
## 183                            3                             Female
## 184                            1                               Male
## 185                            1                             Female
## 186                            1                               Male
## 187                            1                               Male
## 188                            0                               Male
## 189                            1                               Male
## 190                            3                               Male
## 191                            0                             Female
## 192                            3                             Female
## 193                            3                               Male
## 194                            1                             Female
## 195                            0                               Male
## 196                            1                             Female
## 197                            3                               Male
## 198                            3                               Male
## 199                            3                               Male
## 200                            0                             Female
## 201                            2                               Male
## 202                            2                             Female
## 203                            2                               Male
## 204                            0                               Male
## 205                            3                               Male
## 206                            1                               Male
## 207                            1                             Female
## 208                            3                               Male
## 209                            0                               Male
## 210                            3                             Female
## 211                            1                             Female
## 212                            3                             Female
## 213                            1                             Female
## 214                            1                             Female
## 215                            3                               Male
## 216                            2                               Male
## 217                            0                             Female
## 218                            1                               Male
## 219                            3                             Female
## 220                            2                             Female
## 221                            1                               Male
## 222                            0                             Female
## 223                            2                             Female
## 224                            1                             Female
## 225                            3                               Male
## 226                            3                               Male
## 227                            1                             Female
## 228                            1                             Female
## 229                            3                               Male
## 230                            1                             Female
## 231                            0                             Female
## 232                            0                               Male
## 233                            1                               Male
## 234                            3                               Male
## 235                            0                             Female
## 236                            1                             Female
## 237                            1                             Female
## 238                            0                               Male
## 239                            3                             Female
## 240                            1                             Female
## 241                            3                               Male
## 242                            3                               Male
## 243                            3                             Female
## 244                            1                               Male
## 245                            3                             Female
## 246                            3                               Male
## 247                            2                             Female
## 248                            2                               Male
## 249                            1                             Female
## 250                            3                             Female
## 251                            1                               Male
## 252                            3                               Male
## 253                            3                               Male
## 254                            0                             Female
## 255                            0                               Male
## 256                            1                             Female
## 257                            0                               Male
## 258                            3                               Male
## 259                            2                               Male
## 260                            3                             Female
## 261                            0                             Female
## 262                            0                             Female
## 263                            3                               Male
## 264                            3                             Female
## 265                            3                               Male
## 266                            3                               Male
## 267                            1                               Male
## 268                            0                             Female
## 269                            0                             Female
## 270                            1                               Male
## 271                            1                             Female
## 272                            1                               Male
## 273                            3                             Female
## 274                            0                             Female
## 275                            2                               Male
## 276                            2                               Male
## 277                            3                               Male
## 278                            0                               Male
## 279                            3                               Male
## 280                            3                             Female
## 281                            3                               Male
## 282                            0                             Female
## 283                            3                               Male
## 284                            2                               Male
## 285                            1                             Female
## 286                            1                               Male
## 287                            1                             Female
## 288                            1                             Female
## 289                            3                               Male
## 290                            3                               Male
## 291                            2                             Female
## 292                            1                             Female
## 293                            2                             Female
## 294                            1                             Female
## 295                            3                             Female
## 296                            0                             Female
## 297                            3                               Male
## 298                            0                             Female
## 299                            1                             Female
## 300                            2                             Female
## 301                            2                             Female
## 302                            2                             Female
## 303                            3                               Male
## 304                            1                             Female
## 305                            1                             Female
## 306                            0                             Female
## 307                            3                             Female
## 308                            1                             Female
## 309                            1                               Male
## 310                            2                             Female
## 311                            3                               Male
## 312                            3                               Male
## 313                            1                             Female
## 314                            3                               Male
## 315                            3                               Male
## 316                            3                             Female
## 317                            1                               Male
## 318                            3                               Male
## 319                            2                               Male
## 320                            0                             Female
## 321                            3                               Male
## 322                            1                             Female
## 323                            1                               Male
## 324                            3                             Female
## 325                            0                               Male
## 326                            1                               Male
## 327                            2                             Female
## 328                            0                             Female
## 329                            3                               Male
## 330                            0                             Female
## 331                            3                             Female
## 332                            0                               Male
## 333                            0                             Female
## 334                            1                               Male
## 335                            3                               Male
## 336                            3                               Male
## 337                            3                               Male
## 338                            1                             Female
## 339                            3                               Male
## 340                            3                             Female
## 341                            2                               Male
## 342                            3                               Male
## 343                            1                               Male
## 344                            0                             Female
## 345                            1                               Male
## 346                            2                             Female
## 347                            0                               Male
## 348                            1                             Female
## 349                            1                             Female
## 350                            1                             Female
## 351                            3                             Female
## 352                            1                             Female
## 353                            3                             Female
## 354                            2                               Male
## 355                            3                               Male
## 356                            3                             Female
## 357                            0                             Female
## 358                            3                             Female
## 359                            3                               Male
## 360                            1                             Female
## 361                            3                             Female
## 362                            0                               Male
## 363                            1                               Male
## 364                            0                             Female
## 365                            1                             Female
## 366                            3                             Female
## 367                            3                               Male
## 368                            0                             Female
## 369                            3                             Female
## 370                            1                             Female
## 371                            1                             Female
## 372                            0                             Female
## 373                            3                             Female
## 374                            1                             Female
## 375                            2                               Male
## 376                            3                             Female
## 377                            3                               Male
## 378                            1                             Female
## 379                            1                             Female
## 380                            1                             Female
## 381                            1                               Male
## 382                            3                             Female
## 383                            3                             Female
## 384                            1                               Male
## 385                            1                             Female
## 386                            1                             Female
## 387                            1                             Female
## 388                            3                             Female
## 389                            1                               Male
## 390                            1                               Male
## 391                            2                               Male
## 392                            3                               Male
## 393                            0                               Male
## 394                            0                               Male
## 395                            3                             Female
## 396                            3                             Female
## 397                            3                             Female
## 398                            3                             Female
## 399                            1                             Female
## 400                            0                             Female
## 401                            3                               Male
## 402                            2                             Female
## 403                            3                               Male
## 404                            3                             Female
## 405                            1                             Female
## 406                            3                             Female
## 407                            3                               Male
## 408                            3                             Female
## 409                            3                             Female
## 410                            0                             Female
## 411                            1                             Female
## 412                            0                               Male
## 413                            3                             Female
## 414                            0                             Female
## 415                            3                             Female
## 416                            0                               Male
## 417                            3                             Female
## 418                            3                               Male
## 419                            3                               Male
## 420                            3                               Male
## 421                            3                             Female
## 422                            3                               Male
## 423                            3                             Female
## 424                            2                             Female
## 425                            3                             Female
## 426                            3                               Male
## 427                            3                             Female
## 428                            2                               Male
## 429                            3                               Male
## 430                            2                             Female
## 431                            3                               Male
## 432                            3                             Female
## 433                            0                             Female
## 434                            0                             Female
## 435                            0                               Male
## 436                            3                               Male
## 437                            0                             Female
## 438                            3                               Male
## 439                            3                               Male
## 440                            1                             Female
## 441                            0                               Male
## 442                            1                             Female
## 443                            1                               Male
## 444                            3                             Female
## 445                            3                               Male
## 446                            1                               Male
## 447                            0                               Male
## 448                            3                             Female
## 449                            3                               Male
## 450                            2                               Male
## 451                            3                             Female
## 452                            0                             Female
## 453                            3                             Female
## 454                            3                               Male
## 455                            1                             Female
## 456                            0                             Female
## 457                            2                               Male
## 458                            3                             Female
## 459                            1                             Female
## 460                            2                             Female
## 461                            3                               Male
## 462                            3                             Female
## 463                            0                               Male
## 464                            0                             Female
## 465                            3                             Female
## 466                            1                               Male
## 467                            1                             Female
## 468                            3                             Female
## 469                            1                             Female
## 470                            2                             Female
## 471                            3                               Male
## 472                            3                             Female
## 473                            2                             Female
## 474                            0                               Male
## 475                            3                             Female
## 476                            0                             Female
## 477                            1                             Female
## 478                            0                             Female
## 479                            0                             Female
## 480                            1                             Female
## 481                            3                               Male
## 482                            3                               Male
## 483                            3                             Female
## 484                            3                               Male
## 485                            1                             Female
## 486                            0                             Female
## 487                            1                             Female
## 488                            0                             Female
## 489                            0                             Female
## 490                            1                             Female
## 491                            3                               Male
## 492                            0                             Female
## 493                            0                               Male
## 494                            3                               Male
## 495                            1                             Female
## 496                            3                               Male
## 497                            2                             Female
## 498                            3                             Female
## 499                            1                               Male
## 500                            0                             Female
## 501                            3                             Female
## 502                            3                               Male
## 503                            3                             Female
## 504                            0                             Female
## 505                            3                               Male
## 506                            1                             Female
## 507                            1                             Female
## 508                            0                             Female
## 509                            3                             Female
## 510                            3                               Male
## 511                            1                             Female
## 512                            2                               Male
## 513                            3                             Female
## 514                            3                             Female
## 515                            1                             Female
## 516                            3                               Male
## 517                            0                             Female
## 518                            2                             Female
## 519                            3                               Male
## 520                            3                               Male
## 521                            3                               Male
## 522                            3                               Male
## 523                            0                             Female
## 524                            3                             Female
## 525                            2                             Female
## 526                            3                               Male
## 527                            3                               Male
## 528                            3                             Female
## 529                            0                             Female
## 530                            3                               Male
## 531                            1                               Male
## 532                            0                             Female
## 533                            3                             Female
## 534                            3                             Female
## 535                            3                             Female
## 536                            3                               Male
## 537                            1                             Female
## 538                            2                               Male
## 539                            1                             Female
## 540                            3                               Male
## 541                            3                             Female
## 542                            3                               Male
## 543                            3                             Female
## 544                            3                               Male
## 545                            3                             Female
## 546                            3                               Male
## 547                            2                               Male
## 548                            1                               Male
## 549                            3                             Female
## 550                            3                             Female
## 551                            1                               Male
## 552                            3                               Male
## 553                            1                             Female
## 554                            2                             Female
## 555                            3                             Female
## 556                            3                               Male
## 557                            3                             Female
## 558                            1                               Male
## 559                            3                               Male
## 560                            1                             Female
## 561                            3                               Male
## 562                            0                             Female
## 563                            3                             Female
## 564                            1                             Female
## 565                            3                             Female
## 566                            3                             Female
## 567                            2                             Female
## 568                            3                               Male
## 569                            0                             Female
## 570                            3                             Female
## 571                            1                             Female
## 572                            0                             Female
## 573                            0                             Female
## 574                            0                             Female
## 575                            0                             Female
## 576                            0                             Female
## 577                            3                               Male
## 578                            1                             Female
## 579                            3                               Male
## 580                            1                               Male
## 581                            1                               Male
## 582                            2                             Female
## 583                            0                             Female
## 584                            1                               Male
## 585                            0                             Female
## 586                            0                               Male
## 587                            0                               Male
## 588                            2                             Female
## 589                            3                             Female
## 590                            1                             Female
## 591                            1                               Male
## 592                            1                             Female
## 593                            3                             Female
## 594                            3                             Female
## 595                            0                             Female
## 596                            2                               Male
## 597                            3                               Male
## 598                            3                               Male
## 599                            1                             Female
## 600                            2                             Female
## 601                            1                             Female
## 602                            0                             Female
## 603                            1                               Male
## 604                            1                             Female
## 605                            1                             Female
## 606                            3                             Female
## 607                            3                             Female
## 608                            2                             Female
## 609                            3                             Female
## 610                            2                               Male
## 611                            3                             Female
## 612                            1                             Female
## 613                            0                               Male
## 614                            3                               Male
## 615                            1                             Female
## 616                            2                               Male
## 617                            3                               Male
## 618                            1                             Female
## 619                            1                             Female
## 620                            1                             Female
## 621                            1                               Male
## 622                            3                             Female
## 623                            3                               Male
## 624                            1                               Male
## 625                            3                             Female
## 626                            3                             Female
## 627                            3                             Female
## 628                            3                               Male
## 629                            2                               Male
## 630                            1                             Female
## 631                            3                               Male
## 632                            2                               Male
## 633                            0                             Female
## 634                            2                               Male
## 635                            1                             Female
## 636                            0                               Male
## 637                            2                             Female
## 638                            2                             Female
## 639                            1                             Female
## 640                            1                               Male
## 641                            3                               Male
## 642                            1                             Female
## 643                            3                               Male
## 644                            1                             Female
## 645                            1                             Female
## 646                            0                             Female
## 647                            2                             Female
## 648                            3                               Male
## 649                            3                             Female
## 650                            3                               Male
## 651                            0                             Female
## 652                            2                               Male
## 653                            2                               Male
## 654                            1                             Female
## 655                            0                             Female
## 656                            1                             Female
## 657                            3                             Female
## 658                            3                               Male
## 659                            1                             Female
## 660                            3                               Male
## 661                            3                             Female
## 662                            0                               Male
## 663                            3                               Male
## 664                            3                               Male
## 665                            3                             Female
## 666                            0                             Female
## 667                            3                               Male
## 668                            1                               Male
## 669                            2                               Male
## 670                            1                             Female
## 671                            3                               Male
## 672                            3                               Male
## 673                            3                             Female
## 674                            3                             Female
## 675                            1                             Female
## 676                            1                             Female
## 677                            0                             Female
## 678                            3                             Female
## 679                            3                               Male
## 680                            0                               Male
## 681                            3                             Female
## 682                            3                               Male
## 683                            2                               Male
## 684                            1                             Female
## 685                            3                             Female
## 686                            2                               Male
## 687                            3                               Male
## 688                            3                             Female
## 689                            1                             Female
## 690                            1                             Female
## 691                            0                             Female
## 692                            3                             Female
## 693                            0                             Female
## 694                            1                             Female
## 695                            0                               Male
## 696                            3                               Male
## 697                            0                             Female
## 698                            0                             Female
## 699                            3                             Female
## 700                            3                               Male
## 701                            3                               Male
## 702                            3                             Female
## 703                            3                             Female
## 704                            1                               Male
## 705                            1                             Female
## 706                            3                               Male
## 707                            3                             Female
## 708                            2                             Female
## 709                            0                               Male
## 710                            3                             Female
## 711                            0                             Female
## 712                            3                             Female
## 713                            1                             Female
## 714                            1                               Male
## 715                            3                               Male
## 716                            2                             Female
## 717                            3                             Female
## 718                            3                               Male
## 719                            0                             Female
## 720                            1                             Female
## 721                            3                               Male
## 722                            0                             Female
## 723                            0                             Female
## 724                            3                             Female
## 725                            3                             Female
## 726                            0                               Male
## 727                            1                               Male
## 728                            3                             Female
## 729                            1                             Female
## 730                            1                             Female
## 731                            3                               Male
## 732                            3                             Female
## 733                            3                               Male
## 734                            0                             Female
## 735                            1                               Male
## 736                            1                             Female
## 737                            3                             Female
## 738                            1                             Female
## 739                            1                             Female
## 740                            3                             Female
## 741                            2                               Male
## 742                            3                             Female
## 743                            0                               Male
## 744                            3                             Female
## 745                            0                             Female
## 746                            1                               Male
## 747                            3                             Female
## 748                            3                               Male
## 749                            0                             Female
## 750                            3                             Female
## 751                            3                               Male
## 752                            1                               Male
## 753                            3                             Female
## 754                            1                             Female
## 755                            0                             Female
## 756                            0                             Female
## 757                            1                             Female
## 758                            3                               Male
## 759                            1                             Female
## 760                            1                             Female
## 761                            1                             Female
## 762                            1                             Female
## 763                            3                             Female
## 764                            3                               Male
## 765                            3                               Male
## 766                            3                             Female
## 767                            2                               Male
## 768                            0                             Female
## 769                            3                             Female
## 770                            3                             Female
## 771                            3                               Male
## 772                            3                             Female
## 773                            0                               Male
## 774                            3                               Male
## 775                            1                               Male
## 776                            3                             Female
## 777                            2                               Male
## 778                            3                             Female
## 779                            3                               Male
## 780                            3                               Male
## 781                            1                             Female
## 782                            3                             Female
## 783                            0                             Female
## 784                            0                               Male
## 785                            0                             Female
## 786                            1                             Female
## 787                            1                               Male
## 788                            2                               Male
## 789                            1                             Female
## 790                            2                               Male
## 791                            1                             Female
## 792                            3                             Female
## 793                            1                               Male
## 794                            3                               Male
## 795                            1                             Female
## 796                            3                             Female
## 797                            3                             Female
## 798                            3                               Male
## 799                            2                             Female
## 800                            3                               Male
## 801                            1                               Male
## 802                            1                               Male
## 803                            2                               Male
## 804                            3                               Male
## 805                            3                               Male
## 806                            3                             Female
## 807                            2                             Female
## 808                            2                             Female
## 809                            3                               Male
## 810                            3                               Male
## 811                            3                             Female
## 812                            1                               Male
## 813                            3                             Female
## 814                            1                               Male
## 815                            0                               Male
## 816                            1                             Female
## 817                            1                               Male
## 818                            0                               Male
## 819                            0                             Female
## 820                            3                               Male
## 821                            2                             Female
## 822                            3                             Female
## 823                            3                               Male
## 824                            1                             Female
## 825                            1                             Female
## 826                            0                             Female
## 827                            2                             Female
## 828                            0                               Male
## 829                            1                               Male
## 830                            3                             Female
## 831                            2                             Female
## 832                            3                               Male
## 833                            0                             Female
## 834                            1                               Male
## 835                            1                             Female
## 836                            3                             Female
## 837                            0                               Male
## 838                            1                             Female
## 839                            2                               Male
## 840                            3                               Male
## 841                            2                             Female
## 842                            3                             Female
## 843                            3                               Male
## 844                            0                             Female
## 845                            0                             Female
## 846                            0                             Female
## 847                            3                               Male
## 848                            0                             Female
## 849                            2                             Female
## 850                            3                             Female
## 851                            1                             Female
## 852                            3                               Male
## 853                            0                             Female
## 854                            0                               Male
## 855                            2                               Male
## 856                            3                             Female
## 857                            0                             Female
## 858                            0                             Female
## 859                            1                               Male
## 860                            0                             Female
## 861                            1                             Female
## 862                            3                             Female
## 863                            1                               Male
## 864                            0                             Female
## 865                            3                               Male
## 866                            0                             Female
## 867                            3                               Male
## 868                            0                             Female
## 869                            1                               Male
## 870                            1                               Male
## 871                            1                             Female
## 872                            2                             Female
## 873                            3                             Female
## 874                            3                               Male
## 875                            3                               Male
## 876                            3                             Female
## 877                            3                               Male
## 878                            3                               Male
## 879                            3                               Male
## 880                            1                               Male
## 881                            3                               Male
## 882                            1                               Male
## 883                            2                               Male
## 884                            3                             Female
## 885                            3                               Male
## 886                            1                               Male
## 887                            1                             Female
## 888                            3                               Male
## 889                            3                             Female
## 890                            1                             Female
## 891                            3                               Male
## 892                            0                             Female
## 893                            3                               Male
## 894                            0                               Male
## 895                            3                               Male
## 896                            3                             Female
## 897                            1                             Female
## 898                            2                             Female
## 899                            3                             Female
## 900                            3                             Female
## 901                            3                               Male
## 902                            3                             Female
## 903                            1                             Female
## 904                            1                             Female
## 905                            0                               Male
## 906                            0                               Male
## 907                            3                             Female
## 908                            3                             Female
## 909                            3                               Male
## 910                            2                               Male
## 911                            0                               Male
## 912                            2                             Female
## 913                            3                             Female
## 914                            2                             Female
## 915                            0                               Male
## 916                            3                               Male
## 917                            3                               Male
## 918                            1                             Female
## 919                            3                             Female
## 920                            1                             Female
## 921                            1                             Female
## 922                            3                             Female
## 923                            3                               Male
## 924                            3                               Male
## 925                            1                             Female
## 926                            1                               Male
## 927                            0                               Male
## 928                            3                             Female
## 929                            1                             Female
## 930                            3                             Female
## 931                            1                             Female
## 932                            3                               Male
## 933                            3                               Male
## 934                            3                               Male
## 935                            3                               Male
## 936                            1                               Male
## 937                            3                               Male
## 938                            0                               Male
## 939                            1                               Male
## 940                            2                               Male
## 941                            0                               Male
## 942                            1                             Female
## 943                            3                               Male
## 944                            2                               Male
## 945                            1                               Male
## 946                            3                             Female
## 947                            3                             Female
## 948                            3                               Male
## 949                            1                               Male
## 950                            1                             Female
## 951                            0                             Female
## 952                            3                               Male
## 953                            0                               Male
## 954                            2                             Female
## 955                            3                             Female
## 956                            1                               Male
## 957                            3                               Male
## 958                            3                             Female
## 959                            2                             Female
## 960                            3                               Male
## 961                            0                             Female
## 962                            3                             Female
## 963                            3                             Female
## 964                            3                               Male
## 965                            0                             Female
## 966                            2                             Female
## 967                            1                             Female
## 968                            3                               Male
## 969                            3                               Male
## 970                            3                               Male
## 971                            3                             Female
## 972                            1                             Female
## 973                            1                             Female
## 974                            0                               Male
## 975                            2                             Female
## 976                            0                             Female
## 977                            1                               Male
## 978                            3                             Female
## 979                            1                             Female
## 980                            3                             Female
## 981                            1                             Female
## 982                            1                               Male
## 983                            1                               Male
## 984                            1                             Female
## 985                            1                             Female
## 986                            1                             Female
## 987                            1                             Female
## 988                            2                             Female
## 989                            1                             Female
## 990                            0                             Female
## 991                            3                             Female
## 992                            3                             Female
## 993                            1                               Male
## 994                            3                             Female
## 995                            2                             Female
## 996                            2                               Male
## 997                            3                             Female
## 998                            1                             Female
## 999                            1                             Female
## 1000                           0                               Male
## 1001                           3                             Female
## 1002                           0                             Female
## 1003                           0                             Female
## 1004                           0                               Male
## 1005                           0                               Male
## 1006                           0                             Female
## 1007                           3                             Female
## 1008                           1                             Female
## 1009                           3                               Male
## 1010                           0                             Female
## 1011                           3                               Male
## 1012                           3                             Female
## 1013                           2                               Male
## 1014                           1                             Female
## 1015                           2                               Male
## 1016                           3                             Female
## 1017                           3                               Male
## 1018                           1                             Female
## 1019                           0                             Female
## 1020                           1                               Male
## 1021                           0                             Female
## 1022                           3                               Male
## 1023                           1                               Male
## 1024                           0                             Female
## 1025                           0                               Male
## 1026                           3                             Female
## 1027                           1                             Female
## 1028                           3                               Male
## 1029                           1                               Male
## 1030                           3                               Male
## 1031                           0                             Female
## 1032                           3                             Female
## 1033                           0                             Female
## 1034                           0                             Female
## 1035                           0                               Male
## 1036                           1                               Male
## 1037                           0                             Female
## 1038                           0                               Male
## 1039                           3                             Female
## 1040                           3                               Male
## 1041                           1                             Female
## 1042                           0                             Female
## 1043                           0                             Female
## 1044                           1                             Female
## 1045                           0                               Male
## 1046                           1                             Female
## 1047                           1                             Female
## 1048                           3                               Male
## 1049                           3                               Male
## 1050                           0                               Male
## 1051                           3                             Female
## 1052                           3                               Male
## 1053                           0                             Female
## 1054                           2                               Male
## 1055                           1                             Female
## 1056                           1                               Male
## 1057                           3                               Male
## 1058                           0                             Female
## 1059                           2                               Male
## 1060                           2                             Female
## 1061                           3                             Female
## 1062                           3                             Female
## 1063                           3                             Female
## 1064                           0                               Male
## 1065                           3                             Female
## 1066                           2                             Female
## 1067                           0                               Male
## 1068                           3                             Female
## 1069                           1                             Female
## 1070                           3                               Male
## 1071                           3                             Female
## 1072                           0                             Female
## 1073                           3                               Male
## 1074                           2                               Male
## 1075                           3                             Female
## 1076                           3                             Female
## 1077                           3                               Male
## 1078                           1                               Male
## 1079                           3                               Male
## 1080                           3                             Female
## 1081                           1                             Female
## 1082                           2                             Female
## 1083                           1                               Male
## 1084                           0                               Male
## 1085                           0                             Female
## 1086                           3                             Female
## 1087                           3                             Female
## 1088                           2                               Male
## 1089                           3                             Female
## 1090                           3                               Male
## 1091                           3                               Male
## 1092                           2                             Female
## 1093                           1                               Male
## 1094                           1                             Female
## 1095                           3                               Male
## 1096                           3                               Male
## 1097                           2                               Male
## 1098                           0                             Female
## 1099                           1                             Female
## 1100                           1                             Female
## 1101                           1                             Female
## 1102                           1                               Male
## 1103                           0                               Male
## 1104                           3                               Male
## 1105                           3                               Male
## 1106                           1                             Female
## 1107                           0                             Female
## 1108                           1                               Male
## 1109                           3                               Male
## 1110                           1                               Male
## 1111                           3                               Male
## 1112                           0                             Female
## 1113                           1                             Female
## 1114                           3                               Male
## 1115                           2                               Male
## 1116                           0                             Female
## 1117                           1                             Female
## 1118                           3                             Female
## 1119                           1                             Female
## 1120                           1                               Male
## 1121                           0                               Male
## 1122                           3                               Male
## 1123                           3                             Female
## 1124                           1                               Male
## 1125                           3                             Female
## 1126                           1                               Male
## 1127                           3                             Female
## 1128                           0                               Male
## 1129                           1                               Male
## 1130                           3                             Female
## 1131                           1                             Female
## 1132                           1                             Female
## 1133                           0                             Female
## 1134                           0                               Male
## 1135                           3                               Male
## 1136                           3                             Female
## 1137                           0                               Male
## 1138                           2                               Male
## 1139                           3                               Male
## 1140                           3                               Male
## 1141                           2                               Male
## 1142                           3                               Male
## 1143                           1                             Female
## 1144                           1                               Male
## 1145                           3                               Male
## 1146                           3                               Male
## 1147                           3                               Male
## 1148                           3                             Female
## 1149                           1                             Female
## 1150                           0                             Female
## 1151                           3                             Female
## 1152                           3                             Female
## 1153                           3                             Female
## 1154                           0                               Male
## 1155                           1                               Male
## 1156                           3                             Female
## 1157                           0                               Male
## 1158                           1                             Female
## 1159                           3                               Male
## 1160                           1                             Female
## 1161                           3                             Female
## 1162                           1                               Male
## 1163                           2                               Male
## 1164                           3                             Female
## 1165                           1                             Female
## 1166                           0                             Female
## 1167                           0                               Male
## 1168                           3                             Female
## 1169                           0                               Male
## 1170                           3                               Male
## 1171                           0                             Female
## 1172                           2                             Female
## 1173                           3                               Male
## 1174                           2                             Female
## 1175                           1                             Female
## 1176                           1                               Male
## 1177                           1                             Female
## 1178                           1                             Female
## 1179                           0                             Female
## 1180                           3                               Male
## 1181                           0                             Female
## 1182                           2                             Female
## 1183                           0                             Female
## 1184                           0                             Female
## 1185                           1                             Female
## 1186                           3                             Female
## 1187                           2                             Female
## 1188                           1                             Female
## 1189                           1                             Female
## 1190                           1                               Male
## 1191                           2                               Male
## 1192                           3                               Male
## 1193                           3                             Female
## 1194                           3                             Female
## 1195                           2                             Female
## 1196                           1                             Female
## 1197                           3                             Female
## 1198                           1                               Male
## 1199                           0                             Female
## 1200                           1                               Male
## 1201                           0                             Female
## 1202                           0                             Female
## 1203                           3                               Male
## 1204                           0                             Female
## 1205                           3                               Male
## 1206                           1                             Female
## 1207                           3                               Male
## 1208                           1                             Female
## 1209                           3                             Female
## 1210                           3                               Male
## 1211                           3                             Female
## 1212                           2                             Female
## 1213                           3                             Female
## 1214                           1                             Female
## 1215                           3                             Female
## 1216                           3                               Male
## 1217                           1                             Female
## 1218                           2                               Male
## 1219                           3                             Female
## 1220                           2                             Female
## 1221                           1                             Female
## 1222                           0                               Male
## 1223                           1                               Male
## 1224                           1                               Male
## 1225                           2                             Female
## 1226                           1                             Female
## 1227                           1                             Female
## 1228                           2                               Male
## 1229                           0                               Male
## 1230                           1                             Female
## 1231                           3                               Male
## 1232                           1                             Female
## 1233                           0                             Female
## 1234                           1                               Male
## 1235                           2                             Female
## 1236                           3                             Female
## 1237                           1                             Female
## 1238                           0                               Male
## 1239                           3                             Female
## 1240                           3                               Male
## 1241                           2                               Male
## 1242                           0                             Female
## 1243                           2                             Female
## 1244                           1                               Male
## 1245                           3                             Female
## 1246                           0                               Male
## 1247                           3                             Female
## 1248                           3                               Male
## 1249                           1                             Female
## 1250                           0                             Female
## 1251                           2                               Male
## 1252                           1                             Female
## 1253                           3                             Female
## 1254                           0                               Male
## 1255                           3                               Male
## 1256                           3                               Male
## 1257                           2                             Female
## 1258                           3                               Male
## 1259                           3                               Male
## 1260                           1                             Female
## 1261                           3                               Male
## 1262                           3                               Male
## 1263                           3                             Female
## 1264                           0                               Male
## 1265                           1                               Male
## 1266                           1                               Male
## 1267                           3                             Female
## 1268                           3                               Male
## 1269                           1                               Male
## 1270                           1                             Female
## 1271                           0                             Female
## 1272                           3                               Male
## 1273                           3                               Male
## 1274                           1                             Female
## 1275                           1                               Male
## 1276                           1                             Female
## 1277                           1                             Female
## 1278                           1                               Male
## 1279                           3                             Female
## 1280                           3                             Female
## 1281                           0                             Female
## 1282                           3                               Male
## 1283                           3                             Female
## 1284                           3                               Male
## 1285                           3                             Female
## 1286                           1                             Female
## 1287                           3                             Female
## 1288                           0                             Female
## 1289                           3                               Male
## 1290                           3                               Male
## 1291                           0                             Female
## 1292                           0                               Male
## 1293                           3                               Male
## 1294                           3                               Male
## 1295                           1                               Male
## 1296                           3                               Male
## 1297                           3                             Female
## 1298                           3                             Female
## 1299                           3                             Female
## 1300                           2                               Male
## 1301                           0                             Female
## 1302                           3                             Female
## 1303                           0                               Male
## 1304                           1                             Female
## 1305                           3                               Male
## 1306                           3                               Male
## 1307                           1                               Male
## 1308                           1                             Female
## 1309                           0                               Male
## 1310                           1                             Female
## 1311                           3                             Female
## 1312                           1                               Male
## 1313                           0                             Female
## 1314                           3                               Male
## 1315                           2                             Female
## 1316                           0                             Female
## 1317                           0                             Female
## 1318                           2                               Male
## 1319                           0                             Female
## 1320                           1                               Male
## 1321                           1                             Female
## 1322                           0                               Male
## 1323                           0                             Female
## 1324                           0                             Female
## 1325                           3                               Male
## 1326                           3                             Female
## 1327                           3                               Male
## 1328                           1                               Male
## 1329                           3                             Female
## 1330                           1                             Female
## 1331                           1                               Male
## 1332                           0                               Male
## 1333                           0                             Female
## 1334                           1                               Male
## 1335                           3                               Male
## 1336                           1                             Female
## 1337                           3                             Female
## 1338                           2                               Male
## 1339                           3                             Female
## 1340                           3                               Male
## 1341                           3                               Male
## 1342                           3                             Female
## 1343                           1                             Female
## 1344                           0                               Male
## 1345                           3                               Male
## 1346                           2                             Female
## 1347                           2                             Female
## 1348                           0                               Male
## 1349                           2                             Female
## 1350                           3                             Female
## 1351                           0                             Female
## 1352                           1                             Female
## 1353                           2                               Male
## 1354                           2                             Female
## 1355                           1                             Female
## 1356                           0                               Male
## 1357                           0                               Male
## 1358                           0                             Female
## 1359                           3                             Female
## 1360                           0                             Female
## 1361                           0                             Female
## 1362                           3                             Female
## 1363                           3                             Female
## 1364                           2                               Male
## 1365                           0                               Male
## 1366                           3                             Female
## 1367                           2                               Male
## 1368                           3                               Male
## 1369                           3                             Female
## 1370                           3                             Female
## 1371                           2                             Female
## 1372                           3                               Male
## 1373                           1                               Male
## 1374                           0                             Female
## 1375                           1                             Female
## 1376                           0                             Female
## 1377                           1                               Male
## 1378                           3                               Male
## 1379                           1                             Female
## 1380                           1                             Female
## 1381                           3                             Female
## 1382                           3                               Male
## 1383                           2                               Male
## 1384                           1                             Female
## 1385                           3                               Male
## 1386                           3                             Female
## 1387                           3                             Female
## 1388                           3                             Female
## 1389                           2                             Female
## 1390                           3                               Male
## 1391                           3                               Male
## 1392                           3                               Male
## 1393                           3                               Male
## 1394                           1                             Female
## 1395                           2                             Female
## 1396                           0                               Male
## 1397                           3                               Male
## 1398                           3                               Male
## 1399                           3                               Male
## 1400                           2                             Female
## 1401                           3                               Male
## 1402                           3                               Male
## 1403                           1                             Female
## 1404                           3                               Male
## 1405                           0                             Female
## 1406                           3                               Male
## 1407                           1                               Male
## 1408                           1                             Female
## 1409                           0                               Male
## 1410                           3                               Male
## 1411                           3                               Male
## 1412                           0                             Female
## 1413                           1                             Female
## 1414                           1                               Male
## 1415                           2                               Male
## 1416                           0                               Male
## 1417                           1                             Female
## 1418                           1                             Female
## 1419                           0                             Female
## 1420                           3                               Male
## 1421                           1                               Male
## 1422                           1                             Female
## 1423                           1                               Male
## 1424                           3                               Male
## 1425                           3                             Female
## 1426                           3                             Female
## 1427                           0                             Female
## 1428                           1                             Female
## 1429                           3                             Female
## 1430                           1                             Female
## 1431                           0                             Female
## 1432                           1                             Female
## 1433                           1                               Male
## 1434                           0                             Female
## 1435                           3                             Female
## 1436                           0                               Male
## 1437                           1                               Male
## 1438                           2                               Male
## 1439                           3                             Female
## 1440                           0                               Male
## 1441                           0                             Female
## 1442                           3                               Male
## 1443                           3                             Female
## 1444                           3                             Female
## 1445                           0                               Male
## 1446                           0                             Female
## 1447                           3                               Male
## 1448                           3                               Male
## 1449                           3                               Male
## 1450                           1                             Female
## 1451                           1                             Female
## 1452                           3                               Male
## 1453                           3                             Female
## 1454                           3                               Male
## 1455                           1                             Female
## 1456                           0                               Male
## 1457                           2                             Female
## 1458                           3                               Male
## 1459                           0                             Female
## 1460                           2                             Female
## 1461                           0                             Female
## 1462                           0                             Female
## 1463                           3                               Male
## 1464                           3                               Male
## 1465                           3                               Male
## 1466                           1                               Male
## 1467                           1                             Female
## 1468                           2                               Male
## 1469                           3                               Male
## 1470                           3                             Female
## 1471                           1                               Male
## 1472                           1                               Male
## 1473                           3                               Male
## 1474                           3                               Male
## 1475                           0                             Female
## 1476                           3                             Female
## 1477                           1                             Female
## 1478                           0                               Male
## 1479                           3                               Male
## 1480                           0                               Male
## 1481                           0                               Male
## 1482                           3                               Male
## 1483                           0                               Male
## 1484                           0                             Female
## 1485                           3                               Male
## 1486                           1                             Female
## 1487                           2                             Female
## 1488                           3                             Female
## 1489                           3                             Female
## 1490                           0                             Female
## 1491                           1                             Female
## 1492                           3                             Female
## 1493                           3                               Male
## 1494                           3                               Male
## 1495                           3                             Female
## 1496                           0                               Male
## 1497                           3                             Female
## 1498                           3                             Female
## 1499                           0                               Male
## 1500                           3                               Male
## 1501                           0                             Female
## 1502                           1                             Female
## 1503                           3                             Female
## 1504                           0                               Male
## 1505                           3                             Female
## 1506                           0                               Male
## 1507                           3                               Male
## 1508                           0                             Female
## 1509                           2                               Male
## 1510                           1                               Male
## 1511                           1                             Female
## 1512                           1                             Female
## 1513                           3                               Male
## 1514                           3                             Female
## 1515                           1                               Male
## 1516                           3                             Female
## 1517                           3                               Male
## 1518                           3                             Female
## 1519                           3                             Female
## 1520                           1                               Male
## 1521                           3                               Male
## 1522                           3                             Female
## 1523                           3                               Male
## 1524                           2                               Male
## 1525                           1                               Male
## 1526                           3                               Male
## 1527                           1                               Male
## 1528                           3                               Male
## 1529                           3                               Male
## 1530                           2                             Female
## 1531                           3                             Female
## 1532                           3                             Female
## 1533                           1                             Female
## 1534                           3                               Male
## 1535                           2                               Male
## 1536                           1                               Male
## 1537                           3                               Male
## 1538                           3                             Female
## 1539                           3                               Male
## 1540                           2                               Male
## 1541                           1                             Female
## 1542                           3                             Female
## 1543                           0                               Male
## 1544                           1                             Female
## 1545                           0                               Male
## 1546                           1                               Male
## 1547                           1                             Female
## 1548                           3                               Male
## 1549                           2                             Female
## 1550                           0                             Female
## 1551                           1                               Male
## 1552                           3                               Male
## 1553                           3                               Male
## 1554                           3                             Female
## 1555                           2                               Male
## 1556                           1                             Female
## 1557                           3                             Female
## 1558                           1                             Female
## 1559                           3                               Male
## 1560                           0                             Female
## 1561                           3                             Female
## 1562                           0                               Male
## 1563                           1                             Female
## 1564                           3                             Female
## 1565                           1                             Female
## 1566                           1                             Female
## 1567                           3                             Female
## 1568                           1                             Female
## 1569                           1                               Male
## 1570                           1                               Male
## 1571                           0                             Female
## 1572                           0                             Female
## 1573                           3                               Male
## 1574                           0                             Female
## 1575                           1                             Female
## 1576                           1                               Male
## 1577                           1                               Male
## 1578                           1                               Male
## 1579                           3                               Male
## 1580                           1                             Female
## 1581                           1                               Male
## 1582                           3                               Male
## 1583                           2                             Female
## 1584                           3                               Male
## 1585                           1                               Male
## 1586                           3                               Male
## 1587                           1                             Female
## 1588                           3                               Male
## 1589                           3                               Male
## 1590                           3                               Male
## 1591                           2                               Male
## 1592                           2                               Male
## 1593                           3                             Female
## 1594                           1                             Female
## 1595                           3                               Male
## 1596                           0                             Female
## 1597                           3                             Female
## 1598                           2                               Male
## 1599                           1                             Female
## 1600                           3                               Male
## 1601                           2                             Female
## 1602                           3                               Male
## 1603                           1                             Female
## 1604                           0                               Male
## 1605                           0                             Female
## 1606                           3                             Female
## 1607                           3                               Male
## 1608                           3                             Female
## 1609                           1                             Female
## 1610                           3                             Female
## 1611                           3                             Female
## 1612                           3                             Female
## 1613                           3                             Female
## 1614                           1                               Male
## 1615                           3                             Female
## 1616                           1                             Female
## 1617                           0                             Female
## 1618                           1                             Female
## 1619                           1                             Female
## 1620                           1                               Male
## 1621                           3                               Male
## 1622                           3                             Female
## 1623                           3                               Male
## 1624                           0                             Female
## 1625                           1                               Male
## 1626                           0                             Female
## 1627                           1                             Female
## 1628                           3                               Male
## 1629                           3                             Female
## 1630                           0                             Female
## 1631                           3                               Male
## 1632                           3                             Female
## 1633                           3                             Female
## 1634                           1                             Female
## 1635                           3                               Male
## 1636                           3                               Male
## 1637                           0                             Female
## 1638                           1                               Male
## 1639                           3                             Female
## 1640                           2                               Male
## 1641                           0                             Female
## 1642                           3                             Female
## 1643                           3                               Male
## 1644                           3                             Female
## 1645                           0                             Female
## 1646                           0                             Female
## 1647                           3                             Female
## 1648                           1                             Female
## 1649                           3                             Female
## 1650                           3                               Male
## 1651                           1                               Male
## 1652                           3                             Female
## 1653                           0                             Female
## 1654                           3                               Male
## 1655                           3                             Female
## 1656                           3                               Male
## 1657                           3                               Male
## 1658                           3                             Female
## 1659                           0                               Male
## 1660                           0                               Male
## 1661                           1                             Female
## 1662                           2                             Female
## 1663                           2                               Male
## 1664                           1                             Female
## 1665                           3                               Male
## 1666                           3                             Female
## 1667                           3                               Male
## 1668                           1                               Male
## 1669                           3                             Female
## 1670                           3                               Male
## 1671                           2                               Male
## 1672                           3                             Female
## 1673                           3                             Female
## 1674                           2                               Male
## 1675                           3                               Male
## 1676                           1                               Male
## 1677                           3                             Female
## 1678                           3                               Male
## 1679                           3                               Male
## 1680                           2                               Male
## 1681                           3                               Male
## 1682                           3                             Female
## 1683                           0                             Female
## 1684                           3                               Male
## 1685                           0                               Male
## 1686                           1                             Female
## 1687                           2                             Female
## 1688                           3                               Male
## 1689                           1                               Male
## 1690                           3                               Male
## 1691                           2                             Female
## 1692                           1                             Female
## 1693                           2                             Female
## 1694                           3                             Female
## 1695                           0                             Female
## 1696                           2                             Female
## 1697                           0                             Female
## 1698                           1                             Female
## 1699                           3                               Male
## 1700                           0                             Female
## 1701                           3                             Female
## 1702                           1                               Male
## 1703                           0                             Female
## 1704                           3                               Male
## 1705                           3                             Female
## 1706                           0                             Female
## 1707                           3                               Male
## 1708                           1                             Female
## 1709                           1                               Male
## 1710                           1                               Male
## 1711                           3                             Female
## 1712                           1                             Female
## 1713                           0                               Male
## 1714                           0                             Female
## 1715                           0                             Female
## 1716                           3                               Male
## 1717                           2                             Female
## 1718                           3                             Female
## 1719                           1                               Male
## 1720                           3                             Female
## 1721                           2                             Female
## 1722                           3                               Male
## 1723                           3                             Female
## 1724                           3                             Female
## 1725                           2                               Male
## 1726                           3                               Male
## 1727                           3                               Male
## 1728                           1                             Female
## 1729                           0                             Female
## 1730                           1                               Male
## 1731                           3                             Female
## 1732                           2                             Female
## 1733                           2                             Female
## 1734                           3                             Female
## 1735                           2                             Female
## 1736                           2                               Male
## 1737                           3                             Female
## 1738                           0                             Female
## 1739                           0                               Male
## 1740                           3                               Male
## 1741                           3                             Female
## 1742                           1                               Male
## 1743                           3                             Female
## 1744                           3                             Female
## 1745                           3                               Male
## 1746                           0                             Female
## 1747                           3                               Male
## 1748                           0                             Female
## 1749                           2                             Female
## 1750                           1                             Female
## 1751                           0                             Female
## 1752                           0                             Female
## 1753                           0                               Male
## 1754                           3                             Female
## 1755                           3                               Male
## 1756                           3                             Female
## 1757                           3                               Male
## 1758                           1                             Female
## 1759                           1                             Female
## 1760                           2                               Male
## 1761                           1                             Female
## 1762                           1                             Female
## 1763                           3                             Female
## 1764                           0                             Female
## 1765                           1                               Male
## 1766                           3                             Female
## 1767                           2                               Male
## 1768                           3                             Female
## 1769                           0                               Male
## 1770                           3                               Male
## 1771                           3                             Female
## 1772                           3                               Male
## 1773                           3                             Female
## 1774                           0                             Female
## 1775                           0                             Female
## 1776                           3                               Male
## 1777                           1                             Female
## 1778                           3                             Female
## 1779                           0                               Male
## 1780                           1                               Male
## 1781                           0                             Female
## 1782                           1                             Female
## 1783                           0                               Male
## 1784                           3                             Female
## 1785                           3                             Female
## 1786                           0                             Female
## 1787                           1                             Female
## 1788                           3                             Female
## 1789                           0                             Female
## 1790                           2                             Female
## 1791                           3                               Male
## 1792                           3                             Female
## 1793                           2                             Female
## 1794                           0                             Female
## 1795                           2                             Female
## 1796                           3                               Male
## 1797                           1                               Male
## 1798                           1                             Female
## 1799                           3                               Male
## 1800                           1                             Female
## 1801                           0                             Female
## 1802                           2                               Male
## 1803                           1                             Female
## 1804                           1                               Male
## 1805                           3                               Male
## 1806                           3                               Male
## 1807                           3                             Female
## 1808                           1                               Male
## 1809                           0                             Female
## 1810                           3                             Female
## 1811                           2                               Male
## 1812                           3                             Female
## 1813                           2                               Male
## 1814                           0                             Female
## 1815                           1                             Female
## 1816                           1                               Male
## 1817                           1                             Female
## 1818                           2                             Female
## 1819                           3                               Male
## 1820                           3                             Female
## 1821                           3                               Male
## 1822                           1                             Female
## 1823                           1                               Male
## 1824                           1                               Male
## 1825                           1                             Female
## 1826                           2                             Female
## 1827                           3                               Male
## 1828                           3                             Female
## 1829                           3                               Male
## 1830                           3                               Male
## 1831                           0                             Female
## 1832                           1                             Female
## 1833                           2                             Female
## 1834                           0                             Female
## 1835                           3                               Male
## 1836                           3                               Male
## 1837                           3                               Male
## 1838                           0                             Female
## 1839                           0                             Female
## 1840                           1                               Male
## 1841                           3                               Male
## 1842                           1                               Male
## 1843                           2                             Female
## 1844                           3                               Male
## 1845                           1                             Female
## 1846                           3                             Female
## 1847                           2                             Female
## 1848                           3                               Male
## 1849                           3                               Male
## 1850                           3                             Female
## 1851                           0                             Female
## 1852                           3                               Male
## 1853                           1                               Male
## 1854                           3                               Male
## 1855                           2                             Female
## 1856                           1                             Female
## 1857                           3                               Male
## 1858                           3                               Male
## 1859                           3                             Female
## 1860                           1                             Female
## 1861                           2                             Female
## 1862                           0                             Female
## 1863                           2                             Female
## 1864                           3                               Male
## 1865                           3                             Female
## 1866                           3                               Male
## 1867                           3                             Female
## 1868                           1                             Female
## 1869                           1                             Female
## 1870                           3                               Male
## 1871                           3                               Male
## 1872                           1                             Female
## 1873                           1                               Male
## 1874                           1                             Female
## 1875                           3                             Female
## 1876                           3                               Male
## 1877                           3                               Male
## 1878                           3                             Female
## 1879                           2                             Female
## 1880                           0                               Male
## 1881                           1                               Male
## 1882                           2                             Female
## 1883                           3                             Female
## 1884                           1                             Female
## 1885                           3                               Male
## 1886                           3                             Female
## 1887                           3                               Male
## 1888                           3                             Female
## 1889                           2                             Female
## 1890                           0                             Female
## 1891                           0                             Female
## 1892                           3                               Male
## 1893                           3                             Female
## 1894                           0                               Male
## 1895                           3                               Male
## 1896                           3                               Male
## 1897                           3                               Male
## 1898                           2                               Male
## 1899                           0                             Female
## 1900                           2                             Female
## 1901                           1                             Female
## 1902                           3                             Female
## 1903                           3                             Female
## 1904                           1                             Female
## 1905                           3                               Male
## 1906                           3                             Female
## 1907                           2                             Female
## 1908                           3                             Female
## 1909                           1                             Female
## 1910                           3                             Female
## 1911                           2                             Female
## 1912                           3                               Male
## 1913                           0                               Male
## 1914                           3                               Male
## 1915                           2                             Female
## 1916                           3                             Female
## 1917                           1                             Female
## 1918                           3                             Female
## 1919                           3                               Male
## 1920                           3                             Female
## 1921                           3                               Male
## 1922                           3                               Male
## 1923                           0                             Female
## 1924                           0                             Female
## 1925                           2                             Female
## 1926                           0                             Female
## 1927                           1                               Male
## 1928                           1                               Male
## 1929                           0                             Female
## 1930                           0                               Male
## 1931                           1                               Male
## 1932                           3                               Male
## 1933                           3                               Male
## 1934                           1                             Female
## 1935                           2                               Male
## 1936                           3                             Female
## 1937                           3                             Female
## 1938                           1                             Female
## 1939                           2                               Male
## 1940                           1                               Male
## 1941                           1                             Female
## 1942                           1                               Male
## 1943                           0                             Female
## 1944                           1                             Female
## 1945                           3                               Male
## 1946                           3                               Male
## 1947                           3                             Female
## 1948                           0                               Male
## 1949                           3                             Female
## 1950                           0                             Female
## 1951                           1                               Male
## 1952                           3                               Male
## 1953                           0                             Female
## 1954                           3                             Female
## 1955                           0                             Female
## 1956                           3                             Female
## 1957                           3                             Female
## 1958                           2                             Female
## 1959                           0                             Female
## 1960                           3                             Female
## 1961                           1                             Female
## 1962                           3                             Female
## 1963                           3                               Male
## 1964                           3                             Female
## 1965                           0                             Female
## 1966                           1                               Male
## 1967                           3                             Female
## 1968                           3                             Female
## 1969                           3                               Male
## 1970                           0                               Male
## 1971                           3                             Female
## 1972                           2                               Male
## 1973                           3                             Female
## 1974                           1                             Female
## 1975                           1                             Female
## 1976                           2                             Female
## 1977                           2                               Male
## 1978                           0                               Male
## 1979                           2                               Male
## 1980                           0                             Female
## 1981                           3                               Male
## 1982                           1                               Male
## 1983                           1                               Male
## 1984                           0                               Male
## 1985                           0                             Female
## 1986                           1                             Female
## 1987                           3                               Male
## 1988                           1                               Male
## 1989                           0                               Male
## 1990                           2                               Male
## 1991                           2                             Female
## 1992                           2                             Female
## 1993                           0                               Male
## 1994                           3                               Male
## 1995                           3                               Male
## 1996                           3                               Male
## 1997                           1                             Female
## 1998                           2                             Female
## 1999                           1                               Male
## 2000                           2                             Female
## 2001                           1                               Male
## 2002                           3                             Female
## 2003                           1                               Male
## 2004                           3                             Female
## 2005                           1                               Male
## 2006                           3                             Female
## 2007                           3                             Female
## 2008                           3                               Male
## 2009                           0                             Female
## 2010                           3                               Male
## 2011                           3                             Female
## 2012                           2                             Female
## 2013                           3                             Female
## 2014                           1                             Female
## 2015                           1                               Male
## 2016                           3                             Female
## 2017                           2                               Male
## 2018                           3                               Male
## 2019                           3                             Female
## 2020                           1                               Male
## 2021                           0                               Male
## 2022                           3                             Female
## 2023                           3                             Female
## 2024                           3                               Male
## 2025                           1                             Female
## 2026                           1                             Female
## 2027                           1                               Male
## 2028                           0                             Female
## 2029                           0                               Male
## 2030                           3                             Female
## 2031                           3                               Male
## 2032                           1                             Female
## 2033                           3                             Female
## 2034                           1                               Male
## 2035                           0                             Female
## 2036                           3                               Male
## 2037                           2                             Female
## 2038                           3                               Male
## 2039                           3                               Male
## 2040                           3                             Female
## 2041                           0                             Female
## 2042                           3                             Female
## 2043                           0                               Male
## 2044                           0                             Female
## 2045                           2                             Female
## 2046                           3                               Male
## 2047                           0                             Female
## 2048                           3                             Female
## 2049                           2                             Female
## 2050                           3                             Female
## 2051                           3                               Male
## 2052                           2                               Male
## 2053                           1                             Female
## 2054                           2                               Male
## 2055                           3                               Male
## 2056                           3                             Female
## 2057                           2                             Female
## 2058                           3                             Female
## 2059                           1                             Female
## 2060                           3                               Male
## 2061                           1                               Male
## 2062                           0                               Male
## 2063                           3                               Male
## 2064                           3                               Male
## 2065                           3                             Female
## 2066                           3                             Female
## 2067                           0                             Female
## 2068                           1                               Male
## 2069                           3                             Female
## 2070                           0                             Female
## 2071                           3                             Female
## 2072                           3                               Male
## 2073                           2                               Male
## 2074                           3                             Female
## 2075                           3                               Male
## 2076                           0                               Male
## 2077                           3                             Female
## 2078                           3                               Male
## 2079                           3                               Male
## 2080                           3                             Female
## 2081                           1                             Female
## 2082                           0                             Female
## 2083                           0                               Male
## 2084                           0                             Female
## 2085                           1                               Male
## 2086                           0                               Male
## 2087                           1                             Female
## 2088                           0                             Female
## 2089                           2                             Female
## 2090                           1                             Female
## 2091                           3                             Female
## 2092                           3                               Male
## 2093                           3                               Male
## 2094                           3                               Male
## 2095                           1                             Female
## 2096                           0                               Male
## 2097                           3                               Male
## 2098                           3                               Male
## 2099                           1                               Male
## 2100                           1                             Female
## 2101                           3                               Male
## 2102                           3                               Male
## 2103                           3                               Male
## 2104                           3                               Male
## 2105                           3                               Male
## 2106                           3                               Male
## 2107                           3                             Female
## 2108                           1                               Male
## 2109                           3                               Male
## 2110                           3                             Female
## 2111                           1                               Male
## 2112                           3                               Male
## 2113                           1                             Female
## 2114                           0                             Female
## 2115                           3                               Male
## 2116                           0                               Male
## 2117                           2                               Male
## 2118                           0                             Female
## 2119                           3                             Female
## 2120                           3                               Male
## 2121                           1                               Male
## 2122                           3                             Female
## 2123                           2                             Female
## 2124                           0                             Female
## 2125                           3                             Female
## 2126                           1                             Female
## 2127                           1                               Male
## 2128                           1                             Female
## 2129                           3                             Female
## 2130                           1                             Female
## 2131                           3                             Female
## 2132                           1                             Female
## 2133                           1                             Female
## 2134                           1                             Female
## 2135                           1                               Male
## 2136                           1                               Male
## 2137                           1                             Female
## 2138                           3                             Female
## 2139                           3                               Male
## 2140                           3                               Male
## 2141                           3                             Female
## 2142                           3                             Female
## 2143                           3                               Male
## 2144                           3                             Female
## 2145                           3                             Female
## 2146                           3                               Male
## 2147                           3                               Male
## 2148                           3                               Male
## 2149                           2                               Male
## 2150                           2                             Female
## 2151                           3                               Male
## 2152                           3                             Female
## 2153                           3                             Female
## 2154                           1                             Female
## 2155                           3                             Female
## 2156                           3                             Female
## 2157                           0                             Female
## 2158                           3                               Male
## 2159                           1                             Female
## 2160                           1                               Male
## 2161                           2                               Male
## 2162                           2                               Male
## 2163                           2                               Male
## 2164                           3                             Female
## 2165                           1                             Female
## 2166                           0                               Male
## 2167                           3                             Female
## 2168                           3                             Female
## 2169                           1                               Male
## 2170                           0                             Female
## 2171                           3                             Female
## 2172                           2                               Male
## 2173                           3                               Male
## 2174                           1                             Female
## 2175                           0                               Male
## 2176                           3                               Male
## 2177                           3                               Male
## 2178                           1                             Female
## 2179                           0                               Male
## 2180                           3                               Male
## 2181                           0                             Female
## 2182                           2                             Female
## 2183                           3                               Male
## 2184                           3                             Female
## 2185                           0                               Male
## 2186                           3                             Female
## 2187                           3                               Male
## 2188                           3                               Male
## 2189                           3                             Female
## 2190                           0                               Male
## 2191                           3                               Male
## 2192                           3                             Female
## 2193                           1                               Male
## 2194                           0                             Female
## 2195                           1                               Male
## 2196                           1                             Female
## 2197                           3                               Male
## 2198                           3                             Female
## 2199                           1                               Male
## 2200                           3                               Male
## 2201                           0                             Female
## 2202                           3                             Female
## 2203                           1                             Female
## 2204                           0                               Male
## 2205                           3                             Female
## 2206                           0                             Female
## 2207                           1                             Female
## 2208                           1                             Female
## 2209                           1                               Male
## 2210                           1                             Female
## 2211                           3                               Male
## 2212                           1                             Female
## 2213                           3                               Male
## 2214                           0                             Female
## 2215                           1                               Male
## 2216                           1                               Male
## 2217                           3                             Female
## 2218                           1                               Male
## 2219                           1                               Male
## 2220                           2                               Male
## 2221                           3                               Male
## 2222                           0                             Female
## 2223                           3                               Male
## 2224                           3                             Female
## 2225                           2                             Female
## 2226                           3                               Male
## 2227                           0                               Male
## 2228                           2                             Female
## 2229                           3                               Male
## 2230                           1                               Male
## 2231                           1                               Male
## 2232                           0                               Male
## 2233                           3                             Female
## 2234                           3                               Male
## 2235                           3                             Female
## 2236                           3                               Male
## 2237                           0                             Female
## 2238                           1                             Female
## 2239                           1                               Male
## 2240                           3                               Male
## 2241                           2                             Female
## 2242                           0                             Female
## 2243                           1                               Male
## 2244                           1                             Female
## 2245                           2                             Female
## 2246                           3                             Female
## 2247                           1                             Female
## 2248                           0                               Male
## 2249                           1                             Female
## 2250                           3                             Female
## 2251                           1                             Female
## 2252                           3                               Male
## 2253                           0                             Female
## 2254                           1                             Female
## 2255                           2                               Male
## 2256                           0                             Female
## 2257                           3                               Male
## 2258                           3                             Female
## 2259                           0                             Female
## 2260                           3                             Female
## 2261                           1                               Male
## 2262                           1                               Male
## 2263                           3                               Male
## 2264                           3                             Female
## 2265                           3                             Female
## 2266                           1                             Female
## 2267                           3                               Male
## 2268                           0                             Female
## 2269                           0                             Female
## 2270                           1                               Male
## 2271                           1                             Female
## 2272                           3                             Female
## 2273                           3                             Female
## 2274                           2                               Male
## 2275                           3                             Female
## 2276                           0                               Male
## 2277                           1                             Female
## 2278                           3                             Female
## 2279                           0                             Female
## 2280                           3                               Male
## 2281                           1                             Female
## 2282                           1                             Female
## 2283                           3                             Female
## 2284                           0                               Male
## 2285                           1                             Female
## 2286                           0                             Female
## 2287                           3                             Female
## 2288                           2                             Female
## 2289                           3                               Male
## 2290                           3                             Female
## 2291                           1                             Female
## 2292                           0                             Female
## 2293                           3                               Male
## 2294                           3                             Female
## 2295                           1                               Male
## 2296                           1                               Male
## 2297                           3                               Male
## 2298                           2                             Female
## 2299                           2                             Female
## 2300                           0                               Male
## 2301                           3                             Female
## 2302                           2                               Male
## 2303                           3                               Male
## 2304                           3                               Male
## 2305                           3                               Male
## 2306                           3                             Female
## 2307                           1                               Male
## 2308                           0                             Female
## 2309                           3                             Female
## 2310                           1                             Female
## 2311                           3                               Male
## 2312                           1                             Female
## 2313                           3                               Male
## 2314                           3                             Female
## 2315                           1                             Female
## 2316                           3                               Male
## 2317                           0                             Female
## 2318                           3                             Female
## 2319                           0                               Male
## 2320                           0                               Male
## 2321                           2                             Female
## 2322                           1                               Male
## 2323                           0                             Female
## 2324                           1                               Male
## 2325                           3                               Male
## 2326                           3                             Female
## 2327                           3                               Male
## 2328                           3                               Male
## 2329                           3                               Male
## 2330                           0                               Male
## 2331                           1                             Female
## 2332                           1                             Female
## 2333                           3                               Male
## 2334                           3                             Female
## 2335                           0                             Female
## 2336                           1                               Male
## 2337                           2                             Female
## 2338                           0                             Female
## 2339                           3                             Female
## 2340                           1                               Male
## 2341                           3                             Female
## 2342                           0                               Male
## 2343                           0                             Female
## 2344                           1                             Female
## 2345                           3                               Male
## 2346                           3                             Female
## 2347                           0                             Female
## 2348                           0                             Female
## 2349                           0                               Male
## 2350                           3                               Male
## 2351                           3                               Male
## 2352                           0                             Female
## 2353                           2                               Male
## 2354                           3                             Female
## 2355                           1                             Female
## 2356                           1                             Female
## 2357                           1                             Female
## 2358                           3                               Male
## 2359                           3                             Female
## 2360                           3                             Female
## 2361                           0                             Female
## 2362                           0                             Female
## 2363                           0                             Female
## 2364                           1                             Female
## 2365                           1                             Female
## 2366                           0                             Female
## 2367                           1                             Female
## 2368                           3                               Male
## 2369                           3                               Male
## 2370                           3                             Female
## 2371                           3                               Male
## 2372                           3                             Female
## 2373                           1                               Male
## 2374                           3                             Female
## 2375                           3                             Female
## 2376                           2                             Female
## 2377                           3                             Female
## 2378                           3                             Female
## 2379                           1                             Female
## 2380                           3                             Female
## 2381                           3                             Female
## 2382                           3                             Female
## 2383                           3                               Male
## 2384                           3                             Female
## 2385                           3                             Female
## 2386                           2                               Male
## 2387                           3                             Female
## 2388                           3                             Female
## 2389                           0                             Female
## 2390                           3                             Female
## 2391                           2                             Female
## 2392                           3                               Male
## 2393                           3                               Male
## 2394                           3                               Male
## 2395                           3                             Female
## 2396                           3                             Female
## 2397                           1                               Male
## 2398                           0                             Female
## 2399                           1                             Female
## 2400                           0                             Female
## 2401                           3                             Female
## 2402                           0                             Female
## 2403                           2                             Female
## 2404                           1                             Female
## 2405                           3                             Female
## 2406                           1                               Male
## 2407                           3                             Female
## 2408                           3                             Female
## 2409                           2                               Male
## 2410                           3                             Female
## 2411                           1                             Female
## 2412                           1                             Female
## 2413                           2                               Male
## 2414                           3                             Female
## 2415                           3                               Male
## 2416                           1                               Male
## 2417                           0                               Male
## 2418                           0                             Female
## 2419                           2                             Female
## 2420                           1                               Male
## 2421                           0                             Female
## 2422                           1                               Male
## 2423                           2                               Male
## 2424                           2                               Male
## 2425                           1                             Female
## 2426                           1                               Male
## 2427                           1                               Male
## 2428                           3                             Female
## 2429                           2                               Male
## 2430                           1                               Male
## 2431                           3                               Male
## 2432                           1                             Female
## 2433                           3                             Female
## 2434                           3                               Male
## 2435                           3                               Male
## 2436                           1                             Female
## 2437                           1                               Male
## 2438                           3                               Male
## 2439                           0                               Male
## 2440                           1                               Male
## 2441                           1                               Male
## 2442                           3                               Male
## 2443                           3                               Male
## 2444                           0                               Male
## 2445                           3                             Female
## 2446                           0                               Male
## 2447                           0                               Male
## 2448                           1                               Male
## 2449                           3                               Male
## 2450                           3                               Male
## 2451                           2                               Male
## 2452                           3                             Female
## 2453                           3                               Male
## 2454                           3                             Female
## 2455                           0                             Female
## 2456                           1                               Male
## 2457                           2                             Female
## 2458                           1                             Female
## 2459                           3                             Female
## 2460                           0                             Female
## 2461                           3                               Male
## 2462                           1                             Female
## 2463                           1                             Female
## 2464                           3                               Male
## 2465                           1                               Male
## 2466                           3                               Male
## 2467                           2                             Female
## 2468                           0                               Male
## 2469                           3                             Female
## 2470                           1                               Male
## 2471                           2                             Female
## 2472                           3                             Female
## 2473                           3                             Female
## 2474                           1                             Female
## 2475                           1                               Male
## 2476                           3                             Female
## 2477                           3                               Male
## 2478                           1                               Male
## 2479                           0                             Female
## 2480                           3                               Male
## 2481                           0                               Male
## 2482                           0                               Male
## 2483                           0                             Female
## 2484                           1                             Female
## 2485                           0                             Female
## 2486                           1                               Male
## 2487                           3                               Male
## 2488                           3                               Male
## 2489                           2                               Male
## 2490                           3                               Male
## 2491                           2                             Female
## 2492                           3                             Female
## 2493                           0                             Female
## 2494                           3                             Female
## 2495                           3                               Male
## 2496                           1                               Male
## 2497                           2                               Male
## 2498                           3                               Male
## 2499                           3                             Female
##      if_else(Q3 == 1, "Married", "Divorced")
## 1                                   Divorced
## 2                                    Married
## 3                                   Divorced
## 4                                    Married
## 5                                    Married
## 6                                    Married
## 7                                    Married
## 8                                   Divorced
## 9                                   Divorced
## 10                                   Married
## 11                                  Divorced
## 12                                   Married
## 13                                   Married
## 14                                   Married
## 15                                  Divorced
## 16                                   Married
## 17                                  Divorced
## 18                                  Divorced
## 19                                  Divorced
## 20                                  Divorced
## 21                                   Married
## 22                                   Married
## 23                                   Married
## 24                                   Married
## 25                                  Divorced
## 26                                   Married
## 27                                  Divorced
## 28                                  Divorced
## 29                                  Divorced
## 30                                  Divorced
## 31                                  Divorced
## 32                                   Married
## 33                                  Divorced
## 34                                  Divorced
## 35                                   Married
## 36                                   Married
## 37                                  Divorced
## 38                                  Divorced
## 39                                   Married
## 40                                   Married
## 41                                   Married
## 42                                   Married
## 43                                   Married
## 44                                   Married
## 45                                  Divorced
## 46                                  Divorced
## 47                                   Married
## 48                                   Married
## 49                                  Divorced
## 50                                   Married
## 51                                   Married
## 52                                   Married
## 53                                   Married
## 54                                   Married
## 55                                  Divorced
## 56                                   Married
## 57                                   Married
## 58                                  Divorced
## 59                                   Married
## 60                                   Married
## 61                                  Divorced
## 62                                  Divorced
## 63                                   Married
## 64                                   Married
## 65                                   Married
## 66                                  Divorced
## 67                                   Married
## 68                                   Married
## 69                                  Divorced
## 70                                   Married
## 71                                   Married
## 72                                   Married
## 73                                   Married
## 74                                   Married
## 75                                   Married
## 76                                  Divorced
## 77                                  Divorced
## 78                                  Divorced
## 79                                  Divorced
## 80                                   Married
## 81                                   Married
## 82                                  Divorced
## 83                                   Married
## 84                                   Married
## 85                                   Married
## 86                                   Married
## 87                                  Divorced
## 88                                   Married
## 89                                   Married
## 90                                   Married
## 91                                   Married
## 92                                   Married
## 93                                  Divorced
## 94                                  Divorced
## 95                                  Divorced
## 96                                  Divorced
## 97                                   Married
## 98                                   Married
## 99                                   Married
## 100                                 Divorced
## 101                                  Married
## 102                                 Divorced
## 103                                  Married
## 104                                  Married
## 105                                  Married
## 106                                  Married
## 107                                 Divorced
## 108                                 Divorced
## 109                                 Divorced
## 110                                  Married
## 111                                  Married
## 112                                  Married
## 113                                 Divorced
## 114                                 Divorced
## 115                                  Married
## 116                                 Divorced
## 117                                 Divorced
## 118                                  Married
## 119                                 Divorced
## 120                                 Divorced
## 121                                  Married
## 122                                 Divorced
## 123                                  Married
## 124                                 Divorced
## 125                                 Divorced
## 126                                 Divorced
## 127                                 Divorced
## 128                                  Married
## 129                                  Married
## 130                                  Married
## 131                                  Married
## 132                                  Married
## 133                                 Divorced
## 134                                 Divorced
## 135                                  Married
## 136                                  Married
## 137                                  Married
## 138                                  Married
## 139                                  Married
## 140                                  Married
## 141                                  Married
## 142                                  Married
## 143                                  Married
## 144                                  Married
## 145                                 Divorced
## 146                                  Married
## 147                                  Married
## 148                                  Married
## 149                                  Married
## 150                                 Divorced
## 151                                  Married
## 152                                 Divorced
## 153                                 Divorced
## 154                                  Married
## 155                                  Married
## 156                                  Married
## 157                                  Married
## 158                                 Divorced
## 159                                 Divorced
## 160                                  Married
## 161                                 Divorced
## 162                                  Married
## 163                                  Married
## 164                                  Married
## 165                                 Divorced
## 166                                  Married
## 167                                 Divorced
## 168                                 Divorced
## 169                                 Divorced
## 170                                  Married
## 171                                  Married
## 172                                  Married
## 173                                  Married
## 174                                 Divorced
## 175                                  Married
## 176                                  Married
## 177                                 Divorced
## 178                                  Married
## 179                                  Married
## 180                                 Divorced
## 181                                 Divorced
## 182                                  Married
## 183                                 Divorced
## 184                                  Married
## 185                                  Married
## 186                                  Married
## 187                                  Married
## 188                                  Married
## 189                                  Married
## 190                                  Married
## 191                                  Married
## 192                                  Married
## 193                                  Married
## 194                                 Divorced
## 195                                 Divorced
## 196                                  Married
## 197                                  Married
## 198                                  Married
## 199                                  Married
## 200                                 Divorced
## 201                                  Married
## 202                                  Married
## 203                                  Married
## 204                                 Divorced
## 205                                 Divorced
## 206                                  Married
## 207                                  Married
## 208                                 Divorced
## 209                                 Divorced
## 210                                  Married
## 211                                  Married
## 212                                  Married
## 213                                  Married
## 214                                 Divorced
## 215                                 Divorced
## 216                                  Married
## 217                                 Divorced
## 218                                  Married
## 219                                  Married
## 220                                  Married
## 221                                  Married
## 222                                  Married
## 223                                  Married
## 224                                 Divorced
## 225                                  Married
## 226                                 Divorced
## 227                                 Divorced
## 228                                  Married
## 229                                 Divorced
## 230                                  Married
## 231                                 Divorced
## 232                                 Divorced
## 233                                  Married
## 234                                 Divorced
## 235                                 Divorced
## 236                                  Married
## 237                                  Married
## 238                                  Married
## 239                                  Married
## 240                                  Married
## 241                                 Divorced
## 242                                 Divorced
## 243                                  Married
## 244                                  Married
## 245                                 Divorced
## 246                                  Married
## 247                                  Married
## 248                                  Married
## 249                                 Divorced
## 250                                 Divorced
## 251                                  Married
## 252                                  Married
## 253                                  Married
## 254                                 Divorced
## 255                                 Divorced
## 256                                  Married
## 257                                  Married
## 258                                 Divorced
## 259                                 Divorced
## 260                                  Married
## 261                                  Married
## 262                                 Divorced
## 263                                 Divorced
## 264                                 Divorced
## 265                                  Married
## 266                                 Divorced
## 267                                 Divorced
## 268                                  Married
## 269                                  Married
## 270                                  Married
## 271                                  Married
## 272                                 Divorced
## 273                                 Divorced
## 274                                 Divorced
## 275                                 Divorced
## 276                                  Married
## 277                                  Married
## 278                                 Divorced
## 279                                  Married
## 280                                  Married
## 281                                  Married
## 282                                  Married
## 283                                  Married
## 284                                  Married
## 285                                  Married
## 286                                  Married
## 287                                  Married
## 288                                 Divorced
## 289                                  Married
## 290                                  Married
## 291                                  Married
## 292                                 Divorced
## 293                                 Divorced
## 294                                 Divorced
## 295                                 Divorced
## 296                                 Divorced
## 297                                 Divorced
## 298                                 Divorced
## 299                                 Divorced
## 300                                 Divorced
## 301                                  Married
## 302                                  Married
## 303                                  Married
## 304                                 Divorced
## 305                                  Married
## 306                                 Divorced
## 307                                  Married
## 308                                 Divorced
## 309                                  Married
## 310                                  Married
## 311                                  Married
## 312                                  Married
## 313                                  Married
## 314                                  Married
## 315                                  Married
## 316                                  Married
## 317                                  Married
## 318                                  Married
## 319                                 Divorced
## 320                                 Divorced
## 321                                  Married
## 322                                  Married
## 323                                  Married
## 324                                  Married
## 325                                 Divorced
## 326                                  Married
## 327                                 Divorced
## 328                                 Divorced
## 329                                  Married
## 330                                  Married
## 331                                  Married
## 332                                 Divorced
## 333                                  Married
## 334                                  Married
## 335                                  Married
## 336                                  Married
## 337                                  Married
## 338                                  Married
## 339                                  Married
## 340                                  Married
## 341                                  Married
## 342                                  Married
## 343                                  Married
## 344                                  Married
## 345                                  Married
## 346                                 Divorced
## 347                                 Divorced
## 348                                 Divorced
## 349                                 Divorced
## 350                                 Divorced
## 351                                 Divorced
## 352                                  Married
## 353                                 Divorced
## 354                                  Married
## 355                                 Divorced
## 356                                  Married
## 357                                 Divorced
## 358                                  Married
## 359                                  Married
## 360                                  Married
## 361                                 Divorced
## 362                                 Divorced
## 363                                 Divorced
## 364                                 Divorced
## 365                                 Divorced
## 366                                  Married
## 367                                  Married
## 368                                  Married
## 369                                  Married
## 370                                  Married
## 371                                  Married
## 372                                  Married
## 373                                  Married
## 374                                 Divorced
## 375                                 Divorced
## 376                                  Married
## 377                                  Married
## 378                                  Married
## 379                                  Married
## 380                                  Married
## 381                                  Married
## 382                                  Married
## 383                                  Married
## 384                                 Divorced
## 385                                  Married
## 386                                 Divorced
## 387                                 Divorced
## 388                                 Divorced
## 389                                  Married
## 390                                 Divorced
## 391                                  Married
## 392                                  Married
## 393                                 Divorced
## 394                                  Married
## 395                                  Married
## 396                                 Divorced
## 397                                 Divorced
## 398                                  Married
## 399                                  Married
## 400                                  Married
## 401                                  Married
## 402                                 Divorced
## 403                                  Married
## 404                                  Married
## 405                                  Married
## 406                                 Divorced
## 407                                  Married
## 408                                  Married
## 409                                 Divorced
## 410                                  Married
## 411                                 Divorced
## 412                                 Divorced
## 413                                  Married
## 414                                  Married
## 415                                  Married
## 416                                 Divorced
## 417                                 Divorced
## 418                                  Married
## 419                                  Married
## 420                                  Married
## 421                                  Married
## 422                                  Married
## 423                                  Married
## 424                                  Married
## 425                                 Divorced
## 426                                  Married
## 427                                 Divorced
## 428                                  Married
## 429                                  Married
## 430                                  Married
## 431                                  Married
## 432                                 Divorced
## 433                                  Married
## 434                                 Divorced
## 435                                 Divorced
## 436                                  Married
## 437                                  Married
## 438                                  Married
## 439                                 Divorced
## 440                                  Married
## 441                                 Divorced
## 442                                 Divorced
## 443                                  Married
## 444                                 Divorced
## 445                                 Divorced
## 446                                  Married
## 447                                  Married
## 448                                 Divorced
## 449                                 Divorced
## 450                                  Married
## 451                                  Married
## 452                                 Divorced
## 453                                  Married
## 454                                  Married
## 455                                  Married
## 456                                  Married
## 457                                 Divorced
## 458                                 Divorced
## 459                                  Married
## 460                                 Divorced
## 461                                  Married
## 462                                  Married
## 463                                  Married
## 464                                  Married
## 465                                  Married
## 466                                 Divorced
## 467                                  Married
## 468                                 Divorced
## 469                                  Married
## 470                                 Divorced
## 471                                  Married
## 472                                 Divorced
## 473                                  Married
## 474                                 Divorced
## 475                                  Married
## 476                                 Divorced
## 477                                  Married
## 478                                  Married
## 479                                 Divorced
## 480                                  Married
## 481                                  Married
## 482                                  Married
## 483                                  Married
## 484                                 Divorced
## 485                                  Married
## 486                                  Married
## 487                                  Married
## 488                                  Married
## 489                                 Divorced
## 490                                  Married
## 491                                  Married
## 492                                  Married
## 493                                  Married
## 494                                 Divorced
## 495                                 Divorced
## 496                                  Married
## 497                                 Divorced
## 498                                 Divorced
## 499                                 Divorced
## 500                                 Divorced
## 501                                 Divorced
## 502                                 Divorced
## 503                                  Married
## 504                                  Married
## 505                                  Married
## 506                                 Divorced
## 507                                  Married
## 508                                  Married
## 509                                  Married
## 510                                  Married
## 511                                  Married
## 512                                 Divorced
## 513                                 Divorced
## 514                                  Married
## 515                                 Divorced
## 516                                  Married
## 517                                  Married
## 518                                  Married
## 519                                  Married
## 520                                  Married
## 521                                  Married
## 522                                  Married
## 523                                  Married
## 524                                  Married
## 525                                 Divorced
## 526                                  Married
## 527                                  Married
## 528                                  Married
## 529                                 Divorced
## 530                                  Married
## 531                                 Divorced
## 532                                 Divorced
## 533                                  Married
## 534                                  Married
## 535                                  Married
## 536                                  Married
## 537                                  Married
## 538                                  Married
## 539                                  Married
## 540                                  Married
## 541                                  Married
## 542                                  Married
## 543                                  Married
## 544                                 Divorced
## 545                                  Married
## 546                                 Divorced
## 547                                 Divorced
## 548                                  Married
## 549                                  Married
## 550                                  Married
## 551                                  Married
## 552                                  Married
## 553                                 Divorced
## 554                                 Divorced
## 555                                 Divorced
## 556                                  Married
## 557                                  Married
## 558                                 Divorced
## 559                                  Married
## 560                                  Married
## 561                                  Married
## 562                                  Married
## 563                                 Divorced
## 564                                  Married
## 565                                  Married
## 566                                 Divorced
## 567                                 Divorced
## 568                                 Divorced
## 569                                 Divorced
## 570                                 Divorced
## 571                                  Married
## 572                                 Divorced
## 573                                 Divorced
## 574                                  Married
## 575                                 Divorced
## 576                                 Divorced
## 577                                  Married
## 578                                  Married
## 579                                  Married
## 580                                  Married
## 581                                  Married
## 582                                  Married
## 583                                  Married
## 584                                  Married
## 585                                  Married
## 586                                  Married
## 587                                  Married
## 588                                  Married
## 589                                  Married
## 590                                  Married
## 591                                  Married
## 592                                 Divorced
## 593                                  Married
## 594                                 Divorced
## 595                                  Married
## 596                                 Divorced
## 597                                  Married
## 598                                  Married
## 599                                  Married
## 600                                 Divorced
## 601                                 Divorced
## 602                                 Divorced
## 603                                  Married
## 604                                  Married
## 605                                  Married
## 606                                  Married
## 607                                  Married
## 608                                  Married
## 609                                  Married
## 610                                 Divorced
## 611                                  Married
## 612                                  Married
## 613                                  Married
## 614                                  Married
## 615                                  Married
## 616                                  Married
## 617                                  Married
## 618                                 Divorced
## 619                                 Divorced
## 620                                  Married
## 621                                  Married
## 622                                  Married
## 623                                  Married
## 624                                 Divorced
## 625                                  Married
## 626                                  Married
## 627                                 Divorced
## 628                                  Married
## 629                                  Married
## 630                                 Divorced
## 631                                  Married
## 632                                  Married
## 633                                  Married
## 634                                  Married
## 635                                  Married
## 636                                 Divorced
## 637                                  Married
## 638                                  Married
## 639                                 Divorced
## 640                                  Married
## 641                                  Married
## 642                                  Married
## 643                                  Married
## 644                                  Married
## 645                                  Married
## 646                                 Divorced
## 647                                  Married
## 648                                  Married
## 649                                  Married
## 650                                  Married
## 651                                 Divorced
## 652                                 Divorced
## 653                                 Divorced
## 654                                  Married
## 655                                 Divorced
## 656                                 Divorced
## 657                                  Married
## 658                                  Married
## 659                                 Divorced
## 660                                  Married
## 661                                  Married
## 662                                 Divorced
## 663                                  Married
## 664                                 Divorced
## 665                                  Married
## 666                                 Divorced
## 667                                 Divorced
## 668                                  Married
## 669                                  Married
## 670                                 Divorced
## 671                                  Married
## 672                                 Divorced
## 673                                  Married
## 674                                 Divorced
## 675                                  Married
## 676                                  Married
## 677                                  Married
## 678                                  Married
## 679                                 Divorced
## 680                                 Divorced
## 681                                  Married
## 682                                  Married
## 683                                  Married
## 684                                 Divorced
## 685                                 Divorced
## 686                                  Married
## 687                                 Divorced
## 688                                 Divorced
## 689                                 Divorced
## 690                                 Divorced
## 691                                  Married
## 692                                  Married
## 693                                  Married
## 694                                 Divorced
## 695                                 Divorced
## 696                                  Married
## 697                                  Married
## 698                                 Divorced
## 699                                 Divorced
## 700                                  Married
## 701                                  Married
## 702                                  Married
## 703                                 Divorced
## 704                                  Married
## 705                                  Married
## 706                                  Married
## 707                                  Married
## 708                                  Married
## 709                                  Married
## 710                                 Divorced
## 711                                  Married
## 712                                  Married
## 713                                 Divorced
## 714                                  Married
## 715                                 Divorced
## 716                                  Married
## 717                                  Married
## 718                                  Married
## 719                                  Married
## 720                                 Divorced
## 721                                  Married
## 722                                  Married
## 723                                 Divorced
## 724                                 Divorced
## 725                                  Married
## 726                                  Married
## 727                                  Married
## 728                                  Married
## 729                                  Married
## 730                                  Married
## 731                                 Divorced
## 732                                 Divorced
## 733                                  Married
## 734                                 Divorced
## 735                                 Divorced
## 736                                  Married
## 737                                 Divorced
## 738                                  Married
## 739                                  Married
## 740                                 Divorced
## 741                                 Divorced
## 742                                  Married
## 743                                  Married
## 744                                 Divorced
## 745                                 Divorced
## 746                                 Divorced
## 747                                 Divorced
## 748                                  Married
## 749                                  Married
## 750                                  Married
## 751                                 Divorced
## 752                                  Married
## 753                                  Married
## 754                                  Married
## 755                                  Married
## 756                                  Married
## 757                                  Married
## 758                                  Married
## 759                                  Married
## 760                                  Married
## 761                                  Married
## 762                                  Married
## 763                                  Married
## 764                                  Married
## 765                                  Married
## 766                                  Married
## 767                                  Married
## 768                                  Married
## 769                                 Divorced
## 770                                  Married
## 771                                  Married
## 772                                  Married
## 773                                  Married
## 774                                  Married
## 775                                  Married
## 776                                 Divorced
## 777                                  Married
## 778                                 Divorced
## 779                                  Married
## 780                                  Married
## 781                                  Married
## 782                                 Divorced
## 783                                 Divorced
## 784                                  Married
## 785                                 Divorced
## 786                                  Married
## 787                                  Married
## 788                                  Married
## 789                                  Married
## 790                                 Divorced
## 791                                  Married
## 792                                  Married
## 793                                  Married
## 794                                  Married
## 795                                 Divorced
## 796                                 Divorced
## 797                                  Married
## 798                                 Divorced
## 799                                 Divorced
## 800                                  Married
## 801                                  Married
## 802                                  Married
## 803                                  Married
## 804                                 Divorced
## 805                                 Divorced
## 806                                  Married
## 807                                 Divorced
## 808                                 Divorced
## 809                                 Divorced
## 810                                  Married
## 811                                 Divorced
## 812                                  Married
## 813                                  Married
## 814                                  Married
## 815                                  Married
## 816                                  Married
## 817                                  Married
## 818                                 Divorced
## 819                                  Married
## 820                                  Married
## 821                                 Divorced
## 822                                 Divorced
## 823                                  Married
## 824                                  Married
## 825                                 Divorced
## 826                                 Divorced
## 827                                 Divorced
## 828                                  Married
## 829                                  Married
## 830                                  Married
## 831                                 Divorced
## 832                                  Married
## 833                                 Divorced
## 834                                  Married
## 835                                  Married
## 836                                  Married
## 837                                 Divorced
## 838                                  Married
## 839                                 Divorced
## 840                                  Married
## 841                                 Divorced
## 842                                 Divorced
## 843                                  Married
## 844                                 Divorced
## 845                                 Divorced
## 846                                  Married
## 847                                  Married
## 848                                  Married
## 849                                 Divorced
## 850                                  Married
## 851                                  Married
## 852                                 Divorced
## 853                                  Married
## 854                                 Divorced
## 855                                 Divorced
## 856                                  Married
## 857                                 Divorced
## 858                                 Divorced
## 859                                 Divorced
## 860                                 Divorced
## 861                                 Divorced
## 862                                 Divorced
## 863                                  Married
## 864                                  Married
## 865                                  Married
## 866                                 Divorced
## 867                                  Married
## 868                                 Divorced
## 869                                  Married
## 870                                  Married
## 871                                 Divorced
## 872                                  Married
## 873                                  Married
## 874                                  Married
## 875                                  Married
## 876                                  Married
## 877                                  Married
## 878                                 Divorced
## 879                                  Married
## 880                                 Divorced
## 881                                  Married
## 882                                  Married
## 883                                  Married
## 884                                  Married
## 885                                 Divorced
## 886                                  Married
## 887                                  Married
## 888                                 Divorced
## 889                                  Married
## 890                                 Divorced
## 891                                 Divorced
## 892                                 Divorced
## 893                                  Married
## 894                                  Married
## 895                                 Divorced
## 896                                 Divorced
## 897                                  Married
## 898                                  Married
## 899                                 Divorced
## 900                                 Divorced
## 901                                  Married
## 902                                  Married
## 903                                  Married
## 904                                  Married
## 905                                  Married
## 906                                 Divorced
## 907                                  Married
## 908                                 Divorced
## 909                                  Married
## 910                                  Married
## 911                                 Divorced
## 912                                 Divorced
## 913                                 Divorced
## 914                                  Married
## 915                                  Married
## 916                                  Married
## 917                                  Married
## 918                                  Married
## 919                                 Divorced
## 920                                  Married
## 921                                  Married
## 922                                  Married
## 923                                 Divorced
## 924                                  Married
## 925                                 Divorced
## 926                                  Married
## 927                                  Married
## 928                                 Divorced
## 929                                  Married
## 930                                 Divorced
## 931                                  Married
## 932                                  Married
## 933                                  Married
## 934                                  Married
## 935                                  Married
## 936                                  Married
## 937                                  Married
## 938                                  Married
## 939                                  Married
## 940                                 Divorced
## 941                                  Married
## 942                                  Married
## 943                                  Married
## 944                                 Divorced
## 945                                  Married
## 946                                 Divorced
## 947                                  Married
## 948                                  Married
## 949                                  Married
## 950                                  Married
## 951                                  Married
## 952                                 Divorced
## 953                                 Divorced
## 954                                  Married
## 955                                  Married
## 956                                 Divorced
## 957                                  Married
## 958                                  Married
## 959                                 Divorced
## 960                                  Married
## 961                                 Divorced
## 962                                 Divorced
## 963                                  Married
## 964                                 Divorced
## 965                                 Divorced
## 966                                 Divorced
## 967                                  Married
## 968                                  Married
## 969                                  Married
## 970                                  Married
## 971                                  Married
## 972                                  Married
## 973                                 Divorced
## 974                                  Married
## 975                                  Married
## 976                                  Married
## 977                                  Married
## 978                                 Divorced
## 979                                  Married
## 980                                  Married
## 981                                  Married
## 982                                  Married
## 983                                  Married
## 984                                 Divorced
## 985                                  Married
## 986                                 Divorced
## 987                                  Married
## 988                                  Married
## 989                                  Married
## 990                                 Divorced
## 991                                 Divorced
## 992                                 Divorced
## 993                                  Married
## 994                                 Divorced
## 995                                  Married
## 996                                  Married
## 997                                  Married
## 998                                  Married
## 999                                 Divorced
## 1000                                Divorced
## 1001                                 Married
## 1002                                Divorced
## 1003                                 Married
## 1004                                Divorced
## 1005                                Divorced
## 1006                                 Married
## 1007                                 Married
## 1008                                 Married
## 1009                                Divorced
## 1010                                 Married
## 1011                                Divorced
## 1012                                 Married
## 1013                                Divorced
## 1014                                 Married
## 1015                                 Married
## 1016                                Divorced
## 1017                                Divorced
## 1018                                 Married
## 1019                                Divorced
## 1020                                 Married
## 1021                                Divorced
## 1022                                Divorced
## 1023                                Divorced
## 1024                                 Married
## 1025                                Divorced
## 1026                                 Married
## 1027                                 Married
## 1028                                Divorced
## 1029                                 Married
## 1030                                Divorced
## 1031                                 Married
## 1032                                 Married
## 1033                                 Married
## 1034                                 Married
## 1035                                 Married
## 1036                                 Married
## 1037                                Divorced
## 1038                                 Married
## 1039                                 Married
## 1040                                 Married
## 1041                                 Married
## 1042                                 Married
## 1043                                Divorced
## 1044                                 Married
## 1045                                 Married
## 1046                                Divorced
## 1047                                 Married
## 1048                                Divorced
## 1049                                 Married
## 1050                                 Married
## 1051                                 Married
## 1052                                 Married
## 1053                                Divorced
## 1054                                Divorced
## 1055                                Divorced
## 1056                                 Married
## 1057                                 Married
## 1058                                 Married
## 1059                                Divorced
## 1060                                Divorced
## 1061                                 Married
## 1062                                Divorced
## 1063                                Divorced
## 1064                                 Married
## 1065                                Divorced
## 1066                                Divorced
## 1067                                 Married
## 1068                                 Married
## 1069                                Divorced
## 1070                                 Married
## 1071                                 Married
## 1072                                Divorced
## 1073                                 Married
## 1074                                Divorced
## 1075                                 Married
## 1076                                Divorced
## 1077                                Divorced
## 1078                                Divorced
## 1079                                 Married
## 1080                                 Married
## 1081                                Divorced
## 1082                                 Married
## 1083                                Divorced
## 1084                                 Married
## 1085                                 Married
## 1086                                Divorced
## 1087                                 Married
## 1088                                Divorced
## 1089                                Divorced
## 1090                                 Married
## 1091                                 Married
## 1092                                Divorced
## 1093                                Divorced
## 1094                                Divorced
## 1095                                 Married
## 1096                                Divorced
## 1097                                 Married
## 1098                                 Married
## 1099                                Divorced
## 1100                                Divorced
## 1101                                Divorced
## 1102                                 Married
## 1103                                Divorced
## 1104                                 Married
## 1105                                Divorced
## 1106                                Divorced
## 1107                                 Married
## 1108                                 Married
## 1109                                 Married
## 1110                                Divorced
## 1111                                 Married
## 1112                                 Married
## 1113                                 Married
## 1114                                Divorced
## 1115                                 Married
## 1116                                 Married
## 1117                                 Married
## 1118                                Divorced
## 1119                                 Married
## 1120                                Divorced
## 1121                                 Married
## 1122                                 Married
## 1123                                 Married
## 1124                                 Married
## 1125                                Divorced
## 1126                                 Married
## 1127                                 Married
## 1128                                Divorced
## 1129                                 Married
## 1130                                Divorced
## 1131                                Divorced
## 1132                                Divorced
## 1133                                Divorced
## 1134                                Divorced
## 1135                                 Married
## 1136                                Divorced
## 1137                                Divorced
## 1138                                Divorced
## 1139                                 Married
## 1140                                 Married
## 1141                                 Married
## 1142                                 Married
## 1143                                 Married
## 1144                                 Married
## 1145                                 Married
## 1146                                 Married
## 1147                                 Married
## 1148                                 Married
## 1149                                 Married
## 1150                                 Married
## 1151                                Divorced
## 1152                                 Married
## 1153                                 Married
## 1154                                 Married
## 1155                                 Married
## 1156                                 Married
## 1157                                Divorced
## 1158                                 Married
## 1159                                Divorced
## 1160                                 Married
## 1161                                Divorced
## 1162                                 Married
## 1163                                 Married
## 1164                                 Married
## 1165                                 Married
## 1166                                 Married
## 1167                                Divorced
## 1168                                Divorced
## 1169                                Divorced
## 1170                                 Married
## 1171                                 Married
## 1172                                Divorced
## 1173                                 Married
## 1174                                 Married
## 1175                                 Married
## 1176                                 Married
## 1177                                 Married
## 1178                                Divorced
## 1179                                 Married
## 1180                                Divorced
## 1181                                Divorced
## 1182                                 Married
## 1183                                 Married
## 1184                                 Married
## 1185                                Divorced
## 1186                                 Married
## 1187                                Divorced
## 1188                                 Married
## 1189                                Divorced
## 1190                                 Married
## 1191                                Divorced
## 1192                                Divorced
## 1193                                 Married
## 1194                                Divorced
## 1195                                 Married
## 1196                                Divorced
## 1197                                 Married
## 1198                                 Married
## 1199                                Divorced
## 1200                                Divorced
## 1201                                 Married
## 1202                                 Married
## 1203                                 Married
## 1204                                 Married
## 1205                                Divorced
## 1206                                 Married
## 1207                                 Married
## 1208                                 Married
## 1209                                 Married
## 1210                                 Married
## 1211                                 Married
## 1212                                 Married
## 1213                                Divorced
## 1214                                 Married
## 1215                                 Married
## 1216                                 Married
## 1217                                Divorced
## 1218                                 Married
## 1219                                 Married
## 1220                                 Married
## 1221                                 Married
## 1222                                Divorced
## 1223                                 Married
## 1224                                 Married
## 1225                                 Married
## 1226                                 Married
## 1227                                 Married
## 1228                                 Married
## 1229                                Divorced
## 1230                                 Married
## 1231                                 Married
## 1232                                 Married
## 1233                                 Married
## 1234                                 Married
## 1235                                Divorced
## 1236                                 Married
## 1237                                 Married
## 1238                                 Married
## 1239                                 Married
## 1240                                Divorced
## 1241                                 Married
## 1242                                 Married
## 1243                                 Married
## 1244                                 Married
## 1245                                 Married
## 1246                                Divorced
## 1247                                 Married
## 1248                                 Married
## 1249                                Divorced
## 1250                                 Married
## 1251                                 Married
## 1252                                Divorced
## 1253                                Divorced
## 1254                                 Married
## 1255                                 Married
## 1256                                Divorced
## 1257                                 Married
## 1258                                 Married
## 1259                                 Married
## 1260                                 Married
## 1261                                 Married
## 1262                                 Married
## 1263                                Divorced
## 1264                                 Married
## 1265                                Divorced
## 1266                                 Married
## 1267                                 Married
## 1268                                 Married
## 1269                                Divorced
## 1270                                 Married
## 1271                                 Married
## 1272                                 Married
## 1273                                 Married
## 1274                                Divorced
## 1275                                 Married
## 1276                                 Married
## 1277                                Divorced
## 1278                                 Married
## 1279                                 Married
## 1280                                 Married
## 1281                                 Married
## 1282                                 Married
## 1283                                 Married
## 1284                                 Married
## 1285                                 Married
## 1286                                Divorced
## 1287                                 Married
## 1288                                 Married
## 1289                                 Married
## 1290                                 Married
## 1291                                Divorced
## 1292                                Divorced
## 1293                                 Married
## 1294                                 Married
## 1295                                Divorced
## 1296                                 Married
## 1297                                Divorced
## 1298                                 Married
## 1299                                Divorced
## 1300                                Divorced
## 1301                                Divorced
## 1302                                 Married
## 1303                                 Married
## 1304                                Divorced
## 1305                                 Married
## 1306                                 Married
## 1307                                Divorced
## 1308                                Divorced
## 1309                                Divorced
## 1310                                Divorced
## 1311                                Divorced
## 1312                                 Married
## 1313                                 Married
## 1314                                Divorced
## 1315                                Divorced
## 1316                                 Married
## 1317                                 Married
## 1318                                Divorced
## 1319                                Divorced
## 1320                                 Married
## 1321                                Divorced
## 1322                                Divorced
## 1323                                 Married
## 1324                                Divorced
## 1325                                Divorced
## 1326                                Divorced
## 1327                                 Married
## 1328                                 Married
## 1329                                 Married
## 1330                                Divorced
## 1331                                 Married
## 1332                                 Married
## 1333                                 Married
## 1334                                 Married
## 1335                                 Married
## 1336                                 Married
## 1337                                 Married
## 1338                                Divorced
## 1339                                 Married
## 1340                                 Married
## 1341                                 Married
## 1342                                 Married
## 1343                                 Married
## 1344                                 Married
## 1345                                 Married
## 1346                                Divorced
## 1347                                 Married
## 1348                                 Married
## 1349                                 Married
## 1350                                Divorced
## 1351                                Divorced
## 1352                                Divorced
## 1353                                 Married
## 1354                                Divorced
## 1355                                 Married
## 1356                                Divorced
## 1357                                Divorced
## 1358                                 Married
## 1359                                Divorced
## 1360                                Divorced
## 1361                                 Married
## 1362                                Divorced
## 1363                                Divorced
## 1364                                 Married
## 1365                                Divorced
## 1366                                Divorced
## 1367                                Divorced
## 1368                                 Married
## 1369                                 Married
## 1370                                 Married
## 1371                                Divorced
## 1372                                 Married
## 1373                                Divorced
## 1374                                 Married
## 1375                                Divorced
## 1376                                Divorced
## 1377                                 Married
## 1378                                 Married
## 1379                                 Married
## 1380                                 Married
## 1381                                 Married
## 1382                                 Married
## 1383                                Divorced
## 1384                                 Married
## 1385                                Divorced
## 1386                                 Married
## 1387                                Divorced
## 1388                                 Married
## 1389                                Divorced
## 1390                                Divorced
## 1391                                 Married
## 1392                                 Married
## 1393                                Divorced
## 1394                                Divorced
## 1395                                Divorced
## 1396                                Divorced
## 1397                                 Married
## 1398                                 Married
## 1399                                 Married
## 1400                                 Married
## 1401                                 Married
## 1402                                 Married
## 1403                                 Married
## 1404                                 Married
## 1405                                Divorced
## 1406                                 Married
## 1407                                 Married
## 1408                                 Married
## 1409                                 Married
## 1410                                 Married
## 1411                                 Married
## 1412                                 Married
## 1413                                 Married
## 1414                                Divorced
## 1415                                 Married
## 1416                                 Married
## 1417                                 Married
## 1418                                 Married
## 1419                                Divorced
## 1420                                 Married
## 1421                                 Married
## 1422                                Divorced
## 1423                                 Married
## 1424                                 Married
## 1425                                Divorced
## 1426                                 Married
## 1427                                 Married
## 1428                                 Married
## 1429                                 Married
## 1430                                Divorced
## 1431                                 Married
## 1432                                Divorced
## 1433                                 Married
## 1434                                Divorced
## 1435                                Divorced
## 1436                                Divorced
## 1437                                 Married
## 1438                                 Married
## 1439                                Divorced
## 1440                                Divorced
## 1441                                 Married
## 1442                                Divorced
## 1443                                Divorced
## 1444                                Divorced
## 1445                                 Married
## 1446                                 Married
## 1447                                 Married
## 1448                                 Married
## 1449                                 Married
## 1450                                 Married
## 1451                                 Married
## 1452                                 Married
## 1453                                 Married
## 1454                                 Married
## 1455                                 Married
## 1456                                 Married
## 1457                                 Married
## 1458                                 Married
## 1459                                 Married
## 1460                                Divorced
## 1461                                Divorced
## 1462                                 Married
## 1463                                 Married
## 1464                                 Married
## 1465                                Divorced
## 1466                                 Married
## 1467                                 Married
## 1468                                Divorced
## 1469                                 Married
## 1470                                Divorced
## 1471                                 Married
## 1472                                 Married
## 1473                                 Married
## 1474                                Divorced
## 1475                                 Married
## 1476                                Divorced
## 1477                                Divorced
## 1478                                 Married
## 1479                                Divorced
## 1480                                 Married
## 1481                                Divorced
## 1482                                 Married
## 1483                                Divorced
## 1484                                 Married
## 1485                                 Married
## 1486                                Divorced
## 1487                                Divorced
## 1488                                 Married
## 1489                                Divorced
## 1490                                Divorced
## 1491                                 Married
## 1492                                 Married
## 1493                                 Married
## 1494                                 Married
## 1495                                 Married
## 1496                                Divorced
## 1497                                Divorced
## 1498                                Divorced
## 1499                                 Married
## 1500                                 Married
## 1501                                 Married
## 1502                                Divorced
## 1503                                Divorced
## 1504                                Divorced
## 1505                                Divorced
## 1506                                 Married
## 1507                                 Married
## 1508                                 Married
## 1509                                Divorced
## 1510                                 Married
## 1511                                 Married
## 1512                                Divorced
## 1513                                Divorced
## 1514                                Divorced
## 1515                                 Married
## 1516                                 Married
## 1517                                 Married
## 1518                                 Married
## 1519                                Divorced
## 1520                                 Married
## 1521                                 Married
## 1522                                 Married
## 1523                                 Married
## 1524                                 Married
## 1525                                 Married
## 1526                                 Married
## 1527                                 Married
## 1528                                 Married
## 1529                                Divorced
## 1530                                 Married
## 1531                                Divorced
## 1532                                Divorced
## 1533                                 Married
## 1534                                Divorced
## 1535                                 Married
## 1536                                 Married
## 1537                                 Married
## 1538                                 Married
## 1539                                 Married
## 1540                                Divorced
## 1541                                 Married
## 1542                                 Married
## 1543                                Divorced
## 1544                                 Married
## 1545                                Divorced
## 1546                                 Married
## 1547                                 Married
## 1548                                Divorced
## 1549                                Divorced
## 1550                                Divorced
## 1551                                Divorced
## 1552                                Divorced
## 1553                                Divorced
## 1554                                Divorced
## 1555                                Divorced
## 1556                                 Married
## 1557                                Divorced
## 1558                                 Married
## 1559                                 Married
## 1560                                Divorced
## 1561                                Divorced
## 1562                                 Married
## 1563                                Divorced
## 1564                                 Married
## 1565                                 Married
## 1566                                 Married
## 1567                                 Married
## 1568                                Divorced
## 1569                                 Married
## 1570                                 Married
## 1571                                 Married
## 1572                                 Married
## 1573                                 Married
## 1574                                Divorced
## 1575                                 Married
## 1576                                 Married
## 1577                                Divorced
## 1578                                Divorced
## 1579                                Divorced
## 1580                                Divorced
## 1581                                 Married
## 1582                                 Married
## 1583                                 Married
## 1584                                 Married
## 1585                                 Married
## 1586                                 Married
## 1587                                 Married
## 1588                                 Married
## 1589                                 Married
## 1590                                Divorced
## 1591                                 Married
## 1592                                 Married
## 1593                                 Married
## 1594                                 Married
## 1595                                 Married
## 1596                                 Married
## 1597                                Divorced
## 1598                                Divorced
## 1599                                 Married
## 1600                                 Married
## 1601                                 Married
## 1602                                 Married
## 1603                                 Married
## 1604                                Divorced
## 1605                                 Married
## 1606                                 Married
## 1607                                 Married
## 1608                                Divorced
## 1609                                 Married
## 1610                                Divorced
## 1611                                Divorced
## 1612                                Divorced
## 1613                                 Married
## 1614                                 Married
## 1615                                 Married
## 1616                                Divorced
## 1617                                Divorced
## 1618                                Divorced
## 1619                                 Married
## 1620                                 Married
## 1621                                 Married
## 1622                                Divorced
## 1623                                 Married
## 1624                                 Married
## 1625                                 Married
## 1626                                 Married
## 1627                                Divorced
## 1628                                Divorced
## 1629                                 Married
## 1630                                 Married
## 1631                                 Married
## 1632                                 Married
## 1633                                 Married
## 1634                                 Married
## 1635                                 Married
## 1636                                 Married
## 1637                                 Married
## 1638                                 Married
## 1639                                 Married
## 1640                                 Married
## 1641                                 Married
## 1642                                 Married
## 1643                                 Married
## 1644                                Divorced
## 1645                                Divorced
## 1646                                Divorced
## 1647                                 Married
## 1648                                 Married
## 1649                                 Married
## 1650                                 Married
## 1651                                 Married
## 1652                                 Married
## 1653                                Divorced
## 1654                                 Married
## 1655                                Divorced
## 1656                                 Married
## 1657                                 Married
## 1658                                 Married
## 1659                                 Married
## 1660                                 Married
## 1661                                 Married
## 1662                                Divorced
## 1663                                 Married
## 1664                                 Married
## 1665                                Divorced
## 1666                                 Married
## 1667                                 Married
## 1668                                Divorced
## 1669                                 Married
## 1670                                 Married
## 1671                                Divorced
## 1672                                Divorced
## 1673                                Divorced
## 1674                                 Married
## 1675                                 Married
## 1676                                 Married
## 1677                                 Married
## 1678                                Divorced
## 1679                                Divorced
## 1680                                 Married
## 1681                                 Married
## 1682                                Divorced
## 1683                                 Married
## 1684                                 Married
## 1685                                 Married
## 1686                                 Married
## 1687                                 Married
## 1688                                 Married
## 1689                                 Married
## 1690                                 Married
## 1691                                 Married
## 1692                                Divorced
## 1693                                 Married
## 1694                                 Married
## 1695                                Divorced
## 1696                                 Married
## 1697                                Divorced
## 1698                                Divorced
## 1699                                 Married
## 1700                                 Married
## 1701                                Divorced
## 1702                                 Married
## 1703                                 Married
## 1704                                 Married
## 1705                                 Married
## 1706                                 Married
## 1707                                 Married
## 1708                                 Married
## 1709                                 Married
## 1710                                 Married
## 1711                                Divorced
## 1712                                 Married
## 1713                                 Married
## 1714                                Divorced
## 1715                                 Married
## 1716                                 Married
## 1717                                Divorced
## 1718                                Divorced
## 1719                                 Married
## 1720                                Divorced
## 1721                                 Married
## 1722                                Divorced
## 1723                                 Married
## 1724                                Divorced
## 1725                                 Married
## 1726                                 Married
## 1727                                 Married
## 1728                                 Married
## 1729                                Divorced
## 1730                                 Married
## 1731                                Divorced
## 1732                                Divorced
## 1733                                 Married
## 1734                                 Married
## 1735                                 Married
## 1736                                Divorced
## 1737                                 Married
## 1738                                Divorced
## 1739                                 Married
## 1740                                Divorced
## 1741                                 Married
## 1742                                Divorced
## 1743                                 Married
## 1744                                Divorced
## 1745                                 Married
## 1746                                Divorced
## 1747                                 Married
## 1748                                Divorced
## 1749                                 Married
## 1750                                 Married
## 1751                                 Married
## 1752                                 Married
## 1753                                Divorced
## 1754                                 Married
## 1755                                 Married
## 1756                                Divorced
## 1757                                 Married
## 1758                                Divorced
## 1759                                Divorced
## 1760                                 Married
## 1761                                Divorced
## 1762                                 Married
## 1763                                Divorced
## 1764                                 Married
## 1765                                 Married
## 1766                                Divorced
## 1767                                Divorced
## 1768                                 Married
## 1769                                Divorced
## 1770                                 Married
## 1771                                 Married
## 1772                                Divorced
## 1773                                 Married
## 1774                                 Married
## 1775                                 Married
## 1776                                 Married
## 1777                                 Married
## 1778                                 Married
## 1779                                 Married
## 1780                                 Married
## 1781                                 Married
## 1782                                Divorced
## 1783                                Divorced
## 1784                                 Married
## 1785                                Divorced
## 1786                                Divorced
## 1787                                 Married
## 1788                                 Married
## 1789                                 Married
## 1790                                Divorced
## 1791                                 Married
## 1792                                Divorced
## 1793                                Divorced
## 1794                                 Married
## 1795                                 Married
## 1796                                Divorced
## 1797                                 Married
## 1798                                 Married
## 1799                                 Married
## 1800                                 Married
## 1801                                Divorced
## 1802                                Divorced
## 1803                                Divorced
## 1804                                Divorced
## 1805                                 Married
## 1806                                Divorced
## 1807                                 Married
## 1808                                 Married
## 1809                                 Married
## 1810                                Divorced
## 1811                                Divorced
## 1812                                 Married
## 1813                                 Married
## 1814                                 Married
## 1815                                Divorced
## 1816                                 Married
## 1817                                 Married
## 1818                                Divorced
## 1819                                 Married
## 1820                                 Married
## 1821                                 Married
## 1822                                 Married
## 1823                                Divorced
## 1824                                Divorced
## 1825                                Divorced
## 1826                                 Married
## 1827                                Divorced
## 1828                                Divorced
## 1829                                 Married
## 1830                                 Married
## 1831                                 Married
## 1832                                Divorced
## 1833                                Divorced
## 1834                                 Married
## 1835                                 Married
## 1836                                 Married
## 1837                                Divorced
## 1838                                 Married
## 1839                                 Married
## 1840                                 Married
## 1841                                 Married
## 1842                                 Married
## 1843                                Divorced
## 1844                                Divorced
## 1845                                 Married
## 1846                                 Married
## 1847                                 Married
## 1848                                 Married
## 1849                                 Married
## 1850                                 Married
## 1851                                Divorced
## 1852                                 Married
## 1853                                 Married
## 1854                                 Married
## 1855                                Divorced
## 1856                                 Married
## 1857                                 Married
## 1858                                 Married
## 1859                                 Married
## 1860                                 Married
## 1861                                 Married
## 1862                                Divorced
## 1863                                Divorced
## 1864                                 Married
## 1865                                 Married
## 1866                                 Married
## 1867                                Divorced
## 1868                                 Married
## 1869                                 Married
## 1870                                Divorced
## 1871                                Divorced
## 1872                                 Married
## 1873                                 Married
## 1874                                 Married
## 1875                                Divorced
## 1876                                Divorced
## 1877                                 Married
## 1878                                Divorced
## 1879                                 Married
## 1880                                Divorced
## 1881                                 Married
## 1882                                 Married
## 1883                                 Married
## 1884                                 Married
## 1885                                 Married
## 1886                                 Married
## 1887                                 Married
## 1888                                Divorced
## 1889                                 Married
## 1890                                 Married
## 1891                                Divorced
## 1892                                 Married
## 1893                                Divorced
## 1894                                 Married
## 1895                                 Married
## 1896                                 Married
## 1897                                 Married
## 1898                                 Married
## 1899                                Divorced
## 1900                                 Married
## 1901                                 Married
## 1902                                 Married
## 1903                                 Married
## 1904                                Divorced
## 1905                                Divorced
## 1906                                Divorced
## 1907                                Divorced
## 1908                                Divorced
## 1909                                Divorced
## 1910                                Divorced
## 1911                                 Married
## 1912                                 Married
## 1913                                Divorced
## 1914                                Divorced
## 1915                                 Married
## 1916                                 Married
## 1917                                 Married
## 1918                                Divorced
## 1919                                 Married
## 1920                                 Married
## 1921                                Divorced
## 1922                                 Married
## 1923                                 Married
## 1924                                 Married
## 1925                                 Married
## 1926                                Divorced
## 1927                                Divorced
## 1928                                 Married
## 1929                                Divorced
## 1930                                 Married
## 1931                                 Married
## 1932                                 Married
## 1933                                 Married
## 1934                                 Married
## 1935                                 Married
## 1936                                Divorced
## 1937                                 Married
## 1938                                Divorced
## 1939                                 Married
## 1940                                Divorced
## 1941                                Divorced
## 1942                                 Married
## 1943                                Divorced
## 1944                                 Married
## 1945                                 Married
## 1946                                 Married
## 1947                                 Married
## 1948                                 Married
## 1949                                 Married
## 1950                                 Married
## 1951                                Divorced
## 1952                                Divorced
## 1953                                Divorced
## 1954                                 Married
## 1955                                Divorced
## 1956                                 Married
## 1957                                 Married
## 1958                                Divorced
## 1959                                Divorced
## 1960                                 Married
## 1961                                 Married
## 1962                                Divorced
## 1963                                 Married
## 1964                                 Married
## 1965                                Divorced
## 1966                                Divorced
## 1967                                Divorced
## 1968                                 Married
## 1969                                Divorced
## 1970                                Divorced
## 1971                                Divorced
## 1972                                Divorced
## 1973                                 Married
## 1974                                Divorced
## 1975                                 Married
## 1976                                 Married
## 1977                                 Married
## 1978                                Divorced
## 1979                                 Married
## 1980                                 Married
## 1981                                 Married
## 1982                                 Married
## 1983                                 Married
## 1984                                 Married
## 1985                                Divorced
## 1986                                 Married
## 1987                                 Married
## 1988                                 Married
## 1989                                 Married
## 1990                                 Married
## 1991                                 Married
## 1992                                Divorced
## 1993                                 Married
## 1994                                Divorced
## 1995                                 Married
## 1996                                 Married
## 1997                                Divorced
## 1998                                 Married
## 1999                                 Married
## 2000                                 Married
## 2001                                 Married
## 2002                                Divorced
## 2003                                 Married
## 2004                                 Married
## 2005                                 Married
## 2006                                Divorced
## 2007                                Divorced
## 2008                                 Married
## 2009                                 Married
## 2010                                 Married
## 2011                                 Married
## 2012                                Divorced
## 2013                                 Married
## 2014                                 Married
## 2015                                 Married
## 2016                                Divorced
## 2017                                 Married
## 2018                                 Married
## 2019                                Divorced
## 2020                                Divorced
## 2021                                 Married
## 2022                                 Married
## 2023                                 Married
## 2024                                 Married
## 2025                                 Married
## 2026                                 Married
## 2027                                 Married
## 2028                                 Married
## 2029                                Divorced
## 2030                                 Married
## 2031                                 Married
## 2032                                Divorced
## 2033                                 Married
## 2034                                 Married
## 2035                                Divorced
## 2036                                 Married
## 2037                                 Married
## 2038                                 Married
## 2039                                 Married
## 2040                                 Married
## 2041                                 Married
## 2042                                 Married
## 2043                                 Married
## 2044                                 Married
## 2045                                Divorced
## 2046                                 Married
## 2047                                 Married
## 2048                                Divorced
## 2049                                Divorced
## 2050                                Divorced
## 2051                                 Married
## 2052                                Divorced
## 2053                                Divorced
## 2054                                Divorced
## 2055                                 Married
## 2056                                Divorced
## 2057                                 Married
## 2058                                 Married
## 2059                                Divorced
## 2060                                 Married
## 2061                                 Married
## 2062                                Divorced
## 2063                                 Married
## 2064                                 Married
## 2065                                 Married
## 2066                                Divorced
## 2067                                Divorced
## 2068                                Divorced
## 2069                                Divorced
## 2070                                 Married
## 2071                                 Married
## 2072                                Divorced
## 2073                                Divorced
## 2074                                Divorced
## 2075                                 Married
## 2076                                Divorced
## 2077                                 Married
## 2078                                 Married
## 2079                                 Married
## 2080                                Divorced
## 2081                                Divorced
## 2082                                 Married
## 2083                                Divorced
## 2084                                 Married
## 2085                                 Married
## 2086                                 Married
## 2087                                 Married
## 2088                                Divorced
## 2089                                Divorced
## 2090                                 Married
## 2091                                Divorced
## 2092                                 Married
## 2093                                 Married
## 2094                                 Married
## 2095                                 Married
## 2096                                Divorced
## 2097                                 Married
## 2098                                 Married
## 2099                                Divorced
## 2100                                Divorced
## 2101                                 Married
## 2102                                 Married
## 2103                                 Married
## 2104                                 Married
## 2105                                 Married
## 2106                                 Married
## 2107                                Divorced
## 2108                                 Married
## 2109                                 Married
## 2110                                Divorced
## 2111                                 Married
## 2112                                 Married
## 2113                                Divorced
## 2114                                 Married
## 2115                                 Married
## 2116                                 Married
## 2117                                 Married
## 2118                                 Married
## 2119                                 Married
## 2120                                Divorced
## 2121                                 Married
## 2122                                Divorced
## 2123                                Divorced
## 2124                                Divorced
## 2125                                Divorced
## 2126                                Divorced
## 2127                                 Married
## 2128                                 Married
## 2129                                 Married
## 2130                                Divorced
## 2131                                Divorced
## 2132                                 Married
## 2133                                 Married
## 2134                                 Married
## 2135                                 Married
## 2136                                Divorced
## 2137                                Divorced
## 2138                                 Married
## 2139                                 Married
## 2140                                 Married
## 2141                                 Married
## 2142                                 Married
## 2143                                 Married
## 2144                                 Married
## 2145                                Divorced
## 2146                                Divorced
## 2147                                Divorced
## 2148                                Divorced
## 2149                                Divorced
## 2150                                 Married
## 2151                                 Married
## 2152                                 Married
## 2153                                Divorced
## 2154                                 Married
## 2155                                 Married
## 2156                                 Married
## 2157                                 Married
## 2158                                 Married
## 2159                                Divorced
## 2160                                 Married
## 2161                                 Married
## 2162                                Divorced
## 2163                                Divorced
## 2164                                 Married
## 2165                                 Married
## 2166                                 Married
## 2167                                Divorced
## 2168                                Divorced
## 2169                                 Married
## 2170                                 Married
## 2171                                Divorced
## 2172                                 Married
## 2173                                Divorced
## 2174                                 Married
## 2175                                 Married
## 2176                                Divorced
## 2177                                Divorced
## 2178                                 Married
## 2179                                 Married
## 2180                                 Married
## 2181                                Divorced
## 2182                                Divorced
## 2183                                 Married
## 2184                                 Married
## 2185                                Divorced
## 2186                                 Married
## 2187                                 Married
## 2188                                 Married
## 2189                                 Married
## 2190                                Divorced
## 2191                                Divorced
## 2192                                Divorced
## 2193                                Divorced
## 2194                                 Married
## 2195                                Divorced
## 2196                                 Married
## 2197                                 Married
## 2198                                Divorced
## 2199                                Divorced
## 2200                                 Married
## 2201                                Divorced
## 2202                                Divorced
## 2203                                Divorced
## 2204                                Divorced
## 2205                                 Married
## 2206                                 Married
## 2207                                 Married
## 2208                                 Married
## 2209                                 Married
## 2210                                Divorced
## 2211                                 Married
## 2212                                Divorced
## 2213                                 Married
## 2214                                Divorced
## 2215                                Divorced
## 2216                                 Married
## 2217                                 Married
## 2218                                 Married
## 2219                                Divorced
## 2220                                 Married
## 2221                                 Married
## 2222                                 Married
## 2223                                Divorced
## 2224                                 Married
## 2225                                 Married
## 2226                                 Married
## 2227                                 Married
## 2228                                Divorced
## 2229                                Divorced
## 2230                                 Married
## 2231                                 Married
## 2232                                Divorced
## 2233                                 Married
## 2234                                 Married
## 2235                                Divorced
## 2236                                Divorced
## 2237                                Divorced
## 2238                                Divorced
## 2239                                Divorced
## 2240                                 Married
## 2241                                Divorced
## 2242                                 Married
## 2243                                 Married
## 2244                                 Married
## 2245                                Divorced
## 2246                                Divorced
## 2247                                 Married
## 2248                                Divorced
## 2249                                Divorced
## 2250                                 Married
## 2251                                 Married
## 2252                                Divorced
## 2253                                Divorced
## 2254                                Divorced
## 2255                                 Married
## 2256                                 Married
## 2257                                 Married
## 2258                                Divorced
## 2259                                Divorced
## 2260                                Divorced
## 2261                                 Married
## 2262                                 Married
## 2263                                 Married
## 2264                                Divorced
## 2265                                Divorced
## 2266                                 Married
## 2267                                 Married
## 2268                                Divorced
## 2269                                Divorced
## 2270                                 Married
## 2271                                Divorced
## 2272                                Divorced
## 2273                                 Married
## 2274                                Divorced
## 2275                                 Married
## 2276                                 Married
## 2277                                Divorced
## 2278                                Divorced
## 2279                                Divorced
## 2280                                 Married
## 2281                                 Married
## 2282                                Divorced
## 2283                                Divorced
## 2284                                 Married
## 2285                                Divorced
## 2286                                 Married
## 2287                                Divorced
## 2288                                Divorced
## 2289                                Divorced
## 2290                                 Married
## 2291                                Divorced
## 2292                                Divorced
## 2293                                 Married
## 2294                                 Married
## 2295                                 Married
## 2296                                 Married
## 2297                                 Married
## 2298                                 Married
## 2299                                 Married
## 2300                                 Married
## 2301                                Divorced
## 2302                                Divorced
## 2303                                 Married
## 2304                                 Married
## 2305                                Divorced
## 2306                                 Married
## 2307                                Divorced
## 2308                                Divorced
## 2309                                 Married
## 2310                                Divorced
## 2311                                 Married
## 2312                                Divorced
## 2313                                Divorced
## 2314                                 Married
## 2315                                 Married
## 2316                                 Married
## 2317                                 Married
## 2318                                Divorced
## 2319                                 Married
## 2320                                 Married
## 2321                                Divorced
## 2322                                 Married
## 2323                                 Married
## 2324                                 Married
## 2325                                 Married
## 2326                                Divorced
## 2327                                 Married
## 2328                                 Married
## 2329                                 Married
## 2330                                 Married
## 2331                                 Married
## 2332                                 Married
## 2333                                 Married
## 2334                                Divorced
## 2335                                Divorced
## 2336                                 Married
## 2337                                Divorced
## 2338                                 Married
## 2339                                 Married
## 2340                                 Married
## 2341                                Divorced
## 2342                                 Married
## 2343                                Divorced
## 2344                                 Married
## 2345                                 Married
## 2346                                 Married
## 2347                                 Married
## 2348                                Divorced
## 2349                                 Married
## 2350                                 Married
## 2351                                 Married
## 2352                                Divorced
## 2353                                 Married
## 2354                                 Married
## 2355                                 Married
## 2356                                 Married
## 2357                                 Married
## 2358                                Divorced
## 2359                                Divorced
## 2360                                 Married
## 2361                                 Married
## 2362                                 Married
## 2363                                Divorced
## 2364                                 Married
## 2365                                 Married
## 2366                                Divorced
## 2367                                Divorced
## 2368                                 Married
## 2369                                 Married
## 2370                                 Married
## 2371                                 Married
## 2372                                 Married
## 2373                                 Married
## 2374                                 Married
## 2375                                 Married
## 2376                                Divorced
## 2377                                 Married
## 2378                                Divorced
## 2379                                 Married
## 2380                                 Married
## 2381                                Divorced
## 2382                                 Married
## 2383                                 Married
## 2384                                 Married
## 2385                                Divorced
## 2386                                Divorced
## 2387                                 Married
## 2388                                 Married
## 2389                                 Married
## 2390                                Divorced
## 2391                                 Married
## 2392                                 Married
## 2393                                 Married
## 2394                                 Married
## 2395                                 Married
## 2396                                 Married
## 2397                                 Married
## 2398                                Divorced
## 2399                                Divorced
## 2400                                 Married
## 2401                                Divorced
## 2402                                 Married
## 2403                                 Married
## 2404                                Divorced
## 2405                                 Married
## 2406                                 Married
## 2407                                 Married
## 2408                                 Married
## 2409                                 Married
## 2410                                 Married
## 2411                                 Married
## 2412                                Divorced
## 2413                                 Married
## 2414                                Divorced
## 2415                                 Married
## 2416                                 Married
## 2417                                Divorced
## 2418                                 Married
## 2419                                Divorced
## 2420                                 Married
## 2421                                 Married
## 2422                                 Married
## 2423                                Divorced
## 2424                                Divorced
## 2425                                 Married
## 2426                                 Married
## 2427                                Divorced
## 2428                                 Married
## 2429                                Divorced
## 2430                                Divorced
## 2431                                 Married
## 2432                                 Married
## 2433                                 Married
## 2434                                 Married
## 2435                                Divorced
## 2436                                Divorced
## 2437                                 Married
## 2438                                 Married
## 2439                                 Married
## 2440                                Divorced
## 2441                                 Married
## 2442                                 Married
## 2443                                 Married
## 2444                                Divorced
## 2445                                Divorced
## 2446                                 Married
## 2447                                 Married
## 2448                                Divorced
## 2449                                 Married
## 2450                                 Married
## 2451                                 Married
## 2452                                 Married
## 2453                                Divorced
## 2454                                Divorced
## 2455                                 Married
## 2456                                Divorced
## 2457                                 Married
## 2458                                 Married
## 2459                                Divorced
## 2460                                Divorced
## 2461                                 Married
## 2462                                Divorced
## 2463                                Divorced
## 2464                                 Married
## 2465                                Divorced
## 2466                                Divorced
## 2467                                Divorced
## 2468                                 Married
## 2469                                 Married
## 2470                                 Married
## 2471                                 Married
## 2472                                 Married
## 2473                                Divorced
## 2474                                 Married
## 2475                                 Married
## 2476                                 Married
## 2477                                 Married
## 2478                                 Married
## 2479                                 Married
## 2480                                 Married
## 2481                                Divorced
## 2482                                 Married
## 2483                                 Married
## 2484                                 Married
## 2485                                 Married
## 2486                                 Married
## 2487                                 Married
## 2488                                 Married
## 2489                                Divorced
## 2490                                 Married
## 2491                                Divorced
## 2492                                Divorced
## 2493                                Divorced
## 2494                                Divorced
## 2495                                 Married
## 2496                                 Married
## 2497                                 Married
## 2498                                 Married
## 2499                                Divorced
##      if_else(Q3 == 3, "Widowed", "Single")
## 1                                  Widowed
## 2                                   Single
## 3                                   Single
## 4                                   Single
## 5                                   Single
## 6                                   Single
## 7                                   Single
## 8                                   Single
## 9                                  Widowed
## 10                                  Single
## 11                                  Single
## 12                                  Single
## 13                                  Single
## 14                                  Single
## 15                                  Single
## 16                                  Single
## 17                                  Single
## 18                                  Single
## 19                                  Single
## 20                                 Widowed
## 21                                  Single
## 22                                  Single
## 23                                  Single
## 24                                  Single
## 25                                  Single
## 26                                  Single
## 27                                  Single
## 28                                  Single
## 29                                  Single
## 30                                  Single
## 31                                  Single
## 32                                  Single
## 33                                  Single
## 34                                  Single
## 35                                  Single
## 36                                  Single
## 37                                  Single
## 38                                  Single
## 39                                  Single
## 40                                  Single
## 41                                  Single
## 42                                  Single
## 43                                  Single
## 44                                  Single
## 45                                  Single
## 46                                  Single
## 47                                  Single
## 48                                  Single
## 49                                  Single
## 50                                  Single
## 51                                  Single
## 52                                  Single
## 53                                  Single
## 54                                  Single
## 55                                  Single
## 56                                  Single
## 57                                  Single
## 58                                  Single
## 59                                  Single
## 60                                  Single
## 61                                  Single
## 62                                  Single
## 63                                  Single
## 64                                  Single
## 65                                  Single
## 66                                  Single
## 67                                  Single
## 68                                  Single
## 69                                  Single
## 70                                  Single
## 71                                  Single
## 72                                  Single
## 73                                  Single
## 74                                  Single
## 75                                  Single
## 76                                  Single
## 77                                  Single
## 78                                  Single
## 79                                  Single
## 80                                  Single
## 81                                  Single
## 82                                  Single
## 83                                  Single
## 84                                  Single
## 85                                  Single
## 86                                  Single
## 87                                  Single
## 88                                  Single
## 89                                  Single
## 90                                  Single
## 91                                  Single
## 92                                  Single
## 93                                  Single
## 94                                  Single
## 95                                  Single
## 96                                  Single
## 97                                  Single
## 98                                  Single
## 99                                  Single
## 100                                 Single
## 101                                 Single
## 102                                Widowed
## 103                                 Single
## 104                                 Single
## 105                                 Single
## 106                                 Single
## 107                                 Single
## 108                                 Single
## 109                                 Single
## 110                                 Single
## 111                                 Single
## 112                                 Single
## 113                                Widowed
## 114                                Widowed
## 115                                 Single
## 116                                Widowed
## 117                                 Single
## 118                                 Single
## 119                                 Single
## 120                                 Single
## 121                                 Single
## 122                                 Single
## 123                                 Single
## 124                                 Single
## 125                                 Single
## 126                                 Single
## 127                                 Single
## 128                                 Single
## 129                                 Single
## 130                                 Single
## 131                                 Single
## 132                                 Single
## 133                                Widowed
## 134                                Widowed
## 135                                 Single
## 136                                 Single
## 137                                 Single
## 138                                 Single
## 139                                 Single
## 140                                 Single
## 141                                 Single
## 142                                 Single
## 143                                 Single
## 144                                 Single
## 145                                 Single
## 146                                 Single
## 147                                 Single
## 148                                 Single
## 149                                 Single
## 150                                Widowed
## 151                                 Single
## 152                                 Single
## 153                                 Single
## 154                                 Single
## 155                                 Single
## 156                                 Single
## 157                                 Single
## 158                                 Single
## 159                                 Single
## 160                                 Single
## 161                                 Single
## 162                                 Single
## 163                                 Single
## 164                                 Single
## 165                                 Single
## 166                                 Single
## 167                                 Single
## 168                                 Single
## 169                                 Single
## 170                                 Single
## 171                                 Single
## 172                                 Single
## 173                                 Single
## 174                                 Single
## 175                                 Single
## 176                                 Single
## 177                                 Single
## 178                                 Single
## 179                                 Single
## 180                                 Single
## 181                                 Single
## 182                                 Single
## 183                                 Single
## 184                                 Single
## 185                                 Single
## 186                                 Single
## 187                                 Single
## 188                                 Single
## 189                                 Single
## 190                                 Single
## 191                                 Single
## 192                                 Single
## 193                                 Single
## 194                                 Single
## 195                                 Single
## 196                                 Single
## 197                                 Single
## 198                                 Single
## 199                                 Single
## 200                                Widowed
## 201                                 Single
## 202                                 Single
## 203                                 Single
## 204                                 Single
## 205                                Widowed
## 206                                 Single
## 207                                 Single
## 208                                 Single
## 209                                 Single
## 210                                 Single
## 211                                 Single
## 212                                 Single
## 213                                 Single
## 214                                 Single
## 215                                 Single
## 216                                 Single
## 217                                 Single
## 218                                 Single
## 219                                 Single
## 220                                 Single
## 221                                 Single
## 222                                 Single
## 223                                 Single
## 224                                Widowed
## 225                                 Single
## 226                                 Single
## 227                                 Single
## 228                                 Single
## 229                                 Single
## 230                                 Single
## 231                                 Single
## 232                                Widowed
## 233                                 Single
## 234                                 Single
## 235                                Widowed
## 236                                 Single
## 237                                 Single
## 238                                 Single
## 239                                 Single
## 240                                 Single
## 241                                 Single
## 242                                 Single
## 243                                 Single
## 244                                 Single
## 245                                 Single
## 246                                 Single
## 247                                 Single
## 248                                 Single
## 249                                Widowed
## 250                                Widowed
## 251                                 Single
## 252                                 Single
## 253                                 Single
## 254                                Widowed
## 255                                 Single
## 256                                 Single
## 257                                 Single
## 258                                 Single
## 259                                 Single
## 260                                 Single
## 261                                 Single
## 262                                 Single
## 263                                 Single
## 264                                 Single
## 265                                 Single
## 266                                 Single
## 267                                 Single
## 268                                 Single
## 269                                 Single
## 270                                 Single
## 271                                 Single
## 272                                 Single
## 273                                 Single
## 274                                Widowed
## 275                                 Single
## 276                                 Single
## 277                                 Single
## 278                                Widowed
## 279                                 Single
## 280                                 Single
## 281                                 Single
## 282                                 Single
## 283                                 Single
## 284                                 Single
## 285                                 Single
## 286                                 Single
## 287                                 Single
## 288                                 Single
## 289                                 Single
## 290                                 Single
## 291                                 Single
## 292                                 Single
## 293                                 Single
## 294                                 Single
## 295                                Widowed
## 296                                 Single
## 297                                 Single
## 298                                 Single
## 299                                 Single
## 300                                 Single
## 301                                 Single
## 302                                 Single
## 303                                 Single
## 304                                Widowed
## 305                                 Single
## 306                                 Single
## 307                                 Single
## 308                                Widowed
## 309                                 Single
## 310                                 Single
## 311                                 Single
## 312                                 Single
## 313                                 Single
## 314                                 Single
## 315                                 Single
## 316                                 Single
## 317                                 Single
## 318                                 Single
## 319                                 Single
## 320                                 Single
## 321                                 Single
## 322                                 Single
## 323                                 Single
## 324                                 Single
## 325                                 Single
## 326                                 Single
## 327                                 Single
## 328                                Widowed
## 329                                 Single
## 330                                 Single
## 331                                 Single
## 332                                 Single
## 333                                 Single
## 334                                 Single
## 335                                 Single
## 336                                 Single
## 337                                 Single
## 338                                 Single
## 339                                 Single
## 340                                 Single
## 341                                 Single
## 342                                 Single
## 343                                 Single
## 344                                 Single
## 345                                 Single
## 346                                 Single
## 347                                Widowed
## 348                                Widowed
## 349                                 Single
## 350                                Widowed
## 351                                 Single
## 352                                 Single
## 353                                 Single
## 354                                 Single
## 355                                 Single
## 356                                 Single
## 357                                Widowed
## 358                                 Single
## 359                                 Single
## 360                                 Single
## 361                                 Single
## 362                                 Single
## 363                                 Single
## 364                                Widowed
## 365                                 Single
## 366                                 Single
## 367                                 Single
## 368                                 Single
## 369                                 Single
## 370                                 Single
## 371                                 Single
## 372                                 Single
## 373                                 Single
## 374                                 Single
## 375                                 Single
## 376                                 Single
## 377                                 Single
## 378                                 Single
## 379                                 Single
## 380                                 Single
## 381                                 Single
## 382                                 Single
## 383                                 Single
## 384                                 Single
## 385                                 Single
## 386                                 Single
## 387                                 Single
## 388                                 Single
## 389                                 Single
## 390                                 Single
## 391                                 Single
## 392                                 Single
## 393                                 Single
## 394                                 Single
## 395                                 Single
## 396                                 Single
## 397                                 Single
## 398                                 Single
## 399                                 Single
## 400                                 Single
## 401                                 Single
## 402                                 Single
## 403                                 Single
## 404                                 Single
## 405                                 Single
## 406                                 Single
## 407                                 Single
## 408                                 Single
## 409                                 Single
## 410                                 Single
## 411                                Widowed
## 412                                Widowed
## 413                                 Single
## 414                                 Single
## 415                                 Single
## 416                                 Single
## 417                                Widowed
## 418                                 Single
## 419                                 Single
## 420                                 Single
## 421                                 Single
## 422                                 Single
## 423                                 Single
## 424                                 Single
## 425                                 Single
## 426                                 Single
## 427                                Widowed
## 428                                 Single
## 429                                 Single
## 430                                 Single
## 431                                 Single
## 432                                 Single
## 433                                 Single
## 434                                Widowed
## 435                                 Single
## 436                                 Single
## 437                                 Single
## 438                                 Single
## 439                                 Single
## 440                                 Single
## 441                                 Single
## 442                                 Single
## 443                                 Single
## 444                                Widowed
## 445                                 Single
## 446                                 Single
## 447                                 Single
## 448                                 Single
## 449                                 Single
## 450                                 Single
## 451                                 Single
## 452                                 Single
## 453                                 Single
## 454                                 Single
## 455                                 Single
## 456                                 Single
## 457                                 Single
## 458                                Widowed
## 459                                 Single
## 460                                Widowed
## 461                                 Single
## 462                                 Single
## 463                                 Single
## 464                                 Single
## 465                                 Single
## 466                                 Single
## 467                                 Single
## 468                                 Single
## 469                                 Single
## 470                                 Single
## 471                                 Single
## 472                                Widowed
## 473                                 Single
## 474                                 Single
## 475                                 Single
## 476                                 Single
## 477                                 Single
## 478                                 Single
## 479                                 Single
## 480                                 Single
## 481                                 Single
## 482                                 Single
## 483                                 Single
## 484                                 Single
## 485                                 Single
## 486                                 Single
## 487                                 Single
## 488                                 Single
## 489                                Widowed
## 490                                 Single
## 491                                 Single
## 492                                 Single
## 493                                 Single
## 494                                 Single
## 495                                 Single
## 496                                 Single
## 497                                Widowed
## 498                                Widowed
## 499                                 Single
## 500                                 Single
## 501                                 Single
## 502                                 Single
## 503                                 Single
## 504                                 Single
## 505                                 Single
## 506                                 Single
## 507                                 Single
## 508                                 Single
## 509                                 Single
## 510                                 Single
## 511                                 Single
## 512                                 Single
## 513                                 Single
## 514                                 Single
## 515                                 Single
## 516                                 Single
## 517                                 Single
## 518                                 Single
## 519                                 Single
## 520                                 Single
## 521                                 Single
## 522                                 Single
## 523                                 Single
## 524                                 Single
## 525                                 Single
## 526                                 Single
## 527                                 Single
## 528                                 Single
## 529                                Widowed
## 530                                 Single
## 531                                 Single
## 532                                Widowed
## 533                                 Single
## 534                                 Single
## 535                                 Single
## 536                                 Single
## 537                                 Single
## 538                                 Single
## 539                                 Single
## 540                                 Single
## 541                                 Single
## 542                                 Single
## 543                                 Single
## 544                                 Single
## 545                                 Single
## 546                                 Single
## 547                                 Single
## 548                                 Single
## 549                                 Single
## 550                                 Single
## 551                                 Single
## 552                                 Single
## 553                                 Single
## 554                                Widowed
## 555                                 Single
## 556                                 Single
## 557                                 Single
## 558                                Widowed
## 559                                 Single
## 560                                 Single
## 561                                 Single
## 562                                 Single
## 563                                Widowed
## 564                                 Single
## 565                                 Single
## 566                                Widowed
## 567                                Widowed
## 568                                 Single
## 569                                Widowed
## 570                                 Single
## 571                                 Single
## 572                                Widowed
## 573                                Widowed
## 574                                 Single
## 575                                Widowed
## 576                                 Single
## 577                                 Single
## 578                                 Single
## 579                                 Single
## 580                                 Single
## 581                                 Single
## 582                                 Single
## 583                                 Single
## 584                                 Single
## 585                                 Single
## 586                                 Single
## 587                                 Single
## 588                                 Single
## 589                                 Single
## 590                                 Single
## 591                                 Single
## 592                                 Single
## 593                                 Single
## 594                                 Single
## 595                                 Single
## 596                                 Single
## 597                                 Single
## 598                                 Single
## 599                                 Single
## 600                                 Single
## 601                                Widowed
## 602                                Widowed
## 603                                 Single
## 604                                 Single
## 605                                 Single
## 606                                 Single
## 607                                 Single
## 608                                 Single
## 609                                 Single
## 610                                 Single
## 611                                 Single
## 612                                 Single
## 613                                 Single
## 614                                 Single
## 615                                 Single
## 616                                 Single
## 617                                 Single
## 618                                Widowed
## 619                                 Single
## 620                                 Single
## 621                                 Single
## 622                                 Single
## 623                                 Single
## 624                                Widowed
## 625                                 Single
## 626                                 Single
## 627                                Widowed
## 628                                 Single
## 629                                 Single
## 630                                 Single
## 631                                 Single
## 632                                 Single
## 633                                 Single
## 634                                 Single
## 635                                 Single
## 636                                 Single
## 637                                 Single
## 638                                 Single
## 639                                 Single
## 640                                 Single
## 641                                 Single
## 642                                 Single
## 643                                 Single
## 644                                 Single
## 645                                 Single
## 646                                 Single
## 647                                 Single
## 648                                 Single
## 649                                 Single
## 650                                 Single
## 651                                 Single
## 652                                 Single
## 653                                 Single
## 654                                 Single
## 655                                Widowed
## 656                                Widowed
## 657                                 Single
## 658                                 Single
## 659                                Widowed
## 660                                 Single
## 661                                 Single
## 662                                 Single
## 663                                 Single
## 664                                 Single
## 665                                 Single
## 666                                 Single
## 667                                 Single
## 668                                 Single
## 669                                 Single
## 670                                 Single
## 671                                 Single
## 672                                 Single
## 673                                 Single
## 674                                 Single
## 675                                 Single
## 676                                 Single
## 677                                 Single
## 678                                 Single
## 679                                 Single
## 680                                Widowed
## 681                                 Single
## 682                                 Single
## 683                                 Single
## 684                                Widowed
## 685                                 Single
## 686                                 Single
## 687                                Widowed
## 688                                 Single
## 689                                Widowed
## 690                                 Single
## 691                                 Single
## 692                                 Single
## 693                                 Single
## 694                                 Single
## 695                                 Single
## 696                                 Single
## 697                                 Single
## 698                                 Single
## 699                                Widowed
## 700                                 Single
## 701                                 Single
## 702                                 Single
## 703                                 Single
## 704                                 Single
## 705                                 Single
## 706                                 Single
## 707                                 Single
## 708                                 Single
## 709                                 Single
## 710                                 Single
## 711                                 Single
## 712                                 Single
## 713                                Widowed
## 714                                 Single
## 715                                 Single
## 716                                 Single
## 717                                 Single
## 718                                 Single
## 719                                 Single
## 720                                 Single
## 721                                 Single
## 722                                 Single
## 723                                 Single
## 724                                 Single
## 725                                 Single
## 726                                 Single
## 727                                 Single
## 728                                 Single
## 729                                 Single
## 730                                 Single
## 731                                 Single
## 732                                 Single
## 733                                 Single
## 734                                 Single
## 735                                Widowed
## 736                                 Single
## 737                                 Single
## 738                                 Single
## 739                                 Single
## 740                                Widowed
## 741                                 Single
## 742                                 Single
## 743                                 Single
## 744                                 Single
## 745                                 Single
## 746                                Widowed
## 747                                 Single
## 748                                 Single
## 749                                 Single
## 750                                 Single
## 751                                 Single
## 752                                 Single
## 753                                 Single
## 754                                 Single
## 755                                 Single
## 756                                 Single
## 757                                 Single
## 758                                 Single
## 759                                 Single
## 760                                 Single
## 761                                 Single
## 762                                 Single
## 763                                 Single
## 764                                 Single
## 765                                 Single
## 766                                 Single
## 767                                 Single
## 768                                 Single
## 769                                 Single
## 770                                 Single
## 771                                 Single
## 772                                 Single
## 773                                 Single
## 774                                 Single
## 775                                 Single
## 776                                Widowed
## 777                                 Single
## 778                                 Single
## 779                                 Single
## 780                                 Single
## 781                                 Single
## 782                                 Single
## 783                                 Single
## 784                                 Single
## 785                                 Single
## 786                                 Single
## 787                                 Single
## 788                                 Single
## 789                                 Single
## 790                                 Single
## 791                                 Single
## 792                                 Single
## 793                                 Single
## 794                                 Single
## 795                                 Single
## 796                                 Single
## 797                                 Single
## 798                                 Single
## 799                                 Single
## 800                                 Single
## 801                                 Single
## 802                                 Single
## 803                                 Single
## 804                                 Single
## 805                                 Single
## 806                                 Single
## 807                                Widowed
## 808                                 Single
## 809                                 Single
## 810                                 Single
## 811                                 Single
## 812                                 Single
## 813                                 Single
## 814                                 Single
## 815                                 Single
## 816                                 Single
## 817                                 Single
## 818                                Widowed
## 819                                 Single
## 820                                 Single
## 821                                 Single
## 822                                 Single
## 823                                 Single
## 824                                 Single
## 825                                Widowed
## 826                                Widowed
## 827                                 Single
## 828                                 Single
## 829                                 Single
## 830                                 Single
## 831                                 Single
## 832                                 Single
## 833                                Widowed
## 834                                 Single
## 835                                 Single
## 836                                 Single
## 837                                 Single
## 838                                 Single
## 839                                 Single
## 840                                 Single
## 841                                Widowed
## 842                                 Single
## 843                                 Single
## 844                                 Single
## 845                                Widowed
## 846                                 Single
## 847                                 Single
## 848                                 Single
## 849                                 Single
## 850                                 Single
## 851                                 Single
## 852                                 Single
## 853                                 Single
## 854                                 Single
## 855                                 Single
## 856                                 Single
## 857                                 Single
## 858                                Widowed
## 859                                 Single
## 860                                Widowed
## 861                                 Single
## 862                                Widowed
## 863                                 Single
## 864                                 Single
## 865                                 Single
## 866                                 Single
## 867                                 Single
## 868                                 Single
## 869                                 Single
## 870                                 Single
## 871                                 Single
## 872                                 Single
## 873                                 Single
## 874                                 Single
## 875                                 Single
## 876                                 Single
## 877                                 Single
## 878                                 Single
## 879                                 Single
## 880                                 Single
## 881                                 Single
## 882                                 Single
## 883                                 Single
## 884                                 Single
## 885                                Widowed
## 886                                 Single
## 887                                 Single
## 888                                 Single
## 889                                 Single
## 890                                 Single
## 891                                 Single
## 892                                 Single
## 893                                 Single
## 894                                 Single
## 895                                Widowed
## 896                                 Single
## 897                                 Single
## 898                                 Single
## 899                                 Single
## 900                                 Single
## 901                                 Single
## 902                                 Single
## 903                                 Single
## 904                                 Single
## 905                                 Single
## 906                                 Single
## 907                                 Single
## 908                                 Single
## 909                                 Single
## 910                                 Single
## 911                                 Single
## 912                                 Single
## 913                                 Single
## 914                                 Single
## 915                                 Single
## 916                                 Single
## 917                                 Single
## 918                                 Single
## 919                                 Single
## 920                                 Single
## 921                                 Single
## 922                                 Single
## 923                                Widowed
## 924                                 Single
## 925                                 Single
## 926                                 Single
## 927                                 Single
## 928                                 Single
## 929                                 Single
## 930                                 Single
## 931                                 Single
## 932                                 Single
## 933                                 Single
## 934                                 Single
## 935                                 Single
## 936                                 Single
## 937                                 Single
## 938                                 Single
## 939                                 Single
## 940                                 Single
## 941                                 Single
## 942                                 Single
## 943                                 Single
## 944                                 Single
## 945                                 Single
## 946                                Widowed
## 947                                 Single
## 948                                 Single
## 949                                 Single
## 950                                 Single
## 951                                 Single
## 952                                 Single
## 953                                Widowed
## 954                                 Single
## 955                                 Single
## 956                                 Single
## 957                                 Single
## 958                                 Single
## 959                                Widowed
## 960                                 Single
## 961                                Widowed
## 962                                Widowed
## 963                                 Single
## 964                                 Single
## 965                                Widowed
## 966                                 Single
## 967                                 Single
## 968                                 Single
## 969                                 Single
## 970                                 Single
## 971                                 Single
## 972                                 Single
## 973                                Widowed
## 974                                 Single
## 975                                 Single
## 976                                 Single
## 977                                 Single
## 978                                 Single
## 979                                 Single
## 980                                 Single
## 981                                 Single
## 982                                 Single
## 983                                 Single
## 984                                Widowed
## 985                                 Single
## 986                                 Single
## 987                                 Single
## 988                                 Single
## 989                                 Single
## 990                                Widowed
## 991                                 Single
## 992                                 Single
## 993                                 Single
## 994                                 Single
## 995                                 Single
## 996                                 Single
## 997                                 Single
## 998                                 Single
## 999                                 Single
## 1000                                Single
## 1001                                Single
## 1002                                Single
## 1003                                Single
## 1004                                Single
## 1005                                Single
## 1006                                Single
## 1007                                Single
## 1008                                Single
## 1009                                Single
## 1010                                Single
## 1011                                Single
## 1012                                Single
## 1013                                Single
## 1014                                Single
## 1015                                Single
## 1016                               Widowed
## 1017                                Single
## 1018                                Single
## 1019                                Single
## 1020                                Single
## 1021                               Widowed
## 1022                                Single
## 1023                                Single
## 1024                                Single
## 1025                                Single
## 1026                                Single
## 1027                                Single
## 1028                                Single
## 1029                                Single
## 1030                                Single
## 1031                                Single
## 1032                                Single
## 1033                                Single
## 1034                                Single
## 1035                                Single
## 1036                                Single
## 1037                               Widowed
## 1038                                Single
## 1039                                Single
## 1040                                Single
## 1041                                Single
## 1042                                Single
## 1043                               Widowed
## 1044                                Single
## 1045                                Single
## 1046                                Single
## 1047                                Single
## 1048                                Single
## 1049                                Single
## 1050                                Single
## 1051                                Single
## 1052                                Single
## 1053                               Widowed
## 1054                               Widowed
## 1055                               Widowed
## 1056                                Single
## 1057                                Single
## 1058                                Single
## 1059                                Single
## 1060                               Widowed
## 1061                                Single
## 1062                                Single
## 1063                                Single
## 1064                                Single
## 1065                                Single
## 1066                               Widowed
## 1067                                Single
## 1068                                Single
## 1069                                Single
## 1070                                Single
## 1071                                Single
## 1072                               Widowed
## 1073                                Single
## 1074                                Single
## 1075                                Single
## 1076                                Single
## 1077                                Single
## 1078                                Single
## 1079                                Single
## 1080                                Single
## 1081                               Widowed
## 1082                                Single
## 1083                                Single
## 1084                                Single
## 1085                                Single
## 1086                                Single
## 1087                                Single
## 1088                                Single
## 1089                                Single
## 1090                                Single
## 1091                                Single
## 1092                               Widowed
## 1093                               Widowed
## 1094                               Widowed
## 1095                                Single
## 1096                                Single
## 1097                                Single
## 1098                                Single
## 1099                               Widowed
## 1100                                Single
## 1101                               Widowed
## 1102                                Single
## 1103                                Single
## 1104                                Single
## 1105                                Single
## 1106                               Widowed
## 1107                                Single
## 1108                                Single
## 1109                                Single
## 1110                                Single
## 1111                                Single
## 1112                                Single
## 1113                                Single
## 1114                                Single
## 1115                                Single
## 1116                                Single
## 1117                                Single
## 1118                               Widowed
## 1119                                Single
## 1120                                Single
## 1121                                Single
## 1122                                Single
## 1123                                Single
## 1124                                Single
## 1125                               Widowed
## 1126                                Single
## 1127                                Single
## 1128                                Single
## 1129                                Single
## 1130                                Single
## 1131                                Single
## 1132                               Widowed
## 1133                               Widowed
## 1134                                Single
## 1135                                Single
## 1136                                Single
## 1137                               Widowed
## 1138                                Single
## 1139                                Single
## 1140                                Single
## 1141                                Single
## 1142                                Single
## 1143                                Single
## 1144                                Single
## 1145                                Single
## 1146                                Single
## 1147                                Single
## 1148                                Single
## 1149                                Single
## 1150                                Single
## 1151                                Single
## 1152                                Single
## 1153                                Single
## 1154                                Single
## 1155                                Single
## 1156                                Single
## 1157                                Single
## 1158                                Single
## 1159                                Single
## 1160                                Single
## 1161                                Single
## 1162                                Single
## 1163                                Single
## 1164                                Single
## 1165                                Single
## 1166                                Single
## 1167                                Single
## 1168                                Single
## 1169                                Single
## 1170                                Single
## 1171                                Single
## 1172                               Widowed
## 1173                                Single
## 1174                                Single
## 1175                                Single
## 1176                                Single
## 1177                                Single
## 1178                               Widowed
## 1179                                Single
## 1180                                Single
## 1181                               Widowed
## 1182                                Single
## 1183                                Single
## 1184                                Single
## 1185                                Single
## 1186                                Single
## 1187                                Single
## 1188                                Single
## 1189                               Widowed
## 1190                                Single
## 1191                               Widowed
## 1192                                Single
## 1193                                Single
## 1194                                Single
## 1195                                Single
## 1196                                Single
## 1197                                Single
## 1198                                Single
## 1199                               Widowed
## 1200                                Single
## 1201                                Single
## 1202                                Single
## 1203                                Single
## 1204                                Single
## 1205                                Single
## 1206                                Single
## 1207                                Single
## 1208                                Single
## 1209                                Single
## 1210                                Single
## 1211                                Single
## 1212                                Single
## 1213                               Widowed
## 1214                                Single
## 1215                                Single
## 1216                                Single
## 1217                               Widowed
## 1218                                Single
## 1219                                Single
## 1220                                Single
## 1221                                Single
## 1222                                Single
## 1223                                Single
## 1224                                Single
## 1225                                Single
## 1226                                Single
## 1227                                Single
## 1228                                Single
## 1229                                Single
## 1230                                Single
## 1231                                Single
## 1232                                Single
## 1233                                Single
## 1234                                Single
## 1235                                Single
## 1236                                Single
## 1237                                Single
## 1238                                Single
## 1239                                Single
## 1240                                Single
## 1241                                Single
## 1242                                Single
## 1243                                Single
## 1244                                Single
## 1245                                Single
## 1246                                Single
## 1247                                Single
## 1248                                Single
## 1249                                Single
## 1250                                Single
## 1251                                Single
## 1252                                Single
## 1253                                Single
## 1254                                Single
## 1255                                Single
## 1256                                Single
## 1257                                Single
## 1258                                Single
## 1259                                Single
## 1260                                Single
## 1261                                Single
## 1262                                Single
## 1263                               Widowed
## 1264                                Single
## 1265                                Single
## 1266                                Single
## 1267                                Single
## 1268                                Single
## 1269                                Single
## 1270                                Single
## 1271                                Single
## 1272                                Single
## 1273                                Single
## 1274                               Widowed
## 1275                                Single
## 1276                                Single
## 1277                                Single
## 1278                                Single
## 1279                                Single
## 1280                                Single
## 1281                                Single
## 1282                                Single
## 1283                                Single
## 1284                                Single
## 1285                                Single
## 1286                               Widowed
## 1287                                Single
## 1288                                Single
## 1289                                Single
## 1290                                Single
## 1291                               Widowed
## 1292                                Single
## 1293                                Single
## 1294                                Single
## 1295                                Single
## 1296                                Single
## 1297                               Widowed
## 1298                                Single
## 1299                               Widowed
## 1300                                Single
## 1301                               Widowed
## 1302                                Single
## 1303                                Single
## 1304                                Single
## 1305                                Single
## 1306                                Single
## 1307                                Single
## 1308                               Widowed
## 1309                                Single
## 1310                                Single
## 1311                                Single
## 1312                                Single
## 1313                                Single
## 1314                                Single
## 1315                                Single
## 1316                                Single
## 1317                                Single
## 1318                                Single
## 1319                                Single
## 1320                                Single
## 1321                                Single
## 1322                                Single
## 1323                                Single
## 1324                                Single
## 1325                                Single
## 1326                                Single
## 1327                                Single
## 1328                                Single
## 1329                                Single
## 1330                                Single
## 1331                                Single
## 1332                                Single
## 1333                                Single
## 1334                                Single
## 1335                                Single
## 1336                                Single
## 1337                                Single
## 1338                                Single
## 1339                                Single
## 1340                                Single
## 1341                                Single
## 1342                                Single
## 1343                                Single
## 1344                                Single
## 1345                                Single
## 1346                                Single
## 1347                                Single
## 1348                                Single
## 1349                                Single
## 1350                                Single
## 1351                                Single
## 1352                               Widowed
## 1353                                Single
## 1354                               Widowed
## 1355                                Single
## 1356                                Single
## 1357                                Single
## 1358                                Single
## 1359                                Single
## 1360                               Widowed
## 1361                                Single
## 1362                                Single
## 1363                                Single
## 1364                                Single
## 1365                                Single
## 1366                               Widowed
## 1367                                Single
## 1368                                Single
## 1369                                Single
## 1370                                Single
## 1371                                Single
## 1372                                Single
## 1373                                Single
## 1374                                Single
## 1375                               Widowed
## 1376                                Single
## 1377                                Single
## 1378                                Single
## 1379                                Single
## 1380                                Single
## 1381                                Single
## 1382                                Single
## 1383                                Single
## 1384                                Single
## 1385                                Single
## 1386                                Single
## 1387                                Single
## 1388                                Single
## 1389                               Widowed
## 1390                                Single
## 1391                                Single
## 1392                                Single
## 1393                                Single
## 1394                                Single
## 1395                                Single
## 1396                                Single
## 1397                                Single
## 1398                                Single
## 1399                                Single
## 1400                                Single
## 1401                                Single
## 1402                                Single
## 1403                                Single
## 1404                                Single
## 1405                               Widowed
## 1406                                Single
## 1407                                Single
## 1408                                Single
## 1409                                Single
## 1410                                Single
## 1411                                Single
## 1412                                Single
## 1413                                Single
## 1414                                Single
## 1415                                Single
## 1416                                Single
## 1417                                Single
## 1418                                Single
## 1419                                Single
## 1420                                Single
## 1421                                Single
## 1422                               Widowed
## 1423                                Single
## 1424                                Single
## 1425                                Single
## 1426                                Single
## 1427                                Single
## 1428                                Single
## 1429                                Single
## 1430                                Single
## 1431                                Single
## 1432                                Single
## 1433                                Single
## 1434                                Single
## 1435                                Single
## 1436                                Single
## 1437                                Single
## 1438                                Single
## 1439                                Single
## 1440                               Widowed
## 1441                                Single
## 1442                                Single
## 1443                                Single
## 1444                                Single
## 1445                                Single
## 1446                                Single
## 1447                                Single
## 1448                                Single
## 1449                                Single
## 1450                                Single
## 1451                                Single
## 1452                                Single
## 1453                                Single
## 1454                                Single
## 1455                                Single
## 1456                                Single
## 1457                                Single
## 1458                                Single
## 1459                                Single
## 1460                                Single
## 1461                               Widowed
## 1462                                Single
## 1463                                Single
## 1464                                Single
## 1465                                Single
## 1466                                Single
## 1467                                Single
## 1468                                Single
## 1469                                Single
## 1470                               Widowed
## 1471                                Single
## 1472                                Single
## 1473                                Single
## 1474                                Single
## 1475                                Single
## 1476                                Single
## 1477                                Single
## 1478                                Single
## 1479                                Single
## 1480                                Single
## 1481                                Single
## 1482                                Single
## 1483                                Single
## 1484                                Single
## 1485                                Single
## 1486                               Widowed
## 1487                                Single
## 1488                                Single
## 1489                                Single
## 1490                               Widowed
## 1491                                Single
## 1492                                Single
## 1493                                Single
## 1494                                Single
## 1495                                Single
## 1496                               Widowed
## 1497                                Single
## 1498                                Single
## 1499                                Single
## 1500                                Single
## 1501                                Single
## 1502                               Widowed
## 1503                                Single
## 1504                               Widowed
## 1505                                Single
## 1506                                Single
## 1507                                Single
## 1508                                Single
## 1509                                Single
## 1510                                Single
## 1511                                Single
## 1512                               Widowed
## 1513                                Single
## 1514                                Single
## 1515                                Single
## 1516                                Single
## 1517                                Single
## 1518                                Single
## 1519                               Widowed
## 1520                                Single
## 1521                                Single
## 1522                                Single
## 1523                                Single
## 1524                                Single
## 1525                                Single
## 1526                                Single
## 1527                                Single
## 1528                                Single
## 1529                                Single
## 1530                                Single
## 1531                                Single
## 1532                                Single
## 1533                                Single
## 1534                                Single
## 1535                                Single
## 1536                                Single
## 1537                                Single
## 1538                                Single
## 1539                                Single
## 1540                                Single
## 1541                                Single
## 1542                                Single
## 1543                                Single
## 1544                                Single
## 1545                                Single
## 1546                                Single
## 1547                                Single
## 1548                                Single
## 1549                               Widowed
## 1550                                Single
## 1551                                Single
## 1552                                Single
## 1553                                Single
## 1554                                Single
## 1555                                Single
## 1556                                Single
## 1557                                Single
## 1558                                Single
## 1559                                Single
## 1560                               Widowed
## 1561                               Widowed
## 1562                                Single
## 1563                               Widowed
## 1564                                Single
## 1565                                Single
## 1566                                Single
## 1567                                Single
## 1568                               Widowed
## 1569                                Single
## 1570                                Single
## 1571                                Single
## 1572                                Single
## 1573                                Single
## 1574                                Single
## 1575                                Single
## 1576                                Single
## 1577                                Single
## 1578                                Single
## 1579                                Single
## 1580                                Single
## 1581                                Single
## 1582                                Single
## 1583                                Single
## 1584                                Single
## 1585                                Single
## 1586                                Single
## 1587                                Single
## 1588                                Single
## 1589                                Single
## 1590                               Widowed
## 1591                                Single
## 1592                                Single
## 1593                                Single
## 1594                                Single
## 1595                                Single
## 1596                                Single
## 1597                               Widowed
## 1598                                Single
## 1599                                Single
## 1600                                Single
## 1601                                Single
## 1602                                Single
## 1603                                Single
## 1604                                Single
## 1605                                Single
## 1606                                Single
## 1607                                Single
## 1608                               Widowed
## 1609                                Single
## 1610                                Single
## 1611                                Single
## 1612                                Single
## 1613                                Single
## 1614                                Single
## 1615                                Single
## 1616                                Single
## 1617                                Single
## 1618                                Single
## 1619                                Single
## 1620                                Single
## 1621                                Single
## 1622                               Widowed
## 1623                                Single
## 1624                                Single
## 1625                                Single
## 1626                                Single
## 1627                               Widowed
## 1628                                Single
## 1629                                Single
## 1630                                Single
## 1631                                Single
## 1632                                Single
## 1633                                Single
## 1634                                Single
## 1635                                Single
## 1636                                Single
## 1637                                Single
## 1638                                Single
## 1639                                Single
## 1640                                Single
## 1641                                Single
## 1642                                Single
## 1643                                Single
## 1644                                Single
## 1645                                Single
## 1646                               Widowed
## 1647                                Single
## 1648                                Single
## 1649                                Single
## 1650                                Single
## 1651                                Single
## 1652                                Single
## 1653                               Widowed
## 1654                                Single
## 1655                                Single
## 1656                                Single
## 1657                                Single
## 1658                                Single
## 1659                                Single
## 1660                                Single
## 1661                                Single
## 1662                                Single
## 1663                                Single
## 1664                                Single
## 1665                                Single
## 1666                                Single
## 1667                                Single
## 1668                                Single
## 1669                                Single
## 1670                                Single
## 1671                                Single
## 1672                                Single
## 1673                                Single
## 1674                                Single
## 1675                                Single
## 1676                                Single
## 1677                                Single
## 1678                                Single
## 1679                                Single
## 1680                                Single
## 1681                                Single
## 1682                                Single
## 1683                                Single
## 1684                                Single
## 1685                                Single
## 1686                                Single
## 1687                                Single
## 1688                                Single
## 1689                                Single
## 1690                                Single
## 1691                                Single
## 1692                               Widowed
## 1693                                Single
## 1694                                Single
## 1695                                Single
## 1696                                Single
## 1697                               Widowed
## 1698                               Widowed
## 1699                                Single
## 1700                                Single
## 1701                               Widowed
## 1702                                Single
## 1703                                Single
## 1704                                Single
## 1705                                Single
## 1706                                Single
## 1707                                Single
## 1708                                Single
## 1709                                Single
## 1710                                Single
## 1711                                Single
## 1712                                Single
## 1713                                Single
## 1714                                Single
## 1715                                Single
## 1716                                Single
## 1717                                Single
## 1718                                Single
## 1719                                Single
## 1720                                Single
## 1721                                Single
## 1722                               Widowed
## 1723                                Single
## 1724                                Single
## 1725                                Single
## 1726                                Single
## 1727                                Single
## 1728                                Single
## 1729                               Widowed
## 1730                                Single
## 1731                                Single
## 1732                                Single
## 1733                                Single
## 1734                                Single
## 1735                                Single
## 1736                                Single
## 1737                                Single
## 1738                                Single
## 1739                                Single
## 1740                                Single
## 1741                                Single
## 1742                               Widowed
## 1743                                Single
## 1744                                Single
## 1745                                Single
## 1746                                Single
## 1747                                Single
## 1748                               Widowed
## 1749                                Single
## 1750                                Single
## 1751                                Single
## 1752                                Single
## 1753                                Single
## 1754                                Single
## 1755                                Single
## 1756                                Single
## 1757                                Single
## 1758                               Widowed
## 1759                                Single
## 1760                                Single
## 1761                               Widowed
## 1762                                Single
## 1763                                Single
## 1764                                Single
## 1765                                Single
## 1766                                Single
## 1767                               Widowed
## 1768                                Single
## 1769                                Single
## 1770                                Single
## 1771                                Single
## 1772                                Single
## 1773                                Single
## 1774                                Single
## 1775                                Single
## 1776                                Single
## 1777                                Single
## 1778                                Single
## 1779                                Single
## 1780                                Single
## 1781                                Single
## 1782                               Widowed
## 1783                                Single
## 1784                                Single
## 1785                               Widowed
## 1786                                Single
## 1787                                Single
## 1788                                Single
## 1789                                Single
## 1790                               Widowed
## 1791                                Single
## 1792                                Single
## 1793                               Widowed
## 1794                                Single
## 1795                                Single
## 1796                                Single
## 1797                                Single
## 1798                                Single
## 1799                                Single
## 1800                                Single
## 1801                               Widowed
## 1802                               Widowed
## 1803                               Widowed
## 1804                                Single
## 1805                                Single
## 1806                                Single
## 1807                                Single
## 1808                                Single
## 1809                                Single
## 1810                                Single
## 1811                                Single
## 1812                                Single
## 1813                                Single
## 1814                                Single
## 1815                                Single
## 1816                                Single
## 1817                                Single
## 1818                                Single
## 1819                                Single
## 1820                                Single
## 1821                                Single
## 1822                                Single
## 1823                                Single
## 1824                                Single
## 1825                               Widowed
## 1826                                Single
## 1827                                Single
## 1828                                Single
## 1829                                Single
## 1830                                Single
## 1831                                Single
## 1832                               Widowed
## 1833                                Single
## 1834                                Single
## 1835                                Single
## 1836                                Single
## 1837                                Single
## 1838                                Single
## 1839                                Single
## 1840                                Single
## 1841                                Single
## 1842                                Single
## 1843                                Single
## 1844                                Single
## 1845                                Single
## 1846                                Single
## 1847                                Single
## 1848                                Single
## 1849                                Single
## 1850                                Single
## 1851                                Single
## 1852                                Single
## 1853                                Single
## 1854                                Single
## 1855                                Single
## 1856                                Single
## 1857                                Single
## 1858                                Single
## 1859                                Single
## 1860                                Single
## 1861                                Single
## 1862                               Widowed
## 1863                                Single
## 1864                                Single
## 1865                                Single
## 1866                                Single
## 1867                               Widowed
## 1868                                Single
## 1869                                Single
## 1870                                Single
## 1871                                Single
## 1872                                Single
## 1873                                Single
## 1874                                Single
## 1875                                Single
## 1876                                Single
## 1877                                Single
## 1878                               Widowed
## 1879                                Single
## 1880                                Single
## 1881                                Single
## 1882                                Single
## 1883                                Single
## 1884                                Single
## 1885                                Single
## 1886                                Single
## 1887                                Single
## 1888                                Single
## 1889                                Single
## 1890                                Single
## 1891                               Widowed
## 1892                                Single
## 1893                                Single
## 1894                                Single
## 1895                                Single
## 1896                                Single
## 1897                                Single
## 1898                                Single
## 1899                                Single
## 1900                                Single
## 1901                                Single
## 1902                                Single
## 1903                                Single
## 1904                                Single
## 1905                                Single
## 1906                               Widowed
## 1907                                Single
## 1908                                Single
## 1909                                Single
## 1910                                Single
## 1911                                Single
## 1912                                Single
## 1913                                Single
## 1914                                Single
## 1915                                Single
## 1916                                Single
## 1917                                Single
## 1918                               Widowed
## 1919                                Single
## 1920                                Single
## 1921                                Single
## 1922                                Single
## 1923                                Single
## 1924                                Single
## 1925                                Single
## 1926                               Widowed
## 1927                               Widowed
## 1928                                Single
## 1929                               Widowed
## 1930                                Single
## 1931                                Single
## 1932                                Single
## 1933                                Single
## 1934                                Single
## 1935                                Single
## 1936                                Single
## 1937                                Single
## 1938                                Single
## 1939                                Single
## 1940                                Single
## 1941                               Widowed
## 1942                                Single
## 1943                               Widowed
## 1944                                Single
## 1945                                Single
## 1946                                Single
## 1947                                Single
## 1948                                Single
## 1949                                Single
## 1950                                Single
## 1951                                Single
## 1952                                Single
## 1953                               Widowed
## 1954                                Single
## 1955                               Widowed
## 1956                                Single
## 1957                                Single
## 1958                                Single
## 1959                               Widowed
## 1960                                Single
## 1961                                Single
## 1962                                Single
## 1963                                Single
## 1964                                Single
## 1965                                Single
## 1966                                Single
## 1967                                Single
## 1968                                Single
## 1969                                Single
## 1970                                Single
## 1971                                Single
## 1972                                Single
## 1973                                Single
## 1974                                Single
## 1975                                Single
## 1976                                Single
## 1977                                Single
## 1978                                Single
## 1979                                Single
## 1980                                Single
## 1981                                Single
## 1982                                Single
## 1983                                Single
## 1984                                Single
## 1985                                Single
## 1986                                Single
## 1987                                Single
## 1988                                Single
## 1989                                Single
## 1990                                Single
## 1991                                Single
## 1992                                Single
## 1993                                Single
## 1994                                Single
## 1995                                Single
## 1996                                Single
## 1997                               Widowed
## 1998                                Single
## 1999                                Single
## 2000                                Single
## 2001                                Single
## 2002                               Widowed
## 2003                                Single
## 2004                                Single
## 2005                                Single
## 2006                                Single
## 2007                               Widowed
## 2008                                Single
## 2009                                Single
## 2010                                Single
## 2011                                Single
## 2012                               Widowed
## 2013                                Single
## 2014                                Single
## 2015                                Single
## 2016                                Single
## 2017                                Single
## 2018                                Single
## 2019                                Single
## 2020                                Single
## 2021                                Single
## 2022                                Single
## 2023                                Single
## 2024                                Single
## 2025                                Single
## 2026                                Single
## 2027                                Single
## 2028                                Single
## 2029                                Single
## 2030                                Single
## 2031                                Single
## 2032                                Single
## 2033                                Single
## 2034                                Single
## 2035                                Single
## 2036                                Single
## 2037                                Single
## 2038                                Single
## 2039                                Single
## 2040                                Single
## 2041                                Single
## 2042                                Single
## 2043                                Single
## 2044                                Single
## 2045                                Single
## 2046                                Single
## 2047                                Single
## 2048                                Single
## 2049                               Widowed
## 2050                                Single
## 2051                                Single
## 2052                               Widowed
## 2053                               Widowed
## 2054                                Single
## 2055                                Single
## 2056                                Single
## 2057                                Single
## 2058                                Single
## 2059                               Widowed
## 2060                                Single
## 2061                                Single
## 2062                                Single
## 2063                                Single
## 2064                                Single
## 2065                                Single
## 2066                                Single
## 2067                               Widowed
## 2068                                Single
## 2069                                Single
## 2070                                Single
## 2071                                Single
## 2072                                Single
## 2073                                Single
## 2074                                Single
## 2075                                Single
## 2076                               Widowed
## 2077                                Single
## 2078                                Single
## 2079                                Single
## 2080                                Single
## 2081                                Single
## 2082                                Single
## 2083                                Single
## 2084                                Single
## 2085                                Single
## 2086                                Single
## 2087                                Single
## 2088                                Single
## 2089                                Single
## 2090                                Single
## 2091                                Single
## 2092                                Single
## 2093                                Single
## 2094                                Single
## 2095                                Single
## 2096                                Single
## 2097                                Single
## 2098                                Single
## 2099                                Single
## 2100                               Widowed
## 2101                                Single
## 2102                                Single
## 2103                                Single
## 2104                                Single
## 2105                                Single
## 2106                                Single
## 2107                               Widowed
## 2108                                Single
## 2109                                Single
## 2110                               Widowed
## 2111                                Single
## 2112                                Single
## 2113                               Widowed
## 2114                                Single
## 2115                                Single
## 2116                                Single
## 2117                                Single
## 2118                                Single
## 2119                                Single
## 2120                                Single
## 2121                                Single
## 2122                               Widowed
## 2123                                Single
## 2124                                Single
## 2125                               Widowed
## 2126                                Single
## 2127                                Single
## 2128                                Single
## 2129                                Single
## 2130                               Widowed
## 2131                                Single
## 2132                                Single
## 2133                                Single
## 2134                                Single
## 2135                                Single
## 2136                                Single
## 2137                                Single
## 2138                                Single
## 2139                                Single
## 2140                                Single
## 2141                                Single
## 2142                                Single
## 2143                                Single
## 2144                                Single
## 2145                               Widowed
## 2146                                Single
## 2147                                Single
## 2148                                Single
## 2149                                Single
## 2150                                Single
## 2151                                Single
## 2152                                Single
## 2153                                Single
## 2154                                Single
## 2155                                Single
## 2156                                Single
## 2157                                Single
## 2158                                Single
## 2159                               Widowed
## 2160                                Single
## 2161                                Single
## 2162                                Single
## 2163                                Single
## 2164                                Single
## 2165                                Single
## 2166                                Single
## 2167                                Single
## 2168                                Single
## 2169                                Single
## 2170                                Single
## 2171                                Single
## 2172                                Single
## 2173                                Single
## 2174                                Single
## 2175                                Single
## 2176                                Single
## 2177                               Widowed
## 2178                                Single
## 2179                                Single
## 2180                                Single
## 2181                               Widowed
## 2182                                Single
## 2183                                Single
## 2184                                Single
## 2185                               Widowed
## 2186                                Single
## 2187                                Single
## 2188                                Single
## 2189                                Single
## 2190                                Single
## 2191                                Single
## 2192                                Single
## 2193                               Widowed
## 2194                                Single
## 2195                                Single
## 2196                                Single
## 2197                                Single
## 2198                               Widowed
## 2199                                Single
## 2200                                Single
## 2201                                Single
## 2202                                Single
## 2203                               Widowed
## 2204                                Single
## 2205                                Single
## 2206                                Single
## 2207                                Single
## 2208                                Single
## 2209                                Single
## 2210                                Single
## 2211                                Single
## 2212                                Single
## 2213                                Single
## 2214                                Single
## 2215                                Single
## 2216                                Single
## 2217                                Single
## 2218                                Single
## 2219                                Single
## 2220                                Single
## 2221                                Single
## 2222                                Single
## 2223                                Single
## 2224                                Single
## 2225                                Single
## 2226                                Single
## 2227                                Single
## 2228                                Single
## 2229                                Single
## 2230                                Single
## 2231                                Single
## 2232                                Single
## 2233                                Single
## 2234                                Single
## 2235                                Single
## 2236                                Single
## 2237                                Single
## 2238                               Widowed
## 2239                                Single
## 2240                                Single
## 2241                               Widowed
## 2242                                Single
## 2243                                Single
## 2244                                Single
## 2245                                Single
## 2246                               Widowed
## 2247                                Single
## 2248                                Single
## 2249                               Widowed
## 2250                                Single
## 2251                                Single
## 2252                                Single
## 2253                                Single
## 2254                               Widowed
## 2255                                Single
## 2256                                Single
## 2257                                Single
## 2258                                Single
## 2259                                Single
## 2260                                Single
## 2261                                Single
## 2262                                Single
## 2263                                Single
## 2264                                Single
## 2265                               Widowed
## 2266                                Single
## 2267                                Single
## 2268                                Single
## 2269                                Single
## 2270                                Single
## 2271                               Widowed
## 2272                                Single
## 2273                                Single
## 2274                                Single
## 2275                                Single
## 2276                                Single
## 2277                                Single
## 2278                               Widowed
## 2279                               Widowed
## 2280                                Single
## 2281                                Single
## 2282                                Single
## 2283                                Single
## 2284                                Single
## 2285                                Single
## 2286                                Single
## 2287                                Single
## 2288                                Single
## 2289                                Single
## 2290                                Single
## 2291                                Single
## 2292                                Single
## 2293                                Single
## 2294                                Single
## 2295                                Single
## 2296                                Single
## 2297                                Single
## 2298                                Single
## 2299                                Single
## 2300                                Single
## 2301                                Single
## 2302                                Single
## 2303                                Single
## 2304                                Single
## 2305                                Single
## 2306                                Single
## 2307                                Single
## 2308                               Widowed
## 2309                                Single
## 2310                                Single
## 2311                                Single
## 2312                                Single
## 2313                                Single
## 2314                                Single
## 2315                                Single
## 2316                                Single
## 2317                                Single
## 2318                                Single
## 2319                                Single
## 2320                                Single
## 2321                               Widowed
## 2322                                Single
## 2323                                Single
## 2324                                Single
## 2325                                Single
## 2326                                Single
## 2327                                Single
## 2328                                Single
## 2329                                Single
## 2330                                Single
## 2331                                Single
## 2332                                Single
## 2333                                Single
## 2334                                Single
## 2335                                Single
## 2336                                Single
## 2337                                Single
## 2338                                Single
## 2339                                Single
## 2340                                Single
## 2341                               Widowed
## 2342                                Single
## 2343                               Widowed
## 2344                                Single
## 2345                                Single
## 2346                                Single
## 2347                                Single
## 2348                               Widowed
## 2349                                Single
## 2350                                Single
## 2351                                Single
## 2352                                Single
## 2353                                Single
## 2354                                Single
## 2355                                Single
## 2356                                Single
## 2357                                Single
## 2358                                Single
## 2359                                Single
## 2360                                Single
## 2361                                Single
## 2362                                Single
## 2363                               Widowed
## 2364                                Single
## 2365                                Single
## 2366                               Widowed
## 2367                               Widowed
## 2368                                Single
## 2369                                Single
## 2370                                Single
## 2371                                Single
## 2372                                Single
## 2373                                Single
## 2374                                Single
## 2375                                Single
## 2376                                Single
## 2377                                Single
## 2378                               Widowed
## 2379                                Single
## 2380                                Single
## 2381                               Widowed
## 2382                                Single
## 2383                                Single
## 2384                                Single
## 2385                                Single
## 2386                                Single
## 2387                                Single
## 2388                                Single
## 2389                                Single
## 2390                               Widowed
## 2391                                Single
## 2392                                Single
## 2393                                Single
## 2394                                Single
## 2395                                Single
## 2396                                Single
## 2397                                Single
## 2398                                Single
## 2399                                Single
## 2400                                Single
## 2401                                Single
## 2402                                Single
## 2403                                Single
## 2404                               Widowed
## 2405                                Single
## 2406                                Single
## 2407                                Single
## 2408                                Single
## 2409                                Single
## 2410                                Single
## 2411                                Single
## 2412                               Widowed
## 2413                                Single
## 2414                               Widowed
## 2415                                Single
## 2416                                Single
## 2417                                Single
## 2418                                Single
## 2419                               Widowed
## 2420                                Single
## 2421                                Single
## 2422                                Single
## 2423                                Single
## 2424                                Single
## 2425                                Single
## 2426                                Single
## 2427                                Single
## 2428                                Single
## 2429                                Single
## 2430                                Single
## 2431                                Single
## 2432                                Single
## 2433                                Single
## 2434                                Single
## 2435                                Single
## 2436                               Widowed
## 2437                                Single
## 2438                                Single
## 2439                                Single
## 2440                                Single
## 2441                                Single
## 2442                                Single
## 2443                                Single
## 2444                                Single
## 2445                                Single
## 2446                                Single
## 2447                                Single
## 2448                                Single
## 2449                                Single
## 2450                                Single
## 2451                                Single
## 2452                                Single
## 2453                                Single
## 2454                               Widowed
## 2455                                Single
## 2456                                Single
## 2457                                Single
## 2458                                Single
## 2459                                Single
## 2460                                Single
## 2461                                Single
## 2462                               Widowed
## 2463                                Single
## 2464                                Single
## 2465                                Single
## 2466                                Single
## 2467                               Widowed
## 2468                                Single
## 2469                                Single
## 2470                                Single
## 2471                                Single
## 2472                                Single
## 2473                                Single
## 2474                                Single
## 2475                                Single
## 2476                                Single
## 2477                                Single
## 2478                                Single
## 2479                                Single
## 2480                                Single
## 2481                                Single
## 2482                                Single
## 2483                                Single
## 2484                                Single
## 2485                                Single
## 2486                                Single
## 2487                                Single
## 2488                                Single
## 2489                                Single
## 2490                                Single
## 2491                                Single
## 2492                               Widowed
## 2493                               Widowed
## 2494                                Single
## 2495                                Single
## 2496                                Single
## 2497                                Single
## 2498                                Single
## 2499                                Single
##  [ reached 'max' / getOption("max.print") -- omitted 4595 rows ]
### Q4: Highest level of education
training<-training%>%
    mutate(if_else(Q4==1,"No formal education","Some primary"),
          if_else(Q4==3,"Primary completed","Post primary technical training"),
          if_else(Q4==5,"Some secondary","University or other thing"),
          if_else(Q4==7,"Dont know","No formal education"))
training
##        ID Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8_1 Q8_2 Q8_3 Q8_4 Q8_5 Q8_6 Q8_7 Q8_8
## 1    5086 98  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 2    1258 40  1  1  3  5  1  1    1    0    0    0    0    0    0    0
## 3     331 18  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 4    6729 50  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 5    8671 34  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 6    5462 35  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 7    4886 31  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 8     621 23  2  4  5  5  2  1    0    0    1    0    0    0    0    0
## 9    8302 56  2  3  3  3  2  2    0    1    0    1    0    1    0    0
## 10   4704 37  2  1  3  3  2  1    0    1    0    0    0    0    0    1
## 11   2758 18  2  4  5  5  2  1    0    0    0    0    0    0    0    0
## 12   2536 29  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 13   8863 28  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 14   5469 17  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 15   3543 22  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 16   6554 53  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 17   7769 21  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 18   4226 24  2  4  3  1  1  1    0    1    0    0    0    0    0    0
## 19   6997 38  1  4  2  2  2  2    0    1    0    1    0    0    0    0
## 20    987 30  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 21   5576 27  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 22   2272 42  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 23   8277 44  1  1  1  3  2  2    0    1    0    1    0    0    0    0
## 24   3007 76  2  1  1  1  1  2    0    0    0    1    0    0    0    0
## 25    915 19  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 26   1335 29  2  1  3  5  2  2    0    0    1    0    0    0    0    0
## 27   1251 20  2  4  3  4  2  1    0    0    0    1    0    0    0    0
## 28   5036 26  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 29    599 44  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 30    794 32  2  4  2  5  2  1    0    1    0    0    0    0    0    0
## 31   3158 53  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 32   3959 46  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 33   1241 35  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 34   4986 47  1  2  3  1  1  1    0    1    0    0    0    0    0    0
## 35   4109 20  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 36   8121 86  1  1  1  3  1  2    0    1    0    0    0    0    0    0
## 37   3895 18  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 38   8054 19  1  2  2  3  2  1    0    0    0    1    0    0    0    0
## 39   8023 31  2  1  3  5  2  1    0    1    0    1    0    0    0    0
## 40   6933 30  1  1  2  5  2  2    0    1    0    0    0    0    0    0
## 41   7852 17  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 42   6063 30  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 43    755 37  2  1  6  5  2  1    0    1    0    1    0    0    0    0
## 44   6445 38  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 45   8548 35  1  4  3  4  2  2    0    1    0    0    0    0    0    0
## 46   1549 20  2  2  3  3  2  2    1    0    0    0    0    0    0    0
## 47   6617 29  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 48   8467 35  1  1  3  1  2  1    1    1    0    1    0    0    0    0
## 49   4116 46  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 50   8125 25  1  1  3  4  2  2    0    1    0    0    0    0    0    0
## 51   1044 31  2  1  1  2  2  2    0    1    0    0    0    1    0    0
## 52   2535 21  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 53   8950 39  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 54   6099 23  1  1  2  3  2  1    0    1    0    0    0    0    0    0
## 55   5607 21  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 56   8734 25  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 57   4734 72  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 58   7776 65  2  2  1  1  2  1    0    1    0    0    0    0    0    1
## 59   9367 54  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 60   3423 32  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 61   2878 24  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 62   2356 24  2  4  7  1  2  1    0    0    0    0    0    0    0    0
## 63    229 34  1  1  6  3  1  1    1    0    0    0    0    0    0    0
## 64   3406 46  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 65    771 31  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 66    580 26  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 67   6163 45  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 68   6212 31  1  1  6  1  2  1    0    0    1    0    0    0    0    0
## 69   8574 23  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 70   8278 31  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 71   3919 38  2  1  1  5  2  2    0    0    0    0    0    0    0    0
## 72   8883 45  1  1  6  1  2  1    1    1    0    1    0    0    0    0
## 73   5677 27  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 74   9209 32  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 75   7050 25  1  1  6  1  1  1    0    1    0    1    0    0    0    0
## 76   1531 26  1  2  7  5  1  1    0    0    1    1    0    0    0    0
## 77   7922 30  1  4  3  3  2  2    0    1    0    1    0    0    0    0
## 78   4397 18  1  4  1  3  2  1    0    1    0    1    0    0    0    0
## 79   3170 28  1  2  3  4  2  1    0    1    0    1    0    0    0    0
## 80   6376 35  2  1  5  1  2  2    0    0    0    0    0    0    0    0
## 81   5472 50  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 82   9138 30  2  2  3  3  2  1    0    1    0    1    0    0    0    0
## 83   6020 48  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 84   8658 23  2  1  3  4  1  2    0    0    0    1    0    0    0    0
## 85    919 27  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 86   6035 33  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 87   6925 33  1  4  2  5  2  1    0    0    0    0    0    0    0    0
## 88   5146 57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 89   1169 42  1  1  7  1  2  1    1    0    0    0    0    0    0    0
## 90   3449 30  1  1  3  5  2  2    0    1    0    0    0    0    0    0
## 91   5307 30  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 92   1354 29  2  1  4  1  1  1    0    0    1    1    0    0    0    0
## 93    393 25  2  4  3  5  2  1    0    1    0    0    0    0    0    0
## 94    558 48  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 95   1624 29  2  2  3  5  2  2    0    1    0    1    0    0    0    0
## 96    151 44  2  2  3  5  1  1    0    1    0    0    0    0    0    0
## 97   1515 40  1  1  1  3  2  2    0    0    0    1    0    0    0    0
## 98   9233 21  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 99   5230 47  1  1  2  1  2  2    0    1    0    0    0    0    0    1
## 100   862 39  1  2  3  3  2  1    0    1    0    1    0    0    0    0
## 101  3874 51  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 102  8078 26  2  3  3  4  2  1    0    1    0    1    0    0    0    0
## 103  3920 21  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 104  9188 48  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 105  4551 29  2  1  3  4  1  2    0    1    0    0    0    0    0    0
## 106  2620 69  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 107  3975 58  2  2  3  5  2  2    0    1    1    0    0    0    0    0
## 108  1209 36  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 109  3696 19  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 110  2134 51  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 111  9410 65  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 112  8259 53  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 113  4922 52  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 114  4934 60  2  3  1  4  2  1    0    1    0    0    0    0    0    0
## 115  5602 34  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 116   124 50  2  3  3  5  2  1    0    0    0    0    0    0    0    0
## 117  7990 20  2  4  6  3  2  2    0    1    0    0    0    0    0    0
## 118  7735 79  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 119  8847 19  1  4  5  4  2  2    1    0    0    0    0    0    0    0
## 120   804 17  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 121  8065 48  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 122  5901 30  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 123  2196 33  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 124   187 30  2  2  3  4  2  1    0    0    1    0    0    0    0    0
## 125  8676 17  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 126  3656 22  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 127  6728 20  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 128  7751 57  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 129  2448 30  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 130  1426 21  2  1  5  5  2  1    0    0    1    0    0    0    0    0
## 131   966 36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 132  5400 30  2  1  6  4  1  1    1    0    0    0    0    0    0    0
## 133  2666 74  2  3  3  1  2  2    0    0    0    0    0    0    0    0
## 134  2155 70  1  3  2  5  2  2    0    0    0    1    0    0    0    0
## 135  1972 21  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 136  2123 50  2  1  2  1  1  1    0    1    0    1    0    0    0    0
## 137  7064 42  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 138  7074 51  1  1  5  1  2  1    0    1    1    0    1    0    0    0
## 139  8424 25  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 140  4487 66  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 141  3829 32  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 142   190 43  1  1  3  1  1  1    1    0    0    0    0    0    1    0
## 143  1509 42  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 144  8971 25  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 145  1695 22  1  4  7  5  1  1    0    0    0    0    0    0    0    0
## 146  1468 30  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 147  6145 21  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 148  2476 44  2  1  7  2  1  1    0    1    0    0    0    0    0    0
## 149  7818 32  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 150  3421 45  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 151  9328 43  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 152  2149 27  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 153    45 21  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 154   800 34  1  1  2  4  1  2    0    0    0    1    0    0    0    0
## 155  2881 71  2  1  3  5  2  1    0    0    0    0    0    0    1    0
## 156  2324 53  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 157  9069 41  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 158  5106 18  2  4  2  4  2  1    0    0    0    0    0    0    0    0
## 159  2839 30  2  2  3  1  2  2    0    0    0    1    0    0    0    0
## 160  9007 43  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 161   528 18  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 162   364 27  1  1  6  4  1  1    0    1    0    1    0    0    0    0
## 163  1826 42  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 164  8094 28  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 165  2292 23  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 166  3953 36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 167  8297 26  1  4  5  4  2  1    1    0    0    0    0    0    0    0
## 168  3351 40  2  2  1  4  2  2    0    1    0    1    0    0    0    0
## 169  1906 16  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 170  1314 44  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 171  4784 49  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 172  2268 21  2  1  2  3  1  2    0    1    0    0    0    0    0    0
## 173  5930 26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 174  3458 40  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 175   638 23  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 176  4996 45  1  1  6  1  1  1    0    0    1    0    0    0    0    0
## 177  3626 17  1  4  2  5  2  1    0    0    0    0    0    0    0    0
## 178  1208 35  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 179  1853 47  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 180  1454 47  2  2  3  1  2  1    0    0    1    1    0    0    0    0
## 181   148 22  2  4  3  5  2  1    1    1    0    0    0    0    0    0
## 182  9155 56  1  1  3  2  2  1    0    1    0    0    0    0    0    0
## 183  5000 20  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 184  8828 30  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 185  7455 30  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 186  1541 82  1  1  1  3  2  2    0    1    0    1    0    0    0    0
## 187  4376 50  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 188  6255 45  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 189  7051 34  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 190  1653 39  1  1  6  2  1  1    0    1    0    0    0    0    0    0
## 191  5883 30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 192  5113 26  2  1  5  1  2  2    0    0    0    0    0    0    0    0
## 193  4405 24  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 194  3924 45  2  4  2  1  1  1    0    1    0    0    0    0    0    0
## 195  6642 19  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 196  8330 21  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 197  2550 47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 198  2937 28  1  1  2  4  1  1    0    1    0    0    0    0    0    0
## 199   141 25  1  1  3  5  2  1    1    1    0    0    0    0    0    0
## 200  3657 64  2  3  2  1  2  2    0    1    1    0    0    0    0    0
## 201  8445 57  1  1  2  3  1  1    0    1    0    0    0    0    0    0
## 202  2996 48  2  1  3  2  2  1    0    1    0    1    0    0    0    0
## 203  7040 66  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 204  4660 23  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 205  8846 55  1  3  3  1  2  1    0    1    0    0    0    0    0    0
## 206  3780 47  1  1  3  3  1  2    0    1    0    0    0    0    0    0
## 207  8155 25  2  1  1  2  2  2    0    0    0    1    0    0    0    0
## 208  3807 22  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 209  3383 37  1  4  2  5  2  2    0    0    0    1    0    0    0    0
## 210  7547 42  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 211   717 50  2  1  2  1  1  1    0    1    0    0    1    0    0    0
## 212   934 43  2  1  7  5  2  1    1    0    0    0    0    0    0    0
## 213  1458 45  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 214  2534 38  2  2  1  5  2  2    0    0    0    1    0    0    0    0
## 215  8102 18  1  4  2  3  2  1    0    1    0    1    0    0    0    0
## 216  2102 25  1  1  2  3  2  1    0    1    0    0    0    0    0    0
## 217  6050 25  2  2  2  5  2  1    0    0    0    0    0    0    0    0
## 218   110 34  1  1  1  4  1  1    0    0    0    1    0    0    0    0
## 219  6151 30  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 220  1629 25  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 221  4434 34  1  1  2  1  1  1    0    1    0    1    0    0    0    0
## 222  7915 36  2  1  2  1  2  2    0    1    1    0    0    0    0    1
## 223  5285 37  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 224   316 70  2  3  2  1  2  2    0    0    0    0    0    0    0    1
## 225  6061 51  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 226  1802 26  1  2  2  1  2  1    0    1    0    1    0    0    0    0
## 227  8761 78  2  2  1  1  2  1    0    1    0    0    0    0    0    0
## 228  9412 59  2  1  1  2  1  1    0    0    0    1    0    0    0    0
## 229  2082 28  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 230  1637 64  2  1  1  1  1  2    0    1    0    1    0    0    0    0
## 231   181 16  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 232  7742 30  1  3  6  3  2  1    0    0    0    1    0    0    0    0
## 233  4277 45  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 234  7527 65  1  2  3  1  1  2    0    1    0    0    0    0    0    1
## 235  1439 41  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 236  4197 30  2  1  3  5  1  1    0    1    1    0    0    0    0    0
## 237  1828 50  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 238  1581 27  1  1  3  3  2  2    0    0    0    1    0    0    0    0
## 239  1878 53  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 240  8408 22  2  1  5  3  2  1    0    0    1    0    0    0    0    0
## 241  4630 47  1  2  3  5  2  1    0    1    0    0    0    0    0    0
## 242  7977 19  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 243  8955 27  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 244  7287 26  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 245   677 33  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 246  7590 55  1  1  4  5  2  1    0    0    0    1    0    0    0    0
## 247  8656 27  2  1  5  4  1  1    0    0    1    0    0    0    0    0
## 248  7726 36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 249  4023 42  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 250  4684 45  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 251  6066 42  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 252  4688 33  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 253  4942 51  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 254  8257 80  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 255  5025 18  1  4  5  3  2  1    0    1    0    0    0    0    0    0
## 256  9181 50  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 257  6316 94  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 258  2109 24  1  2  3  5  2  1    0    1    0    0    0    0    0    0
## 259  3892 25  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 260  2890 51  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 261  4833 23  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 262  8256 16  2  4  4  3  2  2    0    0    0    0    0    0    0    0
## 263   219 22  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 264  8740 53  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 265  6333 30  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 266  1719 20  1  4  3  3  2  1    0    0    0    0    0    0    0    0
## 267  2116 25  1  2  3  1  2  1    0    1    0    1    0    0    0    0
## 268  2002 35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 269  3532 27  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 270  8170 35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 271  1757 26  2  1  1  5  2  1    0    1    0    0    0    0    0    0
## 272  3792 20  1  4  3  5  2  2    0    0    0    1    0    0    0    0
## 273  8243 29  2  4  7  5  1  1    1    0    0    0    0    0    0    0
## 274  4495 65  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 275  7746 17  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 276  1350 24  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 277  8532 48  1  1  3  1  2  1    0    0    0    0    0    0    0    0
## 278  3965 48  1  3  3  1  2  2    0    0    0    1    0    0    0    0
## 279   106 30  1  1  6  5  1  1    0    0    0    1    0    0    0    0
## 280  9131 40  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 281  9134 40  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 282  7188 31  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 283  5979 29  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 284   560 32  1  1  1  1  2  1    0    0    0    1    0    0    0    0
## 285  3602 38  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 286  5013 72  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 287  1063 22  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 288  8664 55  2  2  1  1  1  2    0    1    0    1    0    0    0    0
## 289  7627 32  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 290  3494 27  1  1  3  3  2  1    1    0    0    0    0    0    0    0
## 291  4927 31  2  1  3  5  1  1    0    0    0    1    0    0    0    0
## 292  7100 18  2  4  3  5  2  2    0    0    0    1    0    0    0    0
## 293   682 41  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 294  8375 42  2  2  3  1  2  2    0    0    0    1    0    0    0    0
## 295  8745 61  2  3  1  3  1  2    0    0    0    1    0    0    0    0
## 296  2750 43  2  2  2  3  2  2    0    1    0    0    0    0    0    0
## 297   249 23  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 298  3538 49  2  2  1  1  2  2    0    0    0    1    0    1    0    0
## 299  4403 18  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 300    51 22  2  4  3  5  2  1    0    0    0    0    0    0    0    0
## 301  9274 32  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 302  1298 32  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 303  7140 30  1  1  7  5  2  1    1    1    0    0    0    0    0    0
## 304  6651 45  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 305  6069 17  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 306  6167 42  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 307  7377 48  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 308  7792 42  2  3  1  3  2  2    0    1    0    0    0    0    0    1
## 309  7512 53  1  1  3  1  2  2    0    1    0    0    1    0    0    0
## 310  8395 80  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 311  4390 23  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 312   253 45  1  1  5  4  1  1    0    0    0    1    0    0    0    0
## 313  4616 36  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 314   656 32  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 315  8624 35  1  1  3  1  1  1    0    1    1    0    0    0    0    0
## 316  8903 24  2  1  6  3  2  1    0    1    1    0    0    0    0    0
## 317  7457 43  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 318  7727 49  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 319   796 18  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 320  6344 61  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 321  1520 60  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 322  4500 35  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 323  3837 43  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 324  7468 42  2  1  6  5  1  1    1    1    0    0    0    0    0    0
## 325  2162 16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 326  6555 30  1  1  4  1  2  2    0    1    0    1    0    0    0    0
## 327  5366 23  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 328  2998 85  2  3  2  4  2  2    0    0    0    0    0    0    0    0
## 329  2436 27  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 330  8620 30  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 331   297 26  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 332  9228 21  1  4  3  5  2  2    0    0    0    0    0    0    0    0
## 333   925 20  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 334  7079 39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 335  7421 57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 336  6451 35  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 337  2213 36  1  1  5  1  2  1    1    0    0    0    0    0    0    0
## 338  3545 25  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 339  5129 30  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 340   805 33  2  1  2  5  1  1    0    0    0    1    0    0    0    0
## 341  4257 33  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 342   474 43  1  1  6  3  2  1    0    1    0    0    0    0    0    0
## 343  8416 20  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 344  8826 20  2  1  6  4  2  2    0    0    0    0    0    0    0    0
## 345  7054 26  1  1  6  3  2  1    0    0    0    1    0    0    0    0
## 346  9161 61  2  2  2  3  2  1    0    1    0    0    0    0    0    0
## 347  2539 90  1  3  2  1  1  2    0    0    0    0    0    0    0    0
## 348  4000 80  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 349  9113 85  2  2  2  5  2  2    0    0    0    1    0    0    0    1
## 350  8920 77  2  3  1  1  1  2    0    1    0    0    0    0    0    0
## 351  7395 24  2  4  3  1  2  1    0    1    0    0    0    0    0    0
## 352  9126 34  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 353  6301 26  2  4  7  4  2  1    1    0    0    0    0    0    0    0
## 354  3951 61  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 355  1085 28  1  2  1  4  2  1    0    0    1    1    0    0    0    0
## 356  1623 26  2  1  6  4  1  1    0    0    0    0    0    0    0    0
## 357  2046 62  2  3  1  2  2  2    0    0    0    0    0    0    0    0
## 358  4531 36  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 359  4198 35  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 360  7345 25  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 361  6894 45  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 362  1722 52  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 363  9152 50  1  4  3  1  2  2    0    1    0    1    0    0    0    0
## 364  9315 72  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 365  9024 18  2  4  3  1  2  2    0    1    0    1    0    0    0    0
## 366  8858 48  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 367  1759 46  1  1  3  5  1  1    0    0    0    1    0    0    0    0
## 368  6107 71  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 369  1505 19  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 370  7558 18  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 371  2681 25  2  1  3  1  1  2    0    0    0    0    0    0    0    0
## 372  7660 24  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 373  1494 48  2  1  1  3  2  1    0    0    0    0    0    0    0    0
## 374  7840 24  2  4  3  3  2  1    0    0    1    0    0    0    0    0
## 375  7253 31  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 376  4441 35  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 377  3205 30  1  1  6  3  1  1    1    0    0    0    0    0    0    0
## 378  4448 22  2  1  5  5  2  1    0    0    0    0    0    0    0    0
## 379  7642 33  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 380  7011 35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 381  3188 62  1  1  1  5  2  2    0    1    0    0    0    0    0    0
## 382  1037 32  2  1  4  1  2  1    0    1    0    0    0    0    0    0
## 383  9345 33  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 384  7263 17  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 385  4209 23  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 386  5647 45  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 387  1374 62  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 388  2755 21  2  4  6  5  2  1    0    1    0    0    0    0    0    0
## 389  4592 22  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 390  6709 29  1  2  3  3  2  2    0    0    0    1    0    0    0    0
## 391  2603 52  1  1  3  3  2  1    0    0    0    0    0    0    0    0
## 392  6855 32  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 393  3760 31  1  4  1  1  1  2    0    1    0    0    0    0    0    0
## 394  3016 87  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 395  8779 60  2  1  1  3  2  1    0    1    0    1    0    0    0    0
## 396  8649 20  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 397  9429 30  2  4  1  3  2  2    0    0    0    1    0    0    0    0
## 398  1368 32  2  1  6  1  2  1    0    0    1    0    0    0    0    0
## 399  2394 40  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 400   814 32  2  1  6  1  2  1    0    0    0    0    0    0    0    0
## 401  8090 45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 402  6219 20  2  4  5  5  2  1    0    0    0    1    0    0    0    0
## 403  5533 58  1  1  5  3  1  1    0    0    0    0    0    0    1    0
## 404  2398 45  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 405  3867 26  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 406  7959 40  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 407  3144 50  1  1  6  1  1  1    0    1    0    1    0    0    0    0
## 408  3809 37  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 409  1177 16  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 410  1594 27  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 411  8930 38  2  3  2  5  2  2    0    1    0    0    0    0    0    0
## 412  4103 72  1  3  3  5  2  2    0    0    0    0    0    0    0    0
## 413     2 29  2  1  7  5  2  1    0    0    0    0    0    0    0    0
## 414  3384 16  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 415   200 62  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 416  6237 20  1  4  5  3  2  1    0    0    0    0    0    0    0    0
## 417  6187 55  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 418  5483 48  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 419  5902 21  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 420  1952 43  1  1  3  1  1  1    0    0    1    0    0    0    0    0
## 421   671 51  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 422  3769 28  1  1  3  4  2  1    0    0    0    1    0    0    0    0
## 423    12 46  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 424  7453 57  2  1  1  2  2  1    0    1    0    1    0    0    0    0
## 425  1341 31  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 426  5219 26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 427  2869 39  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 428  8823 45  1  1  1  1  2  1    0    0    0    1    0    0    0    0
## 429  7293 41  1  1  3  1  1  1    0    1    1    0    0    0    0    0
## 430  3882 31  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 431   532 23  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 432   893 19  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 433  1264 26  2  1  2  3  2  1    0    0    0    0    0    0    0    0
## 434  9177 70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 435  8352 19  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 436  7090 50  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 437  8567 20  2  1  5  3  1  1    0    1    0    0    0    0    0    0
## 438   417 36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 439  8350 29  1  4  7  5  1  1    0    1    0    0    0    0    0    0
## 440  6117 42  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 441  8755 26  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 442  6266 34  2  2  5  4  2  1    0    1    1    0    0    0    0    0
## 443  3324 43  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 444  8364 50  2  3  3  1  2  1    0    0    0    0    0    0    0    0
## 445  4647 36  1  2  1  1  2  2    0    1    0    1    0    0    0    0
## 446  7838 47  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 447  5330 50  1  1  6  1  2  2    0    0    0    1    0    0    0    0
## 448  3128 17  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 449  5763 19  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 450  1278 31  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 451  9053 33  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 452  1123 65  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 453  8290 30  2  1  3  5  2  2    0    0    0    1    0    0    0    0
## 454  6121 34  1  1  3  1  1  1    1    1    0    0    0    0    0    0
## 455  6763 42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 456  2847 50  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 457  3279 17  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 458  2930 70  2  3  2  1  1  2    0    0    0    1    0    0    0    0
## 459  1396 21  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 460  9082 65  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 461  1004 42  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 462  4729 32  2  1  3  2  1  1    0    0    1    0    0    0    0    0
## 463  7839 50  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 464  2475 60  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 465  8306 28  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 466  6177 16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 467  8927 70  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 468   675 26  2  2  3  4  2  1    0    0    0    0    0    0    0    0
## 469  1223 65  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 470  8396 35  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 471  7535 35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 472  6941 27  2  3  2  3  2  2    0    1    0    0    0    0    0    0
## 473  1818 49  2  1  3  5  1  1    0    0    0    1    0    0    0    0
## 474  7294 19  1  4  2  5  2  1    0    0    0    1    0    0    0    0
## 475  9019 32  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 476  8265 41  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 477  7647 40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 478  6005 27  2  1  5  5  2  1    0    0    0    0    0    0    0    0
## 479  5780 16  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 480  7030 68  2  1  1  3  2  1    0    1    0    1    0    0    0    0
## 481  5002 22  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 482  4946 76  1  1  6  1  1  1    0    0    0    1    0    0    1    0
## 483  2611 33  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 484  9386 26  1  4  6  5  2  1    1    0    0    0    0    0    0    0
## 485  6485 25  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 486  6458 30  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 487  8176 22  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 488  8594 39  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 489  2504 70  2  3  2  3  1  2    0    0    0    0    0    0    0    0
## 490  3319 35  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 491  5243 23  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 492  7319 48  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 493  4016 72  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 494  4196 25  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 495  9331 48  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 496  2596 26  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 497   782 48  2  3  3  5  1  1    0    1    0    0    0    0    0    0
## 498  6884 66  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 499  2987 16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 500  2576 70  2  2  1  3  2  2    0    0    0    0    0    0    0    1
## 501  1296 26  2  2  3  3  2  2    0    1    0    1    0    0    0    0
## 502  8279 34  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 503  1832 25  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 504  8507 18  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 505  6969 23  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 506  5692 18  2  4  3  1  2  2    0    0    1    0    0    0    0    0
## 507  9240 35  2  1  3  4  1  1    0    1    0    0    0    0    0    0
## 508  6655 33  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 509  5337 35  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 510   980 39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 511  2563 60  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 512  5710 32  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 513  6263 51  2  2  3  1  2  1    0    1    0    0    0    0    0    1
## 514   268 30  2  1  7  5  2  1    1    0    0    0    0    0    0    0
## 515  1067 17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 516  3214 57  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 517  6218 23  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 518  8862 25  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 519  3103 30  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 520  6482 53  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 521  4563 68  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 522   689 31  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 523  3163 40  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 524   296 30  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 525  2910 48  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 526  6238 22  1  1  3  5  1  1    0    0    0    1    0    0    0    0
## 527  5347 35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 528  1963 40  2  1  7  2  2  1    0    0    1    0    0    0    0    0
## 529  6497 60  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 530  8643 43  1  1  3  2  2  2    0    1    0    0    0    0    0    0
## 531  9243 21  1  4  1  3  2  1    0    1    0    0    0    0    0    0
## 532  9154 61  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 533   211 30  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 534  6565 34  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 535  2095 30  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 536  5597 25  1  1  2  3  2  1    0    1    0    1    0    0    0    0
## 537  1830 34  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 538  2083 34  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 539  7098 44  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 540  8134 54  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 541   727 40  2  1  6  1  1  1    1    0    0    0    0    0    0    0
## 542   251 30  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 543  1182 37  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 544  1326 25  1  4  6  4  2  1    1    0    0    0    0    0    0    0
## 545   306 23  2  1  5  4  2  1    0    0    0    1    0    0    0    0
## 546  4804 17  1  4  2  3  2  1    0    0    0    1    0    0    0    0
## 547  4427 18  1  4  2  1  2  2    0    1    0    1    0    0    0    0
## 548  7323 39  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 549    88 26  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 550  3693 30  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 551  7458 32  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 552  7165 40  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 553  6685 21  2  2  5  3  2  2    0    0    0    0    0    0    0    0
## 554   828 46  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 555  8716 22  2  4  3  4  2  1    0    0    0    0    0    0    0    0
## 556   377 20  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 557  9052 48  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 558  6501 79  1  3  2  5  2  2    0    0    0    0    0    0    0    0
## 559  2428 25  1  1  1  1  1  1    0    1    0    1    0    0    0    0
## 560  4333 30  2  1  1  5  2  2    0    1    0    0    0    0    0    1
## 561  1701 42  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 562  5601 19  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 563  1114 47  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 564  7524 55  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 565  4508 24  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 566  2560 35  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 567  2644 20  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 568  5683 25  1  4  7  4  2  1    1    1    0    0    0    0    0    0
## 569  9260 82  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 570  9025 23  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 571  8696 29  2  1  2  2  2  2    0    1    0    1    0    0    0    0
## 572  6888 81  2  3  1  3  2  2    0    0    0    0    0    0    0    0
## 573  5204 50  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 574  8844 45  2  1  3  5  2  2    0    0    0    0    0    0    0    1
## 575  8605 51  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 576  6359 46  2  2  3  1  2  2    0    1    0    1    0    0    0    0
## 577  4163 53  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 578  5958 45  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 579  2060 70  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 580  7000 49  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 581  5277 40  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 582  4713 43  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 583  3332 29  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 584  4274 45  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 585  4168 19  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 586  6553 40  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 587  7469 47  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 588  7089 29  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 589   320 35  2  1  3  4  2  1    0    0    1    0    0    0    0    0
## 590  4211 31  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 591  6847 58  1  1  3  4  2  2    0    0    0    1    0    0    0    0
## 592  4973 43  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 593  2725 28  2  1  6  4  1  1    0    0    0    0    0    0    0    0
## 594  7489 45  2  2  3  5  2  1    0    0    0    1    0    0    0    0
## 595  9265 32  2  1  2  3  2  1    0    0    0    0    0    0    0    0
## 596  8577 20  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 597  6733 27  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 598  2449 80  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 599  5940 49  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 600  2107 20  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 601  2226 47  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 602  5830 60  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 603  8673 72  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 604  4896 30  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 605   709 28  2  1  3  4  2  2    0    1    0    1    0    0    0    0
## 606  6309 26  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 607  5419 28  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 608  7300 35  2  1  3  4  2  2    0    1    0    1    0    0    0    0
## 609  4051 25  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 610    84 57  1  2  6  1  1  1    0    1    0    0    1    0    0    0
## 611  5768 31  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 612  3301 17  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 613  2325 77  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 614  5107 57  1  1  3  1  1  1    1    0    0    0    0    0    0    0
## 615  8348 30  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 616  2659 25  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 617  7501 29  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 618  7440 70  2  3  2  1  2  2    0    1    0    0    0    0    0    1
## 619  3869 32  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 620  9361 35  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 621  4543 75  1  1  1  1  2  1    0    0    0    0    0    0    0    1
## 622  4243 35  2  1  4  2  2  1    1    0    0    0    0    0    0    0
## 623  5755 32  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 624  9376 70  1  3  1  1  2  2    0    1    0    1    0    0    0    0
## 625  9301 55  2  1  6  1  2  1    1    0    0    0    1    0    0    0
## 626  3461 36  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 627  6652 77  2  3  1  1  2  1    0    1    0    0    0    0    0    1
## 628  8697 37  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 629  1304 27  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 630  1644 40  2  2  3  5  1  2    0    1    0    1    0    0    0    0
## 631  7992 54  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 632    70 60  1  1  3  4  1  1    1    0    0    0    0    0    0    0
## 633  4624 29  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 634   630 63  1  1  3  1  2  1    1    0    0    0    0    0    0    0
## 635  1640 42  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 636  6957 49  1  2  3  1  1  1    0    0    0    1    0    0    0    0
## 637  2289 20  2  1  5  3  2  1    0    0    0    0    0    0    0    0
## 638  4306 46  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 639  9032 32  2  4  2  1  2  2    0    1    0    0    0    0    0    0
## 640  2652 37  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 641  8933 30  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 642  3146 62  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 643  7111 38  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 644  5535 41  2  1  3  5  2  1    0    1    0    1    0    0    0    0
## 645  8325 22  2  1  2  5  2  2    0    1    1    0    0    0    0    0
## 646  1897 16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 647  2488 35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 648  3984 30  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 649  2751 28  2  1  6  5  2  1    1    0    0    0    0    0    0    0
## 650  3683 35  1  1  2  1  1  1    0    1    0    1    0    0    0    0
## 651  7653 17  2  4  5  3  1  2    0    0    0    0    0    0    0    0
## 652  2554 24  1  4  3  4  2  1    0    0    0    1    0    0    0    0
## 653  7252 17  1  4  5  1  2  2    0    1    0    0    0    0    0    0
## 654  5224 65  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 655  4167 27  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 656  1552 38  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 657  4915 27  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 658  2577 49  1  1  5  4  2  1    0    1    0    0    0    0    0    0
## 659  8829 47  2  3  3  1  2  1    0    1    1    0    0    0    0    0
## 660  3353 33  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 661  2493 39  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 662  9163 70  1  2  2  1  2  2    0    1    0    0    0    0    0    0
## 663  3224 23  1  1  5  5  2  1    0    1    0    0    0    0    0    0
## 664    63 39  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 665  4680 45  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 666  2463 70  2  2  2  2  2  2    0    1    0    0    0    0    0    0
## 667   107 32  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 668  4425 35  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 669  7711 32  1  1  1  4  2  1    0    0    1    0    0    0    0    0
## 670  5600 19  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 671  2256 53  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 672  9448 33  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 673  9304 41  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 674  5275 36  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 675  8323 36  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 676  1649 42  2  1  3  1  1  2    0    1    0    1    0    0    0    0
## 677  8637 58  2  1  3  5  1  1    0    1    0    0    0    0    0    0
## 678  8233 34  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 679  3731 16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 680  6613 75  1  3  1  3  2  2    0    0    0    0    0    0    0    0
## 681  2294 32  2  1  7  3  2  1    1    0    0    0    0    0    0    0
## 682  3277 33  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 683  6157 25  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 684  4974 79  2  3  3  1  2  2    0    0    0    0    0    0    0    1
## 685   158 22  2  4  3  5  2  2    0    1    0    0    0    0    0    0
## 686  2077 61  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 687  1280 77  1  3  2  1  2  1    0    1    0    0    0    0    0    0
## 688  2399 32  2  4  3  1  2  1    0    0    0    1    0    0    0    0
## 689  3676 43  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 690  3381 25  2  2  3  5  2  2    0    1    0    1    0    0    0    0
## 691  7118 21  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 692  2604 41  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 693  6541 29  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 694  1978 43  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 695   173 16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 696  2857 32  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 697  7083 45  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 698  2764 36  2  2  3  5  2  2    0    1    1    0    0    0    0    0
## 699  6800 68  2  3  1  1  2  2    0    1    0    1    0    0    0    1
## 700  1022 38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 701  2769 55  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 702  3343 24  2  1  6  3  2  1    0    0    0    0    0    0    0    0
## 703  8347 33  2  2  7  5  1  1    1    1    0    0    0    0    0    0
## 704  2310 33  1  1  2  1  2  1    0    0    1    1    0    0    0    0
## 705  7028 33  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 706  4402 38  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 707  5110 25  2  1  1  1  2  1    0    0    0    0    0    0    0    0
## 708  2921 62  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 709  4245 47  1  1  3  5  1  2    0    0    0    1    0    0    0    0
## 710  1238 40  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 711   290 39  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 712   450 28  2  1  6  4  2  1    0    0    1    0    0    0    0    0
## 713  3216 38  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 714  7566 40  1  1  1  2  2  1    0    1    0    0    0    0    0    0
## 715  7157 41  1  2  3  1  1  1    0    1    0    1    0    0    0    0
## 716  6304 52  2  1  3  1  1  1    0    1    0    0    1    0    0    0
## 717  5423 49  2  1  6  1  2  1    0    1    0    1    0    0    0    0
## 718   362 52  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 719  4720 37  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 720  6845 19  2  4  5  5  2  1    0    1    0    1    0    0    0    0
## 721  8910 50  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 722  1118 26  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 723  8081 16  2  4  5  5  2  2    0    1    0    0    0    0    0    0
## 724  4621 21  2  4  6  3  2  1    0    1    0    1    0    0    0    0
## 725  2364 42  2  1  3  1  2  1    1    1    0    0    0    0    0    0
## 726  3415 70  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 727  7505 27  1  1  6  1  2  1    0    1    0    1    0    0    0    0
## 728    98 30  2  1  5  5  2  1    0    0    0    1    0    0    0    0
## 729  6264 24  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 730  7131 50  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 731   373 20  1  4  3  5  2  1    1    0    0    0    0    0    0    0
## 732  5864 38  2  4  5  1  1  2    0    1    0    0    0    0    0    0
## 733  6425 68  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 734  3417 16  2  4  2  3  2  2    0    1    0    0    0    0    0    0
## 735  3367 53  1  3  3  1  2  2    0    1    0    1    0    0    0    0
## 736  4315 27  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 737  2197 27  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 738  8480 55  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 739  2826 42  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 740  6816 40  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 741  3737 40  1  2  3  3  2  1    0    1    0    1    0    0    0    0
## 742  4762 40  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 743  3606 30  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 744  1055 30  2  4  3  1  2  1    0    1    0    0    0    0    0    0
## 745  9322 65  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 746  1799 58  1  3  2  1  1  1    0    1    0    0    0    0    0    0
## 747  6132 40  2  2  3  3  2  1    0    1    0    0    0    1    0    0
## 748  7166 24  1  1  2  1  2  1    1    0    0    0    0    0    0    0
## 749  5632 70  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 750  6807 36  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 751  1158 25  1  4  6  3  1  1    1    0    0    0    0    0    0    0
## 752  6449 67  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 753  4897 39  2  1  1  3  2  2    1    1    0    0    0    0    0    0
## 754  5130 27  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 755  7475 26  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 756  4205 42  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 757  4836 20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 758  8800 25  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 759  3073 23  2  1  3  2  2  2    0    0    0    0    0    0    0    0
## 760  6965 30  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 761  2527 21  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 762  7077 65  2  1  1  2  2  2    0    1    0    1    0    0    0    0
## 763  2552 24  2  1  5  5  2  1    0    1    0    0    0    0    0    0
## 764  4529 44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 765  6983 47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 766  4055 24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 767  7181 39  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 768   902 26  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 769  4350 24  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 770  2740 47  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 771  7621 48  1  1  3  1  1  1    0    0    1    1    0    0    0    0
## 772  4878 50  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 773  7518 35  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 774  7122 55  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 775  4199 31  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 776  4602 37  2  3  1  1  2  2    0    0    0    1    0    0    0    1
## 777  2013 35  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 778  5213 50  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 779  4848 43  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 780  8876 36  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 781  2895 40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 782    28 35  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 783  3964 23  2  4  6  5  2  2    0    0    1    0    0    0    0    0
## 784  3706 28  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 785  7762 47  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 786  7504 31  2  1  3  5  1  2    0    1    0    1    0    0    0    0
## 787  7280 29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 788  7849 22  1  1  3  3  2  1    0    1    1    0    0    0    0    0
## 789  5971 34  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 790  5291 20  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 791  8777 40  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 792  3485 25  2  1  7  5  2  1    1    1    0    0    0    0    0    0
## 793  7966 26  1  1  2  4  2  1    0    1    0    0    0    0    0    0
## 794  2888 36  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 795  3640 42  2  4  3  5  2  2    0    1    0    0    0    0    0    1
## 796  9136 56  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 797  1409 52  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 798  4480 18  1  4  3  3  1  1    0    1    0    1    0    0    0    0
## 799  4084 32  2  4  3  1  1  1    0    1    0    1    0    0    0    0
## 800  8505 45  1  1  3  1  2  1    1    0    0    0    0    0    0    0
## 801  7184 19  1  1  3  2  2  2    0    1    0    0    0    0    0    0
## 802  7835 50  1  1  2  1  2  2    0    1    0    0    0    0    0    1
## 803   583 35  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 804  1189 16  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 805  2636 20  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 806  3868 35  2  1  6  4  2  1    0    0    0    1    0    0    0    0
## 807  5635 80  2  3  2  1  1  1    0    0    0    0    0    0    0    0
## 808  1611 34  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 809  7418 17  1  4  3  3  1  2    0    0    0    0    0    0    0    0
## 810  6650 42  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 811  6327 38  2  2  6  5  2  1    0    1    0    0    0    0    0    0
## 812  4284 75  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 813  9296 48  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 814  6030 50  1  1  2  1  2  1    0    1    1    0    0    0    0    0
## 815  5068 70  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 816  2479 30  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 817  7718 28  1  1  6  3  2  2    0    1    0    1    0    0    0    0
## 818   997 51  1  3  5  1  2  2    0    1    0    0    0    0    0    0
## 819  8069 22  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 820  1554 45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 821   559 22  2  2  3  5  2  1    0    0    0    0    0    0    0    0
## 822  2757 18  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 823  3665 43  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 824   505 50  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 825  2464 82  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 826  2239 62  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 827  3663 20  2  4  5  3  2  1    0    0    0    0    0    0    0    0
## 828  8893 48  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 829  3204 48  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 830   694 21  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 831  4754 18  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 832  6090 43  1  1  6  1  2  1    0    1    1    0    0    0    0    0
## 833  4828 60  2  3  1  5  2  2    0    1    0    0    0    0    0    0
## 834  5616 28  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 835  4025 23  2  1  5  2  2  2    0    1    0    0    0    0    0    0
## 836  1425 33  2  1  3  5  1  1    0    0    1    0    0    0    0    0
## 837  4105 21  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 838  5764 39  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 839  5716 18  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 840  2383 39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 841  7281 43  2  3  2  1  2  2    0    0    0    0    0    0    1    0
## 842  1403 30  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 843  6966 45  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 844  4544 38  2  4  1  1  2  2    0    0    0    1    0    0    0    0
## 845  1253 69  2  3  1  2  2  2    0    0    0    0    0    0    0    0
## 846  4356 35  2  1  2  1  2  2    0    0    0    0    0    0    0    0
## 847  7427 34  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 848  9071 26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 849   475 25  2  4  6  5  2  1    0    0    0    1    0    0    0    0
## 850  7859 33  2  1  5  4  2  1    1    0    0    0    0    0    0    0
## 851  8804 27  2  1  2  1  1  2    0    1    0    1    0    0    0    0
## 852  5849 21  1  4  5  1  2  1    0    1    0    0    0    0    0    0
## 853  9129 24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 854   370 16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 855  3436 27  1  4  3  2  2  1    0    0    0    1    0    0    0    0
## 856   958 57  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 857  5229 17  2  4  1  2  2  2    0    1    0    0    0    0    0    0
## 858  3455 82  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 859  5460 25  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 860  3555 19  2  3  3  5  2  1    0    0    1    0    0    0    0    0
## 861  7753 26  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 862  2889 51  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 863  6945 25  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 864  3454 28  2  1  1  3  2  2    0    0    0    1    0    0    0    0
## 865  7869 32  1  1  3  4  2  1    0    0    1    0    0    0    0    0
## 866   763 16  2  4  3  5  2  2    1    0    0    0    0    0    0    0
## 867  4431 47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 868  4287 17  2  4  2  5  2  2    0    0    0    0    0    0    0    0
## 869  5934 27  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 870  7847 72  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 871  6468 39  2  2  3  3  2  1    0    1    0    1    0    0    0    0
## 872  2481 29  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 873  5252 42  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 874  8839 34  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 875  5817 65  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 876  5804 40  2  1  2  5  2  1    0    0    0    0    0    0    0    0
## 877  1255 40  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 878  6486 20  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 879  6926 30  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 880  5077 44  1  2  2  4  2  2    0    1    0    1    0    0    0    0
## 881  3218 40  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 882  7999 46  1  1  2  5  2  1    0    1    0    1    0    0    0    0
## 883  6397 49  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 884  8327 28  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 885  8609 70  1  3  1  1  2  2    0    1    0    1    0    0    0    0
## 886   179 27  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 887  4619 38  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 888  6566 22  1  4  3  5  2  1    0    1    0    1    0    0    0    0
## 889  9064 20  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 890  2126 16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 891  7932 26  1  4  5  5  2  1    0    0    0    1    0    0    0    0
## 892  3201 17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 893  2148 32  1  1  7  6  1  1    1    0    0    0    0    0    0    0
## 894  2780 40  1  1  1  3  2  2    0    1    0    1    1    0    0    0
## 895  1764 47  1  3  3  1  2  1    0    1    0    0    0    0    0    0
## 896  1195 33  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 897  1979 41  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 898  6638 20  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 899  8476 26  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 900  2058 32  2  2  2  1  2  1    0    0    0    1    0    0    0    0
## 901  1932 66  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 902  6912 24  2  1  1  3  2  2    0    1    1    0    0    0    0    0
## 903  9048 29  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 904  3992 26  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 905  6794 54  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 906  7749 50  1  2  3  1  1  2    0    1    0    0    0    0    0    0
## 907  7047 50  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 908  7088 27  2  4  3  5  2  1    1    0    0    1    0    0    0    0
## 909  4940 60  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 910  8703 68  1  1  3  2  2  1    0    1    1    0    0    0    0    0
## 911  5458 78  1  2  3  1  2  2    0    1    0    0    0    0    0    0
## 912   274 21  2  4  6  5  2  1    1    1    0    0    0    0    0    0
## 913   848 23  2  2  2  5  2  1    0    0    1    0    0    0    0    0
## 914  6544 19  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 915  8870 28  1  1  1  3  1  2    0    1    0    1    0    0    0    0
## 916  4604 54  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 917  3400 25  1  1  2  1  1  2    0    1    0    1    0    0    0    0
## 918  7978 40  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 919  1324 21  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 920  8934 32  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 921  5227 30  2  1  1  2  2  2    0    1    0    1    0    0    0    0
## 922  2011 20  2  1  1  5  2  2    0    0    0    1    0    0    0    0
## 923  3361 58  1  3  6  1  2  1    0    0    1    0    0    0    0    0
## 924  5798 63  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 925  7368 85  2  2  1  2  2  1    0    1    0    0    0    0    0    0
## 926  7728 45  1  1  1  3  2  1    0    1    0    0    0    0    0    0
## 927  4383 76  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 928  5509 18  2  4  6  1  2  1    0    0    0    0    0    0    0    0
## 929  4464 22  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 930  6615 25  2  4  5  3  2  1    0    1    0    0    0    0    0    0
## 931  3824 40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 932  3337 19  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 933  7914 43  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 934  7589 23  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 935  4707 22  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 936  5156 51  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 937  6272 58  1  1  6  1  1  1    1    1    0    0    0    0    0    0
## 938  2450 45  1  1  1  1  1  2    0    1    0    1    0    0    0    0
## 939  2712 50  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 940   723 20  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 941  8045 78  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 942  1512 24  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 943  6062 38  1  1  6  4  2  1    0    1    0    1    0    0    0    0
## 944  5596 29  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 945  8098 39  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 946  1718 37  2  3  1  1  1  1    0    1    0    0    0    0    0    0
## 947  4488 25  2  1  6  5  2  1    0    1    0    0    0    0    0    0
## 948  6607 18  1  1  2  3  2  1    0    1    0    1    0    0    0    0
## 949  6562 43  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 950  9005 35  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 951  2393 27  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 952  7636 27  1  4  5  4  2  1    0    1    0    0    0    0    0    0
## 953  5338 50  1  3  3  1  2  2    0    1    0    0    0    0    0    0
## 954  3940 27  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 955  4685 30  2  1  6  5  2  1    0    1    0    1    0    0    0    0
## 956  9232 16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 957  7606 39  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 958  3710 46  2  1  1  4  2  1    0    0    0    1    0    0    0    0
## 959  2532 72  2  3  1  5  2  1    0    0    0    0    0    0    0    0
## 960  7225 35  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 961  2965 59  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 962  8666 73  2  3  2  1  1  1    0    1    0    0    0    0    0    0
## 963  8321 27  2  1  5  5  2  2    0    1    0    0    0    0    0    0
## 964   895 21  1  4  7  3  2  1    1    0    0    0    0    0    0    0
## 965  4302 80  2  3  1  5  2  2    0    1    0    0    0    0    0    0
## 966  7900 16  2  4  3  6  2  2    1    0    0    0    0    0    0    0
## 967  3897 36  2  1  3  5  1  2    0    0    0    1    0    0    0    0
## 968  6419 24  1  1  3  3  2  1    0    1    1    0    0    0    0    0
## 969  2575 63  1  1  2  1  2  1    0    0    0    0    0    0    0    0
## 970   750 26  1  1  3  4  1  1    1    0    0    0    0    0    0    0
## 971   576 49  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 972  1073 17  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 973  2003 75  2  3  3  1  2  1    0    0    0    0    0    0    0    0
## 974  1243 40  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 975   664 24  2  1  6  2  2  1    0    0    0    0    0    0    0    0
## 976  5228 31  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 977  2167 19  1  1  1  3  2  2    0    0    0    1    0    0    0    0
## 978  4496 16  2  4  5  5  2  1    0    1    0    0    0    0    0    0
## 979  5168 35  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 980   257 30  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 981  3942 49  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 982  4753 34  1  1  3  3  2  2    0    0    0    1    0    0    0    0
## 983  7407 37  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 984  5092 70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 985  3905 53  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 986  5662 65  2  2  3  1  2  1    0    1    0    0    0    0    0    1
## 987  9385 34  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 988  8668 48  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 989  5571 24  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 990  4825 60  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 991  1204 31  2  2  3  2  1  1    0    1    0    0    0    0    0    0
## 992  9023 19  2  4  6  3  2  1    0    0    0    1    0    0    0    0
## 993  8472 66  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 994  8961 45  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 995  7570 36  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 996  3954 59  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 997  7375 34  2  1  3  5  2  1    1    0    0    0    0    0    0    0
## 998  5564 41  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 999  8570 22  2  4  3  4  2  2    0    1    0    0    0    0    0    0
## 1000 2739 20  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1001 4079 44  2  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1002 7276 38  2  2  2  4  2  2    0    0    0    1    0    0    0    0
## 1003 1969 20  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 1004 9125 35  1  2  3  4  2  2    1    0    0    0    0    0    0    0
## 1005 1161 19  1  4  3  3  2  1    0    0    0    0    0    0    0    0
## 1006  969 20  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1007 8359 23  2  1  3  4  1  1    0    0    1    0    0    0    0    0
## 1008 6918 41  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1009 5660 28  1  4  6  1  2  1    0    1    0    0    0    0    0    0
## 1010 1821 32  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1011  887 45  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 1012 8508 40  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1013 7832 26  1  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1014 5215 28  2  1  3  4  2  2    0    1    1    1    0    0    0    0
## 1015  242 30  1  1  5  5  2  1    0    0    0    1    0    0    0    0
## 1016 5417 65  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 1017 1249 24  1  4  5  4  2  1    0    1    0    0    0    0    0    0
## 1018 1917 36  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1019 7388 18  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1020  868 29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1021 6701 68  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1022 5001 60  1  2  2  5  2  1    0    1    0    0    0    0    0    0
## 1023 5513 36  1  2  5  1  2  2    0    1    0    0    0    0    0    0
## 1024 8730 40  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 1025 1106 32  1  4  3  4  2  2    0    0    0    1    0    0    0    0
## 1026 2157 63  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1027 7953 54  2  1  1  3  2  2    0    1    1    0    0    0    0    0
## 1028 1050 25  1  2  6  4  1  1    0    1    0    0    0    0    0    0
## 1029 5484 33  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1030   10 42  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 1031 5217 24  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 1032 2561 19  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1033 6564 23  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 1034 5733 57  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1035 3981 30  1  1  5  4  1  1    0    1    0    0    0    0    0    0
## 1036 5240 58  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1037 6275 70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1038 5062 51  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1039 7857 30  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1040 4740 29  1  1  5  5  1  1    0    1    0    0    0    0    0    0
## 1041 3354 46  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1042 2334 36  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1043 6003 63  2  3  2  1  2  1    0    1    0    0    0    0    0    0
## 1044 7831 39  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 1045 7697 50  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1046 9031 27  2  2  2  4  2  1    0    0    1    0    0    0    0    0
## 1047 5362 61  2  1  2  5  2  2    0    1    0    0    0    0    0    0
## 1048 2161 24  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1049 7250 30  1  1  3  1  2  1    0    1    0    1    0    1    0    0
## 1050 7676 59  1  1  2  1  2  1    0    1    0    1    0    0    0    1
## 1051 4782 39  2  1  5  2  2  1    0    0    0    1    0    0    0    0
## 1052  921 49  1  1  5  4  2  1    0    1    0    0    0    0    0    0
## 1053 9112 80  2  3  1  1  2  2    0    0    0    1    1    0    0    0
## 1054 3536 69  1  3  8  1  2  1    0    0    0    1    0    0    0    0
## 1055 6915 81  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 1056 3796 50  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1057 8072 28  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1058 6996 64  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1059 1362 30  1  2  2  3  2  2    0    0    0    1    0    0    0    0
## 1060 5709 70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1061 2471 35  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1062 6134 20  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1063 3552 44  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1064 1215 40  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1065 6124 56  2  2  1  1  2  1    0    0    0    1    0    0    0    1
## 1066 6591 58  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1067 5739 29  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1068 4520 42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1069  871 16  2  4  3  3  1  2    0    0    0    0    0    0    0    0
## 1070 2314 36  1  1  3  4  2  1    0    1    0    1    0    0    0    0
## 1071 8515 47  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1072 7933 75  2  3  1  3  2  2    0    0    0    0    0    0    0    0
## 1073  383 35  1  1  1  4  2  1    0    0    0    1    0    0    0    0
## 1074  655 16  1  4  3  3  1  2    0    1    0    0    0    0    0    0
## 1075 8990 27  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1076 2825 43  2  2  2  1  1  2    0    1    0    0    0    0    0    0
## 1077 1840 33  1  4  6  5  2  1    1    0    0    0    0    0    0    0
## 1078 5926 34  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1079 2433 29  1  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1080 7648 27  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1081 5271 58  2  3  2  1  2  1    0    0    0    1    0    0    0    0
## 1082 1021 47  2  1  6  1  2  1    0    0    0    0    0    0    0    0
## 1083 9360 32  1  4  3  4  2  2    0    0    0    1    0    0    0    0
## 1084 3479 27  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1085 1646 35  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1086 4657 25  2  4  7  4  2  1    0    1    0    0    0    0    0    0
## 1087 8142 33  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1088 1787 17  1  4  3  4  2  1    0    0    0    0    0    0    0    0
## 1089 8026 41  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1090 6189 39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1091 1918 30  1  1  6  5  2  1    0    1    0    1    0    0    0    0
## 1092 8052 50  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1093 2835 26  1  3  3  5  2  1    0    1    0    1    0    0    0    0
## 1094 3085 68  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 1095 8095 28  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 1096 2320 23  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 1097 7557 37  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1098  659 30  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1099 2217 58  2  3  3  1  2  2    0    0    0    1    0    0    0    0
## 1100 9312 70  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1101 2748 30  2  3  2  1  2  1    0    1    0    1    0    0    0    0
## 1102 8420 21  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1103 4877 16  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 1104  594 24  1  1  6  3  2  1    1    0    0    0    0    0    0    0
## 1105 1122 23  1  4  6  4  2  1    0    1    0    1    0    0    0    0
## 1106 4273 40  2  3  2  1  2  2    0    0    0    0    0    0    0    1
## 1107 4717 50  2  1  3  5  1  2    0    0    0    0    0    0    0    0
## 1108 8157 26  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1109 7960 31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1110 3345 52  1  2  1  1  2  2    0    1    0    1    0    0    0    0
## 1111 9434 35  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1112 5231 40  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1113 3087 58  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1114  392 34  1  4  2  5  1  2    0    0    0    1    0    0    0    0
## 1115 2255 24  1  1  3  4  1  1    0    0    1    0    0    0    0    0
## 1116 2721 22  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1117 2138 22  2  1  1  4  2  2    0    1    0    1    0    0    0    0
## 1118 1159 42  2  3  2  4  2  2    0    1    0    0    0    0    0    0
## 1119 2827 34  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1120 7817 17  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 1121 7408 50  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1122 2789 30  1  1  1  5  1  1    1    0    0    0    0    0    0    0
## 1123  492 23  2  1  3  3  1  2    0    0    0    0    0    0    0    0
## 1124 4192 45  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1125 6708 62  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1126 5650 50  1  1  1  4  1  1    0    0    0    1    0    0    0    0
## 1127 2124 46  2  1  3  3  2  1    0    1    0    0    1    0    0    0
## 1128 7600 17  1  4  1  3  2  2    0    1    0    1    0    0    0    0
## 1129 3913 36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1130 1696 18  2  4  7  5  2  2    0    0    0    0    0    0    0    0
## 1131  554 17  2  4  3  5  2  1    1    0    0    0    0    0    0    0
## 1132 6745 65  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1133  798 70  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 1134  693 46  1  2  3  5  2  2    0    0    0    1    0    0    0    0
## 1135 6743 36  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1136  908 31  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 1137 4155 75  1  3  1  1  1  2    0    0    0    1    0    0    0    0
## 1138 8698 24  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1139 5695 63  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1140 3979 78  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1141 8260 37  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1142 5006 24  1  1  5  1  2  1    0    1    0    1    0    0    0    0
## 1143 6916 23  2  1  6  3  2  2    0    0    0    1    0    0    0    0
## 1144 4301 63  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1145 8937 38  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1146 7910 50  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1147  903 37  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 1148 8384 35  2  1  2  1  2  1    0    0    1    0    0    0    0    0
## 1149 4903 35  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1150 8022 44  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 1151 7442 23  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 1152 7132 21  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1153 9310 37  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1154 8533 33  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1155 8737 42  1  1  3  3  1  2    0    0    0    1    0    0    0    0
## 1156 6780 28  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1157 1914 17  1  4  2  1  2  2    0    0    0    0    0    0    0    0
## 1158 7825 26  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1159 1029 20  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1160 3140 26  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1161 2938 27  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1162 8901 45  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1163 6790 45  1  1  7  1  1  1    1    0    0    1    0    0    0    0
## 1164 8399 39  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1165 7436 40  2  1  1  2  2  1    0    1    0    0    0    0    0    1
## 1166 1598 19  2  1  2  5  2  2    0    0    1    0    0    0    0    0
## 1167 7562 27  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1168 8836 21  2  4  5  5  2  1    0    0    0    1    0    0    0    0
## 1169 9141 16  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1170  175 45  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1171 5956 20  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1172 5357 63  2  3  1  4  2  1    0    1    0    0    0    0    0    0
## 1173 3111 40  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 1174 2687 25  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 1175 9117 18  2  1  3  2  2  2    0    0    0    1    0    0    0    0
## 1176 7012 42  1  1  5  1  2  1    1    1    0    0    0    0    0    0
## 1177 2038 37  2  1  2  3  2  2    0    0    1    0    0    0    0    0
## 1178 7484 41  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1179 8856 22  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1180 2472 40  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1181 6636 96  2  3  1  5  2  2    0    0    0    0    0    0    0    0
## 1182 5689 46  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1183 7863 30  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1184 8167 20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1185  801 25  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1186 8921 28  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1187 6491 42  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1188 6851 32  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1189 6992 27  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 1190 2407 38  1  1  1  3  2  1    0    1    0    1    0    0    0    0
## 1191  359 56  1  3  3  2  2  1    0    1    0    0    0    0    0    0
## 1192 5871 44  1  2  2  5  2  1    0    1    0    0    0    0    0    0
## 1193 5361 60  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1194 6835 42  2  2  3  4  2  1    0    1    0    1    0    1    0    0
## 1195   91 26  2  1  5  1  2  1    0    0    0    0    0    0    0    0
## 1196 5988 59  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 1197 1575 24  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1198 4364 57  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1199 3029 55  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1200 8759 17  1  4  5  1  2  2    0    1    0    0    0    0    0    0
## 1201 8633 40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1202  736 26  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1203 9085 34  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1204 1446 36  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1205 3059 31  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1206 5604 20  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1207 1104 31  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1208 8439 22  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1209 1036 40  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1210 1922 24  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1211 9285 27  2  1  3  4  2  1    1    0    0    0    0    0    0    0
## 1212 3130 35  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1213 2009 62  2  3  1  5  1  2    0    0    0    0    0    0    0    0
## 1214 7163 26  2  1  6  1  2  2    0    1    0    0    0    0    0    0
## 1215 2696 25  2  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1216 2519 52  1  1  2  5  2  2    0    1    0    0    0    0    0    0
## 1217 3572 70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1218 5331 38  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1219 2529 44  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1220 2036 32  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1221 4469 29  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1222 7485 17  1  4  2  3  2  2    0    1    0    0    0    0    0    0
## 1223 6830 28  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1224 6179 72  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1225 6677 58  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1226 4859 41  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1227 5917 32  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1228 1807 51  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1229 5237 19  1  4  3  1  2  1    0    1    0    1    0    0    0    0
## 1230 5456 40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1231  845 45  1  1  3  5  2  1    1    0    0    0    0    0    0    0
## 1232 2262 31  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1233 4662 34  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1234 3761 27  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1235 6631 25  2  2  3  4  1  1    0    1    0    0    0    0    0    0
## 1236 1651 36  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1237 2724 20  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1238 7433 74  1  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1239  701 27  2  1  4  1  2  1    0    0    0    0    0    0    0    0
## 1240 8717 25  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1241 4036 56  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1242  901 25  2  1  1  3  2  2    0    0    0    1    0    0    0    0
## 1243 1378 29  2  1  5  3  2  1    0    0    0    0    0    0    0    0
## 1244 5435 25  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1245 3173 49  2  1  2  3  2  2    0    1    0    0    0    1    0    0
## 1246 3129 16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 1247 6459 54  2  1  3  5  2  1    1    0    0    0    1    0    0    0
## 1248 3083 50  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1249 7592 16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1250 9392 34  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1251 1596 31  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1252 3741 45  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1253  512 17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1254 4030 54  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1255 7374 29  1  1  6  4  1  1    0    0    0    1    0    0    0    0
## 1256 2635 23  1  4  5  5  1  1    1    0    0    0    0    0    0    0
## 1257 8235 38  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1258  872 46  1  1  5  1  2  1    0    0    1    0    0    0    0    0
## 1259 1383 26  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1260 4440 23  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1261 3020 38  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1262 4510 34  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1263 3155 73  2  3  1  1  1  1    0    1    0    0    0    0    0    0
## 1264 3564 50  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1265 1291 17  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1266 1198 82  1  1  4  1  2  1    0    0    0    0    0    0    1    0
## 1267 3450 54  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1268 1958 51  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1269 5122 17  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1270 5983 53  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 1271  690 29  2  1  3  5  1  2    0    1    0    0    0    0    0    0
## 1272 5542 27  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1273 3977 38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1274 5383 49  2  3  3  3  2  2    0    1    0    0    0    0    0    1
## 1275 1831 23  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1276 5455 33  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1277 8583 50  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 1278 2269 70  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1279 7532 43  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1280 9200 32  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1281 7884 19  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1282  232 29  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 1283 7918 28  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1284 1770 55  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1285 1188 38  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1286 8473 76  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 1287 1907 27  2  1  6  5  1  1    0    1    0    0    0    0    0    0
## 1288 5586 28  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1289 1372 30  1  1  6  3  1  1    1    1    0    0    0    0    0    0
## 1290 8064 31  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1291 7321 46  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1292 3209 63  1  2  1  3  2  2    0    1    0    0    0    0    0    0
## 1293 2285 25  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1294   58 33  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1295   27 26  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1296 1155 28  1  1  5  1  2  1    0    0    1    0    0    0    0    0
## 1297 3773 51  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1298 8544 29  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1299 8291 38  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1300 2424 20  1  4  3  5  2  1    0    1    0    1    0    0    0    0
## 1301 8756 68  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1302 8524 43  2  1  4  1  2  1    0    1    0    0    0    0    0    0
## 1303 6384 21  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1304 2235 45  2  2  3  5  2  2    0    1    0    0    0    0    0    0
## 1305 5556 49  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1306 7809 48  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1307 5929 60  1  4  1  5  2  2    0    1    0    0    0    0    0    0
## 1308 7996 64  2  3  1  2  2  2    0    0    0    1    0    0    0    0
## 1309 5812 17  1  4  2  4  2  2    0    0    0    1    0    0    0    0
## 1310 1288 20  2  2  1  3  2  1    0    0    0    1    0    0    0    0
## 1311  125 28  2  4  7  5  2  1    0    0    0    0    0    0    0    0
## 1312  799 38  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1313 2042 21  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1314 9358 18  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1315    5 28  2  4  3  3  1  1    0    1    0    0    0    0    0    0
## 1316 2944 32  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 1317 8938 30  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 1318 4580 19  1  4  3  1  2  1    0    0    0    1    0    0    0    0
## 1319 5067 17  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1320 8943 49  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1321  972 65  2  2  3  2  2  2    0    1    0    0    0    0    0    0
## 1322 9302 30  1  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1323 3362 22  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1324 1780 27  2  4  2  3  2  2    0    0    0    1    0    0    0    0
## 1325  156 24  1  4  7  5  2  1    0    0    0    0    0    0    0    0
## 1326 1339 20  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1327 6635 36  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 1328 5208 45  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1329 5166 35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1330 3242 75  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1331 7507 28  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1332 8939 28  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 1333 5158 61  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1334 2914 26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1335 2021 56  1  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1336 2483 24  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1337 4731 36  2  1  3  5  1  1    0    1    0    0    0    1    0    0
## 1338  183 34  1  4  2  5  2  1    1    0    0    0    0    0    0    0
## 1339 1200 24  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1340 2872 63  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 1341 6155 37  1  1  1  5  2  1    0    1    0    1    0    0    0    0
## 1342 1293 33  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1343 7764 50  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1344 9093 67  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1345 4015 26  1  1  6  2  2  1    0    1    1    0    0    0    0    0
## 1346  792 21  2  4  3  4  2  1    0    0    0    0    0    0    0    0
## 1347 2972 30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1348 2421 52  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1349 3018 26  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1350 5573 40  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1351 1839 59  2  2  2  4  1  1    0    0    0    0    0    0    0    0
## 1352 5037 88  2  3  1  5  2  2    0    0    0    0    0    0    0    1
## 1353 5685 53  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 1354 5526 49  2  3  3  1  2  1    0    0    0    0    0    0    0    1
## 1355 7887 30  2  1  3  5  1  2    0    1    0    1    0    0    0    0
## 1356 7356 41  1  2  1  1  1  2    0    0    0    1    0    0    0    0
## 1357 2010 56  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 1358 7679 19  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 1359 2624 22  2  4  3  5  2  2    0    0    0    1    0    0    0    0
## 1360 4664 56  2  3  2  5  2  1    0    1    0    0    0    0    0    0
## 1361 5479 24  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1362  731 26  2  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1363 1033 24  2  2  3  5  2  1    0    1    0    1    0    0    0    0
## 1364 4629 65  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1365 6281 18  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 1366 1207 60  2  3  3  5  1  1    0    0    1    0    0    0    0    0
## 1367 3960 24  1  4  3  5  2  2    0    0    0    1    0    0    0    0
## 1368 7070 45  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1369 8464 26  2  1  3  4  1  2    0    0    0    1    0    0    0    0
## 1370 6814 22  2  1  6  3  2  2    0    1    1    1    0    0    0    0
## 1371  702 29  2  4  1  1  2  1    0    0    0    0    0    0    0    0
## 1372  865 36  1  1  3  5  1  1    0    0    1    0    0    0    0    0
## 1373 2699 22  1  4  3  1  2  1    0    1    0    1    0    0    0    0
## 1374 3561 71  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1375 8733 65  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 1376 8475 40  2  2  3  2  2  1    0    0    0    0    0    0    0    0
## 1377 1572 33  1  1  6  1  1  2    0    1    0    0    0    0    0    0
## 1378 5967 36  1  1  5  4  2  1    1    1    0    0    0    0    0    0
## 1379 6067 45  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1380 4410 32  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 1381 3226 33  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1382 4895 38  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1383 2402 28  1  4  3  3  2  1    0    1    1    0    0    0    0    0
## 1384 4378 31  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1385  374 22  1  4  3  3  2  1    1    0    0    0    0    0    0    0
## 1386 3707 40  2  1  3  5  2  1    0    0    1    0    0    0    0    0
## 1387 1618 19  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1388 4419 43  2  1  3  2  1  1    0    1    0    0    0    0    0    0
## 1389 4525 28  2  3  1  4  2  1    0    0    0    1    0    0    0    0
## 1390  423 17  1  4  4  3  2  1    0    0    0    1    0    0    0    0
## 1391 4075 29  1  1  6  4  2  2    0    1    0    1    0    0    0    0
## 1392 8911 83  1  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1393 1334 30  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1394 3800 42  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 1395 4171 18  2  4  2  4  2  1    0    0    0    1    0    0    0    0
## 1396 2509 16  1  4  3  3  2  2    0    0    0    1    0    0    0    0
## 1397 3491 46  1  1  3  1  2  1    1    1    0    0    0    0    0    0
## 1398 8043 48  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1399 6990 45  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1400 7551 30  2  1  3  2  2  1    0    0    1    0    0    0    0    0
## 1401 8985 27  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1402 6465 28  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1403 4810 45  2  1  3  3  1  2    0    0    0    1    0    0    0    0
## 1404 5164 42  1  1  7  1  2  1    1    0    0    0    0    0    0    0
## 1405 1678 70  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1406 9211 45  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 1407 7594 70  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1408 1295 26  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1409 1936 51  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1410 8584 52  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1411 3047 25  1  1  5  1  2  1    0    1    0    0    0    0    0    0
## 1412 8560 56  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1413 8492 22  2  1  1  2  2  2    0    0    0    0    0    0    0    0
## 1414 1781 19  1  4  2  5  2  1    0    1    0    1    0    0    0    0
## 1415 7801 58  1  1  2  4  2  1    0    1    0    0    0    0    0    0
## 1416 1965 60  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1417 2345 34  2  1  1  1  1  1    0    1    0    0    0    0    0    0
## 1418 5305 42  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1419 2797 43  2  2  1  1  2  2    0    0    0    1    0    0    0    0
## 1420 8161 49  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1421 6372 50  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1422 8807 71  2  3  1  1  2  2    0    1    0    1    0    0    0    1
## 1423 9396 58  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1424 8488 40  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1425  343 19  2  4  6  5  1  1    0    1    0    0    0    0    0    0
## 1426 3360 38  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1427 7056 60  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1428 3575 31  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1429 7935 43  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1430 8557 19  2  4  1  1  2  2    0    1    0    0    0    0    0    0
## 1431 4484 30  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 1432  348 16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1433 2087 36  1  1  6  1  1  1    0    0    0    1    0    0    0    0
## 1434 1422 16  2  4  2  4  2  2    0    0    0    0    0    0    0    0
## 1435  767 60  2  2  2  5  1  2    0    0    0    0    0    0    0    0
## 1436 3298 63  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1437 4297 29  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1438 7848 25  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1439 5365 35  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1440 8881 65  1  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1441 2950 30  2  1  1  5  2  1    0    0    0    1    0    0    0    0
## 1442 4293 64  1  2  3  5  2  1    1    0    0    0    0    0    0    0
## 1443 8374 34  2  2  3  1  1  1    0    1    0    1    0    0    0    0
## 1444 4902 38  2  4  3  4  1  1    0    0    1    0    0    0    0    0
## 1445   92 44  1  1  2  1  2  1    0    0    0    0    0    0    0    0
## 1446 6403 38  2  1  1  3  2  2    0    1    0    1    0    0    0    1
## 1447 6233 36  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1448 6072 63  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1449 5748 40  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1450 2166 29  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1451 7851 28  2  1  3  3  2  2    0    0    0    0    0    0    0    1
## 1452 6818 43  1  1  7  5  2  1    1    1    0    0    0    0    0    0
## 1453 1495 30  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1454 7392 40  1  1  3  1  2  1    1    1    0    1    0    0    0    0
## 1455 7927 50  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1456 6379 55  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1457 9430 35  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1458 9425 23  1  1  5  4  2  1    0    1    1    0    0    0    0    0
## 1459 4655 33  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1460  105 55  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1461 8402 62  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1462 8625 38  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1463 6716 63  1  1  3  1  2  1    0    1    0    0    1    0    0    0
## 1464 9166 58  1  1  4  5  2  1    1    1    0    0    0    0    0    0
## 1465 7906 20  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 1466 5913 45  1  1  5  5  2  2    0    1    0    1    0    0    0    0
## 1467 7662 37  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1468 5862 20  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1469 6852 52  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1470 6859 47  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1471 4212 72  1  1  1  1  2  2    0    1    0    0    0    0    0    1
## 1472 8974 45  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1473 1332 43  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1474  375 23  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1475 8762 36  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 1476 3790 31  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1477 1392 36  2  4  3  4  2  1    0    1    0    1    0    0    0    0
## 1478 6064 48  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1479 1336 27  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1480 1553 58  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1481 3013 17  1  4  6  3  2  2    0    0    0    1    0    0    0    0
## 1482 1891 42  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1483 2787 23  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1484 4381 35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1485 1172 51  1  1  6  1  1  1    1    0    0    0    0    0    0    0
## 1486 4809 50  2  3  1  2  2  1    0    0    0    0    0    0    0    0
## 1487  555 22  2  2  1  5  2  1    0    0    0    0    0    0    0    0
## 1488 8519 23  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1489 5053 33  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 1490 2309 70  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1491 4393 48  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1492 6519 23  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1493  600 30  1  1  3  4  1  1    1    1    0    0    0    0    0    0
## 1494 6784 29  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1495 3591 52  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1496 9115 64  1  3  3  1  2  2    0    1    0    1    0    0    0    1
## 1497  279 23  2  2  6  4  2  1    0    0    1    0    0    0    0    0
## 1498 6571 25  2  4  3  4  2  2    0    0    1    0    0    0    0    0
## 1499 6373 21  1  1  5  3  2  1    0    0    0    1    0    0    0    0
## 1500 5029 41  1  1  7  1  2  1    1    1    1    0    0    1    0    0
## 1501 1943 44  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1502 7340 28  2  3  2  3  2  2    0    0    0    0    0    0    0    0
## 1503 3685 53  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 1504  961 83  1  3  2  1  2  2    0    0    0    0    1    0    0    0
## 1505 3751 49  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1506 6380 55  1  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1507 6861 48  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1508 5765 32  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1509 3849 69  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 1510 4577 25  1  1  5  5  2  2    0    1    0    1    0    0    0    0
## 1511 7614 35  2  1  3  3  2  1    0    1    1    0    0    0    0    0
## 1512 4627 70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1513 1487 22  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 1514 2816 35  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1515 8980 52  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1516 3331 20  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1517 4576 47  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1518 2319 44  2  1  3  5  1  2    0    0    0    0    0    0    0    0
## 1519  278 40  2  3  5  1  1  1    0    1    0    0    0    0    0    0
## 1520 3801 26  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1521 4115 36  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1522 7283 52  2  1  5  1  1  1    0    0    1    0    0    0    0    0
## 1523 5299 35  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 1524  957 35  1  1  3  1  2  1    0    1    1    1    0    0    0    0
## 1525 4013 39  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1526 5807 40  1  1  6  1  2  1    0    1    1    0    1    0    0    0
## 1527 4281 76  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1528 2522 60  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1529  164 23  1  4  7  4  2  1    0    0    0    0    0    0    0    0
## 1530 8448 63  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1531 5115 75  2  2  1  5  2  1    0    1    0    0    0    0    0    0
## 1532 9218 23  2  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1533 5592 22  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 1534 6530 22  1  4  3  4  2  1    0    1    0    1    0    0    0    0
## 1535 2821 26  1  1  3  4  2  2    0    1    0    0    0    0    0    0
## 1536 3768 34  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1537 3647 32  1  1  4  3  1  2    0    1    0    0    0    0    0    0
## 1538 8356 46  2  1  2  2  2  2    0    1    0    1    0    0    0    0
## 1539 7624 31  1  1  4  1  2  1    0    1    0    1    0    0    0    0
## 1540 2266 24  1  4  1  5  2  1    0    1    0    0    0    0    0    0
## 1541 1142 42  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1542 2678 24  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 1543 6577 16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1544 5751 59  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1545 4129 26  1  4  6  3  2  2    0    0    0    0    0    0    0    0
## 1546 6667 70  1  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1547 1898 34  2  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1548 5999 25  1  4  6  4  2  1    0    0    1    0    0    0    0    0
## 1549 2308 39  2  3  2  2  2  2    0    0    0    1    0    0    0    0
## 1550 1856 35  2  2  3  4  1  2    0    1    0    0    0    0    0    0
## 1551 6964 48  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1552 1103 21  1  4  6  5  2  1    0    1    0    1    0    0    0    0
## 1553 2286 16  1  4  2  3  2  1    0    1    0    1    0    0    0    0
## 1554  486 23  2  4  3  5  2  1    0    0    1    0    0    0    0    0
## 1555 7254 17  1  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1556 6335 30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1557 6227 26  2  4  6  5  2  2    0    1    0    0    0    0    0    0
## 1558 6974 39  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1559 2637 36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1560 2053 63  2  3  1  1  2  2    0    1    1    0    0    0    0    0
## 1561 9387 71  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1562 4483 52  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1563 3563 32  2  3  3  5  2  1    0    1    0    0    0    0    0    0
## 1564 2715 38  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1565 2125 45  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1566 2133 42  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1567 3730 47  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1568 6250 65  2  3  1  1  1  2    0    0    0    0    0    0    0    0
## 1569 4591 25  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1570 5315 26  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1571 2030 22  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1572 4329 47  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1573 2498 35  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1574 5942 42  2  2  1  5  2  1    0    0    0    1    0    0    0    0
## 1575 4190 47  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1576 6416 50  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1577 5218 52  1  2  2  1  1  2    0    1    0    0    0    0    0    0
## 1578 7174 19  1  4  6  1  2  1    0    0    0    1    0    0    0    0
## 1579 4523 23  1  4  3  3  1  1    0    1    0    0    0    0    0    0
## 1580 9176 75  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1581 3391 39  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1582 8550 45  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1583 4444 34  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1584 4472 27  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1585 3510 34  1  1  3  5  1  1    0    1    0    1    0    0    0    0
## 1586 3185 41  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1587 3377 22  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1588 7853 38  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1589  522 32  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1590 4463 60  1  3  2  1  2  1    0    1    0    0    0    0    0    0
## 1591 5560 38  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1592 2236 28  1  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1593 7471 35  2  1  6  5  1  1    0    1    0    0    0    0    0    0
## 1594 1110 18  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 1595 3651 28  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1596 6149 20  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1597 9133 60  2  3  3  1  2  1    0    0    0    1    0    0    0    0
## 1598 5924 23  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1599 7706 35  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1600 1584 26  1  1  6  5  2  1    0    0    1    0    0    0    0    0
## 1601 5717 24  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1602 9029 39  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 1603 6332 19  2  1  2  4  2  2    0    0    1    0    0    0    0    0
## 1604 7361 19  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1605 8050 32  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1606 1460 37  2  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1607  930 37  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1608  344 53  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 1609 8214 19  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1610  186 28  2  4  3  4  2  1    1    0    0    0    0    0    0    0
## 1611 1079 25  2  4  7  4  2  1    0    1    0    0    0    0    0    0
## 1612 8092 32  2  2  3  4  2  1    0    1    0    0    0    0    0    0
## 1613 7799 45  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1614 8758 17  1  1  1  5  2  1    0    0    0    1    0    0    0    0
## 1615 1181 32  2  1  3  1  2  1    0    1    1    0    0    0    0    0
## 1616 4161 31  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 1617  484 18  2  4  5  3  2  1    0    0    0    1    0    0    0    0
## 1618 4285 17  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1619 8299 38  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1620 8456 42  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1621 4938 42  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1622 6521 30  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1623 2759 86  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1624 8442 30  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1625 8667 35  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1626 6477 32  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1627 7744 45  2  3  2  1  2  2    0    0    0    1    0    0    0    0
## 1628 4328 26  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1629 7217 38  2  1  3  1  2  2    1    1    0    0    0    0    0    0
## 1630 1751 21  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1631 9417 28  1  1  1  4  2  2    0    0    0    1    0    0    0    0
## 1632  542 35  2  1  3  5  1  1    0    0    0    0    0    0    0    0
## 1633 4907 23  2  1  5  1  1  2    0    0    0    1    0    0    0    0
## 1634 5789 29  2  1  1  3  1  2    0    1    0    1    0    0    0    0
## 1635 6128 25  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1636 3493 40  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1637 8537 25  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1638 6195 70  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1639 1766 26  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1640  962 41  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1641 1736 29  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1642 6535 25  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1643  524 62  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 1644 2080 32  2  4  3  5  2  1    0    1    0    1    0    0    0    0
## 1645 8403 26  2  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1646 2836 16  2  3  2  3  2  2    0    1    0    1    0    0    0    0
## 1647 8002 26  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1648 4950 25  2  1  6  3  1  2    0    1    0    0    0    0    0    0
## 1649 1518 23  2  1  7  3  2  1    0    0    0    0    0    0    0    0
## 1650 7947 33  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1651 4182 52  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1652 4830 27  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1653 2618 73  2  3  1  3  2  1    0    0    1    0    0    0    0    0
## 1654 2247 26  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1655 1318 20  2  4  3  4  2  1    1    1    0    0    0    0    0    0
## 1656 1381 38  1  1  5  1  2  1    1    0    0    0    0    0    0    0
## 1657  586 25  1  1  7  5  2  1    0    0    0    0    0    0    0    0
## 1658 2977 26  2  1  6  4  2  1    0    1    0    0    0    0    0    0
## 1659 5823 39  1  1  2  5  2  1    0    1    0    1    0    0    0    0
## 1660 1435 40  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1661 4027 65  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1662 6236 20  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1663  672 47  1  1  3  5  1  1    0    1    0    1    0    0    0    0
## 1664 8704 40  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1665 9327 25  1  4  6  3  1  1    0    0    0    0    0    0    0    0
## 1666 8338 31  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1667  504 37  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1668 2625 19  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 1669 9421 65  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 1670 9411 59  1  1  1  1  1  1    0    0    0    1    0    0    0    0
## 1671 1322 18  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 1672  873 30  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1673  877 23  2  4  6  3  2  2    0    1    0    0    0    0    0    0
## 1674  134 24  1  1  3  4  2  1    1    0    0    0    0    0    0    0
## 1675 4486 45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1676 2941 53  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1677  830 29  2  1  3  4  1  1    0    1    0    0    0    0    0    0
## 1678  213 26  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1679 1163 21  1  4  5  3  2  1    0    0    1    0    0    0    0    0
## 1680 9344 34  1  1  3  1  2  2    0    0    1    0    0    0    0    0
## 1681  471 36  1  1  3  4  2  1    0    0    1    1    0    0    0    0
## 1682 1323 39  2  2  7  1  2  1    0    1    0    0    0    0    0    0
## 1683 8451 18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1684 2871 41  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1685 1329 34  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 1686 6258 45  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1687 8240 42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1688 4309 40  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1689 9337 32  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1690 3422 44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1691 8914 28  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1692 7057 80  2  3  1  1  1  2    0    1    0    0    0    0    0    1
## 1693  856 57  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 1694 7898 40  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1695 8017 40  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 1696  993 30  2  1  2  3  1  1    0    1    0    1    0    0    0    0
## 1697 1456 80  2  3  1  5  2  1    0    0    0    0    0    0    0    0
## 1698 8530 70  2  3  2  1  1  2    0    1    0    0    0    0    0    0
## 1699 8249 74  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1700 8784 30  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1701 4944 45  2  3  1  4  2  2    0    1    0    1    0    0    0    0
## 1702 6405 70  1  1  1  1  1  1    0    0    0    1    0    0    0    0
## 1703 7541 40  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 1704  333 40  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1705 2653 32  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1706 8042 36  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1707 7102 39  1  1  3  4  2  1    0    1    0    1    0    0    0    0
## 1708 3986 21  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1709 7607 58  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1710 5324 24  1  1  3  3  2  1    0    0    1    1    0    0    0    0
## 1711 4645 42  2  2  5  1  2  1    0    1    0    0    0    0    0    0
## 1712 3252 40  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1713 9067 68  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1714 3290 42  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1715 1090 17  2  1  2  5  2  2    0    0    0    0    0    0    0    0
## 1716 8200 50  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1717 5653 60  2  2  1  1  2  1    0    0    0    0    0    0    0    0
## 1718 7286 38  2  2  3  4  2  1    0    1    0    0    0    0    0    0
## 1719 4991 44  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1720 3637 51  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 1721 2843 42  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1722 6296 76  1  3  2  1  2  1    0    1    0    0    0    0    0    1
## 1723 4989 45  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1724   80 43  2  4  3  1  1  1    0    1    0    0    0    0    0    0
## 1725 6777 24  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1726 7391 78  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1727 4721 45  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1728 7938 17  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 1729 6753 73  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1730 4375 47  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 1731 8897 39  2  2  3  1  2  1    0    1    1    1    0    0    0    0
## 1732 3608 43  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1733 4608 35  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1734 7364 47  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1735 5754 22  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1736 1872 18  1  4  3  5  2  1    0    0    0    0    0    0    0    0
## 1737 6401 22  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1738 5727 46  2  4  2  5  2  2    0    1    0    0    0    0    0    0
## 1739 5087 49  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1740 9444 21  1  4  5  5  2  1    0    1    0    1    0    0    0    0
## 1741 3744 38  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 1742 2430 90  1  3  1  1  1  2    0    1    0    0    0    0    0    0
## 1743 4539 17  2  1  3  5  1  2    0    1    0    0    0    0    0    0
## 1744  214 28  2  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1745 5555 43  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1746  609 19  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1747 4509 27  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1748 5950 60  2  3  2  2  2  2    0    1    0    1    0    0    0    0
## 1749 3579 52  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1750 7235 37  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1751 7795 47  2  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1752 4807 20  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 1753 1098 16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1754 2122 26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1755 2601 32  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 1756 5675 25  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1757 3474 65  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1758 8728 69  2  3  1  1  1  2    0    1    0    0    0    0    0    0
## 1759 2837 17  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1760 5778 43  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1761 5886 80  2  3  2  5  2  2    0    0    0    0    0    0    0    0
## 1762 3743 23  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1763 1316 28  2  4  7  4  2  1    0    0    0    0    0    0    0    0
## 1764 6666 47  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1765 7059 31  1  1  5  5  2  1    0    1    0    0    0    0    0    0
## 1766 4020 20  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 1767  130 78  1  3  7  1  2  1    0    0    1    0    0    0    1    0
## 1768 4953 21  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1769 7757 17  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 1770  715 34  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1771   74 28  2  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1772 7376 30  1  2  6  1  2  1    1    0    0    0    0    0    0    0
## 1773 6864 25  2  1  2  1  2  1    0    0    0    0    0    0    0    0
## 1774 8111 20  2  1  1  5  2  2    0    1    0    0    0    0    0    0
## 1775 4556 18  2  1  2  5  2  2    0    0    0    0    0    0    0    0
## 1776  824 46  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1777 8669 40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1778 4370 25  2  1  5  3  2  2    0    0    1    0    0    0    0    0
## 1779 7014 28  1  1  3  4  2  1    0    0    0    1    0    0    0    0
## 1780 5614 55  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1781 8293 20  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 1782 7963 45  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1783 1214 58  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 1784 6582 27  2  1  5  5  2  1    0    1    0    1    0    0    0    0
## 1785 1667 48  2  3  3  1  2  1    0    0    1    0    0    0    0    0
## 1786 4312 47  2  4  3  1  2  2    0    1    0    0    0    0    0    0
## 1787 4426 20  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1788 5945 45  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1789 8421 52  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1790 9266 75  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1791 9118 57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1792  680 25  2  4  6  4  2  1    1    0    1    0    0    0    0    0
## 1793  368 66  2  3  1  1  2  1    0    0    0    0    0    0    0    0
## 1794 7320 38  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1795 4313 40  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1796 4513 29  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1797 6337 45  1  1  2  4  1  2    0    0    0    1    0    0    0    0
## 1798 8972 22  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1799 1180 67  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1800 6249 35  2  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1801 6968 38  2  3  6  1  1  2    0    1    0    0    0    0    0    0
## 1802 3789 77  1  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1803 9098 77  2  3  3  3  2  2    0    1    0    0    0    0    0    0
## 1804 7798 18  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1805 2419 52  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1806 9284 34  1  4  3  3  2  1    0    1    1    0    0    0    0    0
## 1807 8404 35  2  1  6  3  2  1    1    0    0    0    0    0    0    0
## 1808 4669 22  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1809 4983 18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1810 9217 19  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 1811  256 21  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1812 2876 28  2  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1813  986 75  1  1  1  1  2  1    0    0    0    0    0    0    0    0
## 1814 4541 59  2  1  1  1  1  1    0    1    0    0    0    0    0    0
## 1815 8802 40  2  2  3  1  1  2    0    0    0    0    0    0    0    0
## 1816 4746 48  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1817 4540 60  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1818 1956 70  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1819 7707 43  1  1  6  1  2  1    0    1    1    0    0    0    0    0
## 1820 2410 24  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1821  171 37  1  1  2  4  1  1    1    1    0    1    0    0    0    0
## 1822 4559 35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1823 4446 25  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1824 3884 32  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1825 2520 50  2  3  1  1  2  1    0    0    0    0    0    0    0    1
## 1826 8636 29  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1827 3980 17  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 1828 5411 32  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 1829 1900 27  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1830 6324 38  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1831 3174 45  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1832 1292 68  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1833  166 28  2  4  7  5  2  1    0    0    0    1    0    0    0    0
## 1834 2669 26  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1835 2845 39  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1836 9215 50  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1837 4786 34  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1838 7596 18  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1839 4750 22  2  1  5  3  2  1    0    1    0    0    0    0    0    0
## 1840 6363 80  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1841 5444 35  1  1  1  5  2  1    0    1    0    1    0    0    0    0
## 1842 1434 50  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1843  113 19  2  4  3  5  2  1    0    0    1    0    0    0    0    0
## 1844 2584 37  1  2  4  1  2  1    0    1    0    1    0    0    0    0
## 1845 6431 58  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1846 6407 34  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1847  569 22  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1848 8711 35  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 1849  526 50  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1850 4242 35  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1851 8525 24  2  4  7  1  2  1    0    0    0    0    0    0    0    0
## 1852 8585 50  1  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1853 3900 55  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1854 9189 26  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1855 5171 18  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1856 4948 37  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1857 5887 60  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1858  503 71  1  1  7  1  1  1    0    0    0    0    0    0    1    0
## 1859 8205 38  2  1  6  4  1  1    0    0    0    1    0    0    0    0
## 1860 7214 45  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1861 8743 60  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1862 8024 80  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1863 9008 28  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1864 5381 43  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1865 7053 38  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1866 1745 50  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1867 4700 60  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1868 1599 20  2  1  5  3  2  2    0    0    0    1    0    0    0    0
## 1869 3791 18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1870 3227 50  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1871 3107 25  1  2  5  3  1  1    0    0    0    1    0    0    0    0
## 1872 1715 29  2  1  1  3  1  2    0    1    0    0    0    0    0    0
## 1873 6161 38  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1874 8535 38  2  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1875 3859 20  2  4  5  3  2  1    0    0    0    1    0    0    0    0
## 1876 2957 22  1  2  3  3  2  2    0    1    0    1    0    0    0    0
## 1877 6208 38  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1878  776 40  2  3  3  5  2  2    0    0    0    1    0    0    0    0
## 1879 1441 52  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1880 2859 50  1  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1881 8720 46  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1882 2728 34  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1883 2723 36  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1884 6967 43  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1885  519 32  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1886  318 36  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1887 3498 52  1  1  7  5  1  1    1    1    0    0    0    0    0    0
## 1888 3352 19  2  4  1  1  2  1    0    0    0    0    0    0    0    0
## 1889 8521 23  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1890 6693 66  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1891 8945 92  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1892 5245 36  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1893 9292 25  2  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1894 4201 80  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1895 1603 40  1  1  2  1  1  2    0    1    1    1    0    0    0    0
## 1896 3931 58  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1897   65 30  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 1898 3487 35  1  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1899 6895 43  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1900  909 29  2  1  3  5  2  1    0    1    1    0    0    0    0    0
## 1901 7327 37  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1902 5367 24  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1903 3623 22  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1904 8797 58  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1905 1660 32  1  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1906 8367 59  2  3  3  1  1  1    0    0    1    0    0    0    0    0
## 1907 3723 20  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1908  596 19  2  4  1  5  2  1    0    0    0    1    0    0    0    0
## 1909 7556 32  2  2  3  1  1  2    0    1    0    1    0    0    0    0
## 1910  116 19  2  4  5  3  2  1    0    0    0    0    0    0    0    0
## 1911 3280 59  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1912 6317 32  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1913 5891 25  1  4  3  5  2  2    0    0    0    0    0    0    0    0
## 1914 1684 28  1  4  7  3  2  1    0    0    0    0    0    0    0    0
## 1915  633 65  2  1  1  1  2  2    0    1    0    0    0    0    0    1
## 1916 5779 46  2  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1917 4447 28  2  1  6  5  1  1    0    0    0    0    0    0    0    0
## 1918 5634 65  2  3  2  1  1  1    0    1    0    0    0    0    0    0
## 1919  613 26  1  1  6  3  2  1    0    1    1    1    0    0    0    0
## 1920 3658 41  2  1  3  5  2  1    1    0    0    1    0    0    0    0
## 1921 2094 25  1  4  4  3  2  1    1    1    0    0    0    0    0    0
## 1922  354 28  1  1  7  5  2  1    0    1    0    0    0    0    0    0
## 1923  301 20  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1924 4048 22  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1925 9272 24  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1926 5358 35  2  3  2  3  2  1    0    0    0    1    0    0    0    0
## 1927 9100 70  1  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1928 7496 40  1  1  3  1  2  2    0    0    1    0    0    0    0    0
## 1929 8622 57  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1930 5103 31  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1931 7855 55  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 1932 7784 29  1  1  7  4  2  1    1    1    0    0    0    0    0    0
## 1933 8919 78  1  1  6  2  1  1    0    1    0    1    0    0    0    0
## 1934 5180 38  2  1  1  5  2  2    0    0    0    1    0    0    0    0
## 1935 5889 26  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1936 7696 36  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 1937 5342 45  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1938 3056 28  2  2  3  4  2  2    0    0    0    1    0    0    0    0
## 1939 6446 35  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1940 4981 60  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1941 7687 45  2  3  3  5  2  2    0    0    0    0    0    0    0    0
## 1942 8651 21  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1943 5899 78  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1944 6455 44  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1945 8462 42  1  1  3  1  2  1    0    1    0    0    1    0    0    0
## 1946 8581 25  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1947 6927 28  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1948 6759 24  1  1  5  5  1  1    1    0    0    0    0    0    0    0
## 1949 7515 32  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1950 7654 28  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1951 6022 21  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1952  165 21  1  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1953 4899 45  2  3  3  3  2  2    0    1    0    1    0    0    0    0
## 1954 2108 25  2  1  3  3  1  1    0    0    0    0    0    0    0    0
## 1955 9178 74  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1956 2141 36  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1957 7426 25  2  1  3  2  2  2    0    0    0    0    0    0    0    0
## 1958 7604 23  2  2  3  5  2  1    0    1    0    1    0    0    0    0
## 1959 6269 55  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 1960 2812 24  2  1  6  1  1  1    0    0    1    0    0    0    0    0
## 1961 5933 28  2  1  5  3  2  2    0    0    0    0    0    0    0    0
## 1962 2736 24  2  4  3  3  2  1    0    0    1    0    0    0    0    0
## 1963 6913 74  1  1  3  1  2  1    0    1    0    0    0    0    0    1
## 1964 9156 19  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1965 8803 30  2  2  3  1  1  2    0    0    0    0    0    0    0    0
## 1966  339 17  1  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1967 3601 32  2  4  3  4  2  2    0    1    0    0    0    0    0    0
## 1968 4906 35  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1969 4067 35  1  4  5  1  2  1    0    0    0    1    0    0    0    0
## 1970 7819 70  1  2  1  1  2  1    0    0    0    0    0    0    0    0
## 1971 5226 19  2  4  2  3  2  1    0    0    0    0    0    0    0    0
## 1972 3472 24  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1973 1582 33  2  1  3  3  1  2    0    0    1    0    0    1    0    0
## 1974 5323 57  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1975 6438 20  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1976   18 41  2  1  2  5  2  1    0    0    0    0    0    0    0    0
## 1977 7943 38  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1978 7650 19  1  4  5  6  2  2    0    0    0    0    0    0    0    0
## 1979 3127 47  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1980 3061 29  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1981 4676 32  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 1982 6879 52  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1983 5354 31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1984 5800 70  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1985 2241 16  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1986 3135 34  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 1987 4527 25  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1988 3303 45  1  1  3  1  1  2    0    0    0    1    0    0    0    0
## 1989 4389 58  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1990 7704 30  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1991 5912 24  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1992 9241 57  2  2  3  4  1  1    0    0    0    1    0    0    0    0
## 1993 6977 35  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1994 6775 18  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1995  748 35  1  1  7  4  1  1    1    0    0    0    0    0    0    0
## 1996 5681 30  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 1997 4703 66  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 1998 8236 28  2  1  2  5  2  1    0    0    1    0    0    0    0    0
## 1999 5059 25  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2000 9263 30  2  1  2  4  2  1    0    0    0    0    0    1    0    0
## 2001 8871 31  1  1  3  3  1  2    0    1    0    0    0    0    0    0
## 2002 5998 52  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2003 8774 49  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2004 1128 35  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 2005 1592 26  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2006 1011 16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 2007  742 35  2  3  6  1  2  1    0    1    0    0    0    0    0    0
## 2008 2088 43  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 2009 2253 25  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2010 6103 41  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2011 9258 28  2  1  3  5  2  1    0    0    1    0    0    0    0    0
## 2012 6871 43  2  3  3  3  2  1    0    0    0    1    0    0    0    0
## 2013 5246 27  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 2014 6808 36  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 2015 6326 46  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 2016 4159 37  2  2  3  2  2  1    0    1    0    0    0    0    0    0
## 2017 2906 34  1  1  1  1  2  2    1    0    0    0    0    0    0    0
## 2018 5267 36  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 2019 6539 23  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 2020 9319 20  1  4  3  1  2  2    0    0    0    1    0    0    0    0
## 2021 5242 39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2022 5421 40  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 2023 2468 31  2  1  7  5  2  1    1    0    0    1    0    0    0    0
## 2024   38 35  1  1  3  3  1  1    0    1    0    0    0    0    0    0
## 2025 6930 48  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 2026 3646 26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2027 1694 24  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2028 4218 22  2  1  5  3  2  2    0    0    0    0    0    0    0    0
## 2029 8423 26  1  4  3  3  2  2    0    1    0    1    0    0    0    0
## 2030 5260 22  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2031  146 60  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 2032 3405 35  2  2  3  4  1  1    0    0    0    1    0    0    0    0
## 2033 4279 47  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2034 7683 22  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2035  399 16  2  4  3  4  2  2    0    0    0    0    0    0    0    0
## 2036 7409 29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 2037 5355 38  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 2038 1437 30  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 2039 4574 33  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2040  263 28  2  1  6  4  2  1    0    1    0    1    0    0    0    0
## 2041 5197 25  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 2042 5606 27  2  1  1  5  1  2    0    1    0    0    0    0    0    0
## 2043   41 70  1  1  2  1  1  1    0    0    0    0    1    0    0    0
## 2044 5799 51  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2045 3259 21  2  4  6  3  2  1    0    1    0    0    0    0    0    0
## 2046  403 35  1  1  6  1  1  1    0    0    1    0    0    0    0    0
## 2047 5088 19  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 2048  308 23  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 2049 5239 73  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 2050 8063 45  2  2  3  1  2  2    0    1    0    0    0    0    0    1
## 2051 4812 63  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2052  476 56  1  3  3  4  2  1    1    0    0    0    0    0    0    0
## 2053 7824 75  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 2054 5910 18  1  4  5  3  2  1    0    1    0    0    0    0    0    0
## 2055 9081 55  1  1  3  2  2  1    0    1    0    1    0    0    0    0
## 2056 4998 32  2  4  6  4  2  1    0    0    0    1    0    0    0    0
## 2057 3451 20  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 2058 4111 19  2  1  5  2  2  1    0    1    1    0    0    0    0    0
## 2059 5478 73  2  3  3  1  2  1    0    0    0    0    0    0    1    0
## 2060 8133 39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2061 2609 62  1  1  1  4  2  1    0    0    1    0    0    0    0    0
## 2062  943 59  1  2  3  1  1  2    0    1    0    0    0    0    0    0
## 2063 2121 29  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 2064 5583 24  1  1  5  3  2  1    0    1    0    1    0    0    0    0
## 2065  109 34  2  1  7  3  1  1    0    1    0    1    1    0    0    0
## 2066 3268 20  2  4  5  4  2  1    0    1    0    0    0    0    0    0
## 2067 2591 65  2  3  2  3  2  2    0    0    0    0    0    0    0    1
## 2068 6068 20  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 2069 9318 37  2  2  3  1  2  1    0    0    1    0    0    0    0    0
## 2070 7191 31  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 2071 3865 30  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2072 9012 47  1  2  3  1  2  2    0    1    1    0    0    0    0    0
## 2073 4188 38  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 2074 4054 65  2  2  2  1  2  2    0    1    0    1    0    0    0    0
## 2075 2304 32  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 2076 4215 67  1  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2077 2257 42  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2078 4098 35  1  1  7  1  2  1    1    1    0    0    0    0    0    0
## 2079 2224 57  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 2080 3036 17  2  4  2  3  2  1    0    1    1    0    0    0    0    0
## 2081 8663 20  2  4  6  1  2  2    0    1    0    1    0    0    0    0
## 2082 6428 21  2  1  5  2  2  2    0    0    0    0    0    0    0    0
## 2083 3349 24  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 2084 3100 27  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 2085 4643 60  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 2086 1685 54  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2087 7137 24  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2088 8145 19  2  4  6  4  2  2    0    0    0    0    0    0    0    0
## 2089 3596 40  2  2  3  5  2  1    0    0    0    1    0    0    0    0
## 2090 7297 24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2091 7775 32  2  2  3  3  2  1    0    0    1    0    0    0    0    0
## 2092  642 40  1  1  1  4  1  1    0    0    1    0    0    0    0    0
## 2093 5075 66  1  1  1  2  1  1    0    1    0    0    0    0    0    0
## 2094 7790 64  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 2095 3302 36  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2096 3089 17  1  4  2  1  2  2    0    0    0    0    0    0    0    0
## 2097 6427 31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2098 8077 56  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2099 6102 19  1  4  3  3  2  2    0    0    0    1    0    0    0    0
## 2100 3282 47  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 2101 6054 84  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2102 4864 25  1  1  3  4  2  2    0    1    0    1    0    0    0    0
## 2103 7770 46  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 2104 1360 38  1  1  6  4  2  1    0    1    0    0    0    0    0    0
## 2105 1924 36  1  1  3  5  1  1    0    0    1    0    0    0    0    0
## 2106 5752 27  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2107 4789 65  2  3  2  1  2  1    0    1    0    0    0    0    0    0
## 2108 4516 48  1  1  3  1  2  2    0    1    1    0    0    0    0    0
## 2109 7923 35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2110 7895 88  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2111 4386 50  1  1  6  1  1  1    1    0    0    0    0    0    0    0
## 2112 6454 59  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2113 3095 54  2  3  3  1  2  2    0    1    0    1    0    0    0    1
## 2114 4972 18  2  1  2  3  1  1    0    0    0    0    0    0    0    0
## 2115 4835 44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2116  990 53  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2117 2076 26  1  1  3  2  2  1    0    1    0    1    0    0    0    0
## 2118 5973 20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2119 1001 36  2  1  6  1  2  1    1    0    1    0    0    0    0    0
## 2120 3364 23  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 2121 1273 49  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2122 6400 45  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2123 7095 28  2  2  6  5  2  2    0    1    0    1    0    0    0    0
## 2124 8136 16  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 2125 7085 38  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2126 1714 31  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 2127 4573 60  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2128 6045 43  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 2129 5116 22  2  1  5  4  2  1    0    1    0    1    0    0    0    0
## 2130 6203 70  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 2131 6027 23  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 2132 1717 30  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 2133 7463 50  2  1  2  5  2  2    0    0    0    1    0    0    0    0
## 2134 2779 21  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2135 5351 37  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2136 6043 20  1  4  3  3  2  1    0    0    1    1    0    0    0    0
## 2137 4230 20  2  2  2  3  2  2    0    1    0    1    0    0    0    0
## 2138 4555 22  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2139 4837 51  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2140 9414 55  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 2141 2293 23  2  1  6  2  2  1    0    1    0    0    0    0    0    0
## 2142  858 20  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2143 7241 32  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2144 1230 34  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2145 2089 38  2  3  3  1  1  1    0    1    0    0    0    0    0    0
## 2146 1562 28  1  4  7  5  2  1    1    0    0    0    0    0    0    0
## 2147 9281 27  1  2  5  5  2  1    0    1    0    0    0    0    0    0
## 2148  323 25  1  4  6  5  2  1    0    1    0    1    0    0    0    0
## 2149 6850 21  1  4  3  4  2  1    0    0    1    0    0    0    0    0
## 2150 1998 40  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2151 3581 64  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2152 1558 50  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2153 7161 26  2  4  1  5  2  1    0    1    0    1    0    0    0    0
## 2154 9366 20  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2155  119 64  2  1  7  5  2  1    0    1    0    0    0    0    1    0
## 2156 8114 28  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 2157 2665 35  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2158 2574 28  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2159 1427 27  2  3  5  3  2  1    0    0    1    0    0    0    0    0
## 2160  669 47  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 2161 8851 58  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2162 1420 25  1  4  7  5  2  1    0    1    0    0    0    0    0    0
## 2163 1482 21  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 2164 1408 26  2  1  6  4  1  1    1    0    0    0    0    0    0    0
## 2165 7897 62  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 2166 4135 25  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 2167  413 28  2  4  6  4  1  1    0    1    0    0    0    0    0    0
## 2168 3548 25  2  2  5  4  2  1    0    0    1    0    0    0    0    0
## 2169 6724 59  1  1  2  1  1  2    0    0    0    1    0    0    0    0
## 2170 5089 58  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 2171 6594 41  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 2172 5837 35  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2173  326 21  1  4  6  5  2  1    0    0    0    0    0    0    0    0
## 2174 2782 20  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 2175 7228 33  1  1  6  4  1  1    1    0    0    0    0    0    0    0
## 2176  816 60  1  2  7  5  1  1    0    1    0    0    0    0    0    0
## 2177 8490 94  1  3  3  3  2  2    0    0    0    0    0    0    0    0
## 2178 7641 32  2  1  5  5  2  1    0    1    0    0    0    0    0    0
## 2179 4256 38  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2180 5894 28  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2181 2191 52  2  3  1  5  2  1    0    1    0    0    0    0    0    0
## 2182 7759 34  2  2  1  1  2  1    0    1    0    0    0    0    0    0
## 2183 2986 29  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 2184 6286 52  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2185 5220 56  1  3  1  1  2  2    0    1    0    1    0    0    0    0
## 2186 6013 19  2  1  3  3  1  2    0    1    0    1    0    0    0    0
## 2187 2265 46  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 2188  730 34  1  1  3  5  1  1    1    0    0    0    0    0    0    0
## 2189 7581 28  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 2190 2015 22  1  4  3  1  2  1    0    0    0    1    0    0    0    0
## 2191 4690 32  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 2192  111 35  2  2  3  4  2  1    0    1    0    0    0    0    0    0
## 2193 5665 48  1  3  3  1  2  2    0    1    0    0    0    0    0    0
## 2194 4415 35  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 2195 1986 40  1  2  3  1  2  2    0    0    0    1    0    0    0    0
## 2196 5016 48  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 2197 7652 54  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2198 7536 42  2  3  6  5  2  1    1    0    0    0    0    0    0    0
## 2199 4317 20  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 2200  449 54  1  1  4  1  2  1    1    0    0    0    0    0    0    0
## 2201 1216 56  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 2202 2336 59  2  2  7  5  2  1    1    1    0    0    0    0    0    0
## 2203   56 66  2  3  1  1  2  1    0    0    0    0    1    0    0    0
## 2204 1803 46  1  4  3  1  2  2    0    0    0    1    0    0    0    0
## 2205  779 25  2  1  5  5  2  1    0    0    0    0    0    0    0    0
## 2206 6207 35  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2207 6056 34  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 2208 4229 25  2  1  2  4  2  2    0    1    0    1    0    0    0    0
## 2209 1116 33  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2210 5392 35  2  2  2  4  2  1    0    0    0    1    0    0    0    0
## 2211 3694 29  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2212 6111 18  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 2213 9164 39  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 2214 6890 16  2  4  5  3  2  2    0    0    0    1    0    0    0    0
## 2215 7608 35  1  4  1  1  2  2    0    1    0    1    0    0    0    0
## 2216 5997 35  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2217 7242 46  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 2218 4748 26  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2219 6034 20  1  4  3  1  2  1    0    0    0    1    0    0    0    0
## 2220  329 40  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2221 2215 35  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2222 8956 35  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 2223  536 24  1  4  6  3  1  1    0    0    0    1    0    0    0    0
## 2224 8591 24  2  1  5  4  1  1    0    0    0    0    0    0    0    0
## 2225 3933 16  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2226 6083 39  1  1  3  1  2  1    0    1    0    1    0    1    0    0
## 2227 5205 21  1  1  1  5  1  1    0    0    0    1    0    0    0    0
## 2228 1825 20  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 2229 1361 40  1  4  7  5  2  1    0    1    0    0    0    0    0    0
## 2230 4898 38  1  1  1  3  2  2    0    1    0    1    0    0    0    0
## 2231 6158 63  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 2232 3125 18  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 2233 7949 22  2  1  5  4  2  1    0    0    0    1    0    0    0    0
## 2234 3203 31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2235 9286 57  2  2  3  4  1  1    0    1    0    1    0    0    0    0
## 2236 3067 28  1  4  5  5  1  1    0    1    0    0    0    0    0    0
## 2237 6684 16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 2238 1129 76  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 2239 8250 76  1  2  1  1  2  2    0    0    0    0    0    0    0    0
## 2240 3576 29  1  1  6  1  2  1    0    0    0    1    0    0    0    0
## 2241 7404 40  2  3  2  2  2  2    0    1    0    0    0    0    0    0
## 2242 1405 50  2  1  5  3  2  1    0    0    1    0    0    0    0    0
## 2243 6991 53  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 2244 8273 44  2  1  3  1  2  1    0    1    0    0    1    0    0    0
## 2245  681 50  2  2  1  1  2  2    0    0    0    0    0    0    0    0
## 2246 2960 75  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 2247  548 45  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 2248 8551 80  1  2  3  5  2  2    0    0    0    0    0    0    0    0
## 2249 3062 60  2  3  6  5  2  1    0    0    1    0    0    0    0    0
## 2250 4275 27  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 2251 8540 25  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2252 6122 22  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 2253  202 19  2  4  6  5  2  2    1    0    0    0    0    0    0    0
## 2254 1988 28  2  3  2  3  2  1    0    0    1    0    0    0    0    0
## 2255  627 50  1  1  6  5  1  1    1    0    0    0    0    0    0    0
## 2256 4031 39  2  1  1  1  2  1    0    1    0    1    0    0    0    0
## 2257  562 37  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 2258 8917 42  2  4  6  4  1  1    1    0    0    0    0    0    0    0
## 2259 7314 18  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 2260 1424 23  2  4  3  5  2  1    0    0    0    0    0    0    0    0
## 2261 9090 30  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2262 6216 29  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2263 6112 74  1  1  3  2  2  1    0    1    0    0    0    0    0    0
## 2264 6580 42  2  2  2  1  1  1    0    1    0    1    0    0    0    0
## 2265  812 48  2  3  1  4  2  1    0    0    0    0    0    0    0    0
## 2266 8791 26  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2267  205 44  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 2268 5844 30  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 2269 8725 60  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 2270 6940 81  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2271 2800 60  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2272  607 33  2  2  1  3  2  1    0    0    0    1    0    0    0    0
##      Q8_9 Q8_10 Q8_11 Q9 Q10 Q11 Q12 Q13 Q14 Q15 Q16 Q17 Q18 Q19
## 1       1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2       0     0     0  1  -1  -1   1   4   1   5   4   4   1   4
## 3       1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 4       0     0     0 -1  -1  -1   1   2   2  -1   4  -1   1   4
## 5       0     0     0 -1   1  -1   2  -1   1   1   1  -1   1   4
## 6       0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   1
## 7       0     0     0 -1   1  -1   1   5   1   3   1  -1   1   2
## 8       0     0     0 -1  -1   1   1   4   1   4   5   1   2   2
## 9       0     0     0 -1   1  -1   1   5   1   6   5  -1   1   1
## 10      1     0     0 -1   1  -1   1   3   1   4   5  -1   1   4
## 11      0     1     0 -1  -1  -1   1   6   1   6   1  -1   1   1
## 12      0     0     0 -1  -1  -1   1   4   1   5   1   1   1   4
## 13      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 14      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 15      1     0     0 -1  -1  -1   1   4   1   3   1  -1   1   1
## 16      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 17      0     1     0 -1  -1  -1   2  -1   1   5   1  -1   1   1
## 18      0     0     0 -1   7  -1   1   4   1   6   1  -1   1   1
## 19      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 20      0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   1
## 21      1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 22      0     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 23      0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 24      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 25      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 26      1     0     0 -1  -1   1   1   5   1   4   1  -1   1   1
## 27      0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   3
## 28      0     0     0  3  -1  -1   1   4   1   5   1  -1   1   1
## 29      0     0     0 -1  -1   5   1   6   1   2   5  -1   5   5
## 30      0     0     0 -1  10  -1   1   2   1   1   3  -1   5   5
## 31      0     0     0 -1   5  -1   1   3   2  -1   4  -1   1   4
## 32      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 33      0     0     0 -1   6  -1   1   3   1   4   1   4   1   1
## 34      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 35      0     0     0 -1   1  -1   1   2   2  -1   1  -1   4   4
## 36      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 37      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   1
## 38      0     0     0 -1  -1  -1   1   2   2  -1   1  -1   4   4
## 39      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 40      0     0     0 -1   4  -1   2  -1   1   4   1  -1   5   5
## 41      0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   3
## 42      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 43      0     0     0 -1   1  -1   1   4   1   3   3  -1   1   1
## 44      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 45      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 46      0     0     0  6  -1  -1   2  -1   2  -1   5  -1   1   4
## 47      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 48      0     0     0  2   1  -1   1   2   2  -1   4   4   1   2
## 49      1     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 50      0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 51      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 52      0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 53      1     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 54      0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 55      0     0     0 -1  -1  -1   2  -1   1   6   5  -1   1   2
## 56      0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   2
## 57      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 58      1     0     0 -1   3  -1   2  -1   1   5   1  -1   4   4
## 59      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 60      0     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   4
## 61      0     0     0 -1   6  -1   1   2   1   3   1  -1   1   4
## 62      1     0     0 -1  -1  -1   1   2   1   5   1   1   1   1
## 63      0     0     0  1  -1  -1   2  -1   2  -1   4   2   1   1
## 64      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 65      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 66      0     0     0 -1  -1   7   1   3   1   3   1   5   1   4
## 67      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 68      0     0     0 -1  -1   7   2  -1   2  -1   1   1   1   5
## 69      0     0     0 -1  -1  -1   2  -1   1   5   4  -1   2   2
## 70      1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 71      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 72      0     0     0  1   1  -1   2  -1   1   2   1   4   1   1
## 73      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 74      0     0     0 -1   1  -1   1   4   1   3   1  -1   1   3
## 75      0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 76      0     0     0 -1  -1  12   2  -1   1   3   5  -1   1   1
## 77      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 78      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 79      0     0     0 -1   6  -1   1   6   2  -1   1  -1   1   4
## 80      1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 81      1     0     0 -1   1  -1   1   3   2  -1   1  -1   1   1
## 82      0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 83      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 84      0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 85      0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 86      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 87      0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 88      0     0     0 -1   1  -1   1   3   1   2   4  -1   1   4
## 89      0     0     0  2  -1  -1   2  -1   2  -1   5   5   1   1
## 90      0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 91      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 92      0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 93      0     0     0 -1   7  -1   1   6   1   2   4   3   1   1
## 94      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 95      0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 96      0     0     0 -1   1  -1   1   3   1   1   5   3   1   3
## 97      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 98      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 99      0     0     0 -1   1  -1   1   6   1   6   5  -1   4   4
## 100     0     0     0 -1   1  -1   2  -1   1   3   4  -1   1   2
## 101     0     0     0 -1   1  -1   1   3   2  -1   4   5   1   1
## 102     0     0     0 -1   1  -1   1   2   1   2   5  -1   1   1
## 103     1     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   3
## 104     0     0     0  1  -1  -1   1   4   2  -1   4   5   1   1
## 105     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 106     0     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 107     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 108     0     0     0  3  -1  -1   1   2   2  -1   3  -1   1   4
## 109     0     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 110     0     0     0 -1  -1  -1   1   5   2  -1   1  -1   4   4
## 111     0     0     0 -1   1  -1   2  -1   1   3   3  -1   1   4
## 112     0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 113     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 114     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 115     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 116     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 117     1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 118     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 119     0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   1
## 120     0     1     0 -1  -1  -1   2  -1   1   5   5  -1   1   1
## 121     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 122     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 123     0     0     0 -1   6  -1   2  -1   2  -1   5  -1   1   4
## 124     0     0     0 -1  -1   5   1   2   2  -1   4   1   1   4
## 125     0     1     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 126     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 127     0     1     0 -1  -1  -1   1   3   1   3   4  -1   1   1
## 128     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 129     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 130     0     0     0 -1  -1   1   1   4   1   4   1  -1   1   1
## 131     0     0     0 -1   2  -1   1   3   2  -1   4  -1   1   4
## 132     0     0     0  1  -1  -1   1   5   1   2   5   5   1   4
## 133     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 134     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   4
## 135     0     0     0 -1   6  -1   2  -1   1   6   1  -1   1   4
## 136     0     0     0 -1   1  -1   2  -1   1   5   5  -1   4   4
## 137     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 138     0     0     0 -1   1   5   2  -1   1   4   1   1   1   1
## 139     0     0     0 -1   3  -1   1   3   2  -1   5  -1   1   1
## 140     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 141     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 142     0     0     0  2  -1  -1   1   3   1   3   4   4   1   1
## 143     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 144     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 145     1     0     0 -1  -1  -1   1   3   1   4   3   3   1   1
## 146     0     0     0 -1  -1  -1   1   5   2  -1   4   4   1   4
## 147     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 148     0     0     0 -1   6  -1   1   3   1   2   5   5   1   1
## 149     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 150     1     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 151     0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   4
## 152     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 153     0     0     0 -1   5  -1   1   2   1   3   3   4   1   1
## 154     0     0     0 -1  -1  -1   1   5   2  -1   1   1   2   2
## 155     0     0     0 -1  -1  -1   2  -1   1   4   1   1   1   5
## 156     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 157     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 158     0     1     0 -1  -1  -1   2  -1   2  -1   5  -1   1   1
## 159     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 160     0     0     0 -1  -1  -1   1   3   1   2   1   1   1   1
## 161     1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 162     0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   1
## 163     0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   5
## 164     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 165     0     0     0 -1   6  -1   1   3   2  -1   5  -1   1   1
## 166     0     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 167     0     0     0  2  -1  -1   1   4   1   6   5  -1   1   1
## 168     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 169     0     1     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 170     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 171     0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 172     1     0     0 -1   1  -1   1   6   1   3   1  -1   4   4
## 173     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 174     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 175     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 176     0     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 177     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 178     1     0     0 -1  -1  -1   1   5   2  -1   4  -1   1   4
## 179     0     0     0 -1  -1  -1   1   5   1   3   1  -1   2   4
## 180     1     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 181     0     0     0  2   1  -1   2  -1   2  -1   5   1   1   4
## 182     0     0     0 -1   1  -1   1   5   1   1   1   5   1   4
## 183     1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 184     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 185     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 186     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 187     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 188     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 189     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 190     0     0     0 -1   7  -1   1   2   1   3   4  -1   1   1
## 191     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 192     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   5   4
## 193     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 194     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 195     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 196     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 197     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 198     0     0     0 -1   5  -1   1   1   2  -1   1   1   1   1
## 199     0     0     0  2   6  -1   1   2   1   6   4   4   1   4
## 200     0     0     0 -1   1   5   2  -1   2  -1   1  -1   4   4
## 201     0     0     0 -1   2  -1   2  -1   1   5   1  -1   1   4
## 202     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 203     0     0     0 -1  -1   7   1   4   2  -1   5  -1   1   1
## 204     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 205     0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   5
## 206     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 207     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 208     0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   1
## 209     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 210     0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 211     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 212     0     0     0  1  -1  -1   1   3   2  -1   4   5   1   1
## 213     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 214     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 215     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   2
## 216     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 217     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 218     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 219     1     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 220     0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 221     0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 222     0     0     0 -1   1   5   2  -1   2  -1   1  -1   4   4
## 223     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 224     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 225     0     0     0 -1   3  -1   1   3   2  -1   1  -1   1   4
## 226     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 227     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 228     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 229     0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 230     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 231     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 232     0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 233     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 234     0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   4
## 235     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 236     0     0     0 -1   1   1   2  -1   2  -1   1  -1   1   1
## 237     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 238     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 239     0     0     0 -1  -1  -1   1   3   1   3   4   1   1   2
## 240     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 241     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 242     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 243     0     0     0 -1   1  -1   1   3   1   4   1  -1   1   3
## 244     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 245     0     0     0 -1  -1  -1   2  -1   2  -1   1   2   1   4
## 246     0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   2
## 247     0     0     0 -1  -1   1   1   5   1   4   5   4   4   4
## 248     0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 249     0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 250     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 251     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 252     0     0     0 -1   1  -1   1   4   1   4   1  -1   4   4
## 253     0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 254     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 255     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 256     0     0     0 -1   9  -1   2  -1   2  -1   1  -1   1   4
## 257     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 258     0     0     0 -1  -1  -1   1   4   1   4   1  -1   1   1
## 259     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 260     0     0     0 -1   1  -1   1   2   2  -1   1  -1   1   4
## 261     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 262     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 263     0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   1
## 264     0     0     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 265     0     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 266     1     0     0 -1  -1  -1   1   5   1   2   5  -1   1   4
## 267     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 268     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 269     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 270     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 271     0     0     0 -1   2  -1   2  -1   2  -1   1  -1   4   4
## 272     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 273     0     0     0  1  -1  -1   1   4   2  -1   3  -1   1   1
## 274     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 275     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   1
## 276     0     0     0 -1   1  -1   1   5   2  -1   5  -1   4   4
## 277     0     0     1 -1  -1  -1   1   3   1   3   4  -1   1   2
## 278     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 279     0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 280     0     0     0 -1   6  -1   1   1   1   3   3   3   1   3
## 281     0     0     0 -1   4   4   1   3   1   3   4   4   1   1
## 282     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 283     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 284     0     0     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 285     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 286     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 287     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 288     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 289     0     0     0 -1   1  -1   1   3   2  -1   4  -1   4   4
## 290     0     0     0  6  -1  -1   1   3   2  -1   1  -1   1   1
## 291     0     0     0 -1  -1  -1   1   3   2  -1   1   1   1   1
## 292     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 293     1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 294     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 295     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 296     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 297     0     0     0 -1  -1  -1   2  -1   1   5   4   1   1   4
## 298     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 299     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 300     1     0     0 -1  -1  -1   2  -1   2  -1   1   3   1   1
## 301     0     1     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 302     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 303     0     0     0  1   1  -1   1   2   2  -1   1  -1   1   1
## 304     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 305     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 306     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 307     0     0     0 -1   1  -1   1   4   1   6   1  -1   4   4
## 308     0     0     0 -1   8  -1   1   3   2  -1   1  -1   4   4
## 309     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 310     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 311     0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 312     1     0     0 -1  -1  -1   1   2   1   2   3   3   1   1
## 313     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 314     0     0     0 -1   6  -1   1   4   1   6   1   1   1   4
## 315     0     0     0 -1   1   4   1   2   1   3   1  -1   1   2
## 316     0     0     0 -1   1   7   1   3   1   6   4   4   1   1
## 317     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 318     0     0     0 -1   1  -1   2  -1   1   2   5  -1   4   4
## 319     0     0     0 -1  -1  -1   2  -1   2  -1   5   1   1   1
## 320     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 321     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   3
## 322     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 323     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 324     0     0     0  1   1  -1   1   3   2  -1   5  -1   1   1
## 325     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 326     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 327     0     0     0 -1  10  -1   1   4   2  -1   1   1   1   2
## 328     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 329     0     0     0 -1   6  -1   1   6   2  -1   1  -1   1   1
## 330     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 331     0     0     0 -1   6  -1   2  -1   1   2   3  -1   1   4
## 332     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 333     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   5
## 334     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 335     0     0     0 -1   1  -1   2  -1   1   3   4  -1   1   4
## 336     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   1
## 337     0     0     0  2  -1  -1   1   4   1   3   3   4   5   1
## 338     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 339     0     0     0 -1   1  -1   1   5   1   4   1  -1   1   2
## 340     0     0     0 -1  -1  -1   2  -1   2  -1   5   5   1   4
## 341     0     0     0 -1   1  -1   1   4   1   4   4  -1   1   2
## 342     0     0     0 -1   1  -1   1   2   1   3   5   4   1   1
## 343     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 344     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 345     0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 346     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 347     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 348     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 349     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 350     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 351     0     0     0 -1   1  -1   1   2   1   3   5  -1   1   4
## 352     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   3
## 353     0     0     0  6  -1  -1   1   2   1   2   5   5   1   1
## 354     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 355     0     0     0 -1  -1   7   1   3   1   2   1  -1   4   4
## 356     0     0     1 -1  -1  -1   1   2   1   2   4   4   1   4
## 357     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 358     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 359     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   4
## 360     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 361     1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 362     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 363     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 364     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 365     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 366     0     0     0 -1   8  -1   1   3   1   4   5   5   1   1
## 367     0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 368     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 369     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 370     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 371     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 372     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 373     0     1     0 -1  -1  -1   2  -1   1   2   5  -1   4   4
## 374     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 375     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 376     0     0     0 -1   7  -1   2  -1   1   3   1  -1   4   4
## 377     0     0     0  1  -1  -1   1   3   2  -1   1   1   1   2
## 378     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 379     0     0     0 -1  -1  -1   2  -1   1   6   1   1   1   1
## 380     0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   5
## 381     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 382     0     0     0 -1   1  -1   1   3   1   3   1  -1   1   1
## 383     0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   2
## 384     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 385     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 386     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 387     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 388     0     0     0 -1   4  -1   1   4   1   5   5  -1   1   4
## 389     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 390     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 391     1     0     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 392     0     0     0 -1   6  -1   1   5   2  -1   4   4   1   2
## 393     0     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 394     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 395     0     0     0 -1   8  -1   1   3   2  -1   1  -1   4   4
## 396     0     0     0  3  -1  -1   1   3   2  -1   1  -1   1   1
## 397     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 398     0     0     0 -1  -1   1   1   2   1   2   1   1   1   1
## 399     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 400     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 401     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 402     1     0     0 -1  -1  -1   2  -1   1   5   5  -1   1   4
## 403     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 404     0     0     0 -1  -1  -1   2  -1   1   2   5  -1   4   5
## 405     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 406     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 407     0     0     0 -1   2  -1   1   2   1   4   4  -1   1   1
## 408     0     0     0 -1   2  -1   1   5   2  -1   5  -1   1   4
## 409     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 410     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 411     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 412     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   5   5
## 413     1     0     0 -1  -1  -1   1   3   2  -1   3   3   1   1
## 414     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 415     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   4
## 416     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 417     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 418     0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 419     0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 420     0     0     0 -1  -1  -1   1   2   1   3   4   4   1   5
## 421     0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 422     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   2
## 423     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 424     0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 425     0     0     0 -1   8  -1   2  -1   1   2   1  -1   1   4
## 426     0     0     0 -1   1  -1   1   1   1   2   1  -1   1   4
## 427     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 428     0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 429     0     0     0 -1   4   5   1   4   1   2   4   4   1   2
## 430     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 431     0     0     0  1  -1  -1   2  -1   2  -1   1   1   1   1
## 432     0     0     0 -1   5  -1   2  -1   1   3   1  -1   1   2
## 433     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 434     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 435     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 436     0     0     0 -1   6  -1   2  -1   2  -1   4  -1   1   4
## 437     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 438     1     0     0 -1   6  -1   1   2   1   2   5   5   1   1
## 439     0     0     0 -1   1  -1   1   6   1   2   5  -1   1   1
## 440     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 441     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 442     0     0     0 -1   1   7   2  -1   2  -1   1  -1   1   4
## 443     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 444     1     0     0 -1  -1  -1   2  -1   1   2   1   4   1   4
## 445     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 446     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 447     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 448     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 449     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 450     0     0     0 -1  -1  -1   1   5   1   6   1  -1   1   4
## 451     0     0     0 -1   1  -1   1   4   1   2   1  -1   1   4
## 452     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 453     0     0     0 -1  -1  -1   2  -1   1   4   4  -1   1   2
## 454     0     0     0  2   1  -1   2  -1   2  -1   1  -1   1   4
## 455     0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 456     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 457     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 458     0     0     0 -1  -1  -1   2  -1   1   5   5  -1   4   4
## 459     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 460     0     0     0 -1   3  -1   1   1   1   6   1  -1   1   4
## 461     0     0     0 -1   1  12   1   3   1   3   1  -1   1   2
## 462     0     0     0 -1  -1   7   1   4   1   4   5  -1   1   1
## 463     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 464     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 465     1     0     0 -1   5  -1   2  -1   1   2   5  -1   1   4
## 466     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 467     0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 468     1     0     0 -1  -1  -1   1   3   1   1   5   5   1   4
## 469     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 470     0     0     0 -1   5  -1   1   6   1   5   5  -1   1   4
## 471     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 472     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 473     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 474     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 475     1     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 476     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 477     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 478     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 479     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 480     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 481     0     0     0 -1   6  -1   1   4   1   4   1  -1   1   1
## 482     0     0     0 -1  -1  -1   1   3   2  -1   4   4   1   1
## 483     0     0     0 -1   5  -1   2  -1   1   6   1  -1   1   4
## 484     0     0     0  2  -1  -1   1   3   1   3   4   4   1   1
## 485     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 486     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 487     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 488     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 489     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 490     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 491     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 492     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 493     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 494     0     0     0 -1   4  -1   2  -1   2  -1   4   4   1   1
## 495     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 496     0     0     0 -1  -1  -1   2  -1   1   4   4   1   1   1
## 497     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 498     0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   4
## 499     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 500     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 501     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 502     0     0     0 -1   5  -1   1   2   1   5   1  -1   1   4
## 503     1     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   5
## 504     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 505     0     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 506     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   1
## 507     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 508     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 509     0     0     0 -1  -1  -1   1   5   1   4   1  -1   1   1
## 510     0     0     0 -1   1  -1   1   4   1   4   3  -1   4   2
## 511     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 512     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 513     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 514     0     0     0  2  -1  -1   1   3   1   3   4  -1   1   1
## 515     0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 516     0     0     0 -1  -1  -1   1   3   2  -1   4  -1   1   2
## 517     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 518     1     0     0 -1  -1  -1   2  -1   1   5   5  -1   1   1
## 519     0     0     0 -1   4  -1   1   4   2  -1   5  -1   1   5
## 520     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 521     0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 522     0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 523     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 524     0     0     1 -1  -1  -1   1   6   1   4   4  -1   1   4
## 525     1     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 526     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 527     0     0     0 -1   4  -1   1   4   1   3   5  -1   1   4
## 528     0     0     0 -1  -1   3   1   3   2  -1   4   4   1   1
## 529     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 530     0     0     0 -1   9  -1   1   3   2  -1   5  -1   1   4
## 531     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 532     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 533     1     0     0 -1   1  -1   1   2   1   4   4  -1   1   4
## 534     0     0     0 -1   1  -1   1   4   1   4   1  -1   1   2
## 535     1     0     0 -1  -1  -1   1   4   2  -1   5   5   1   4
## 536     0     0     0 -1   1  -1   1   3   1   1   5  -1   1   1
## 537     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 538     0     0     0 -1   1  -1   2  -1   2  -1   5   5   1   4
## 539     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 540     0     0     0 -1   1  -1   1   4   1   5   1  -1   1   4
## 541     0     0     0  1  -1  -1   1   2   2  -1   4  -1   1   1
## 542     0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   1
## 543     0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 544     1     0     0  3  -1  -1   1   2   1   3   3   5   1   1
## 545     0     0     0 -1  -1  -1   1   5   2  -1   1   5   1   1
## 546     1     0     0 -1  -1  -1   2  -1   1   3   5  -1   2   4
## 547     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 548     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 549     0     1     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 550     0     0     0 -1   3  -1   1   3   1   5   1  -1   4   4
## 551     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 552     1     0     0 -1   4  -1   2  -1   1   2   4   4   4   4
## 553     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 554     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 555     1     0     0 -1  -1  -1   1   4   1   3   5  -1   1   4
## 556     0     0     0 -1  10  -1   1   5   1   3   5  -1   1   1
## 557     0     0     0 -1   6  -1   1   3   1   4   1   1   1   4
## 558     0     1     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 559     0     0     0 -1   1  -1   1   3   2  -1   5  -1   4   4
## 560     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 561     0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 562     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 563     1     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 564     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 565     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 566     0     0     0 -1   1  -1   1   5   2  -1   5  -1   1   4
## 567     0     0     0 -1   1  -1   2  -1   1   3   4  -1   4   4
## 568     0     0     0  1   1  -1   1   4   1   2   3   4   1   1
## 569     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 570     1     0     0 -1  -1  -1   1   3   1   4   1  -1   1   1
## 571     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 572     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 573     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 574     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 575     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 576     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 577     1     0     0 -1   1  -1   1   3   1   4   5  -1   1   2
## 578     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 579     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 580     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 581     0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 582     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 583     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 584     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 585     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 586     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 587     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 588     0     1     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 589     0     0     0 -1  -1   1   2  -1   1   6   1   4   1   4
## 590     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 591     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 592     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 593     1     0     0 -1  -1  -1   1   3   1   3   4   4   1   1
## 594     0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 595     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 596     1     0     0 -1  -1  -1   1   2   1   3   5  -1   1   4
## 597     0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 598     0     0     0 -1   1  -1   2  -1   1   5   4  -1   1   1
## 599     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 600     1     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 601     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 602     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 603     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 604     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 605     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 606     1     0     0 -1   7  -1   2  -1   2  -1   5  -1   1   4
## 607     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 608     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 609     0     1     0 -1  -1  -1   1   6   1   5   4  -1   1   4
## 610     0     0     0 -1   2  -1   1   3   1   3   5   4   1   1
## 611     0     0     0 -1  -1  -1   1   5   1   5   1  -1   1   4
## 612     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 613     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 614     0     0     0  2  -1  -1   1   2   2  -1   5  -1   1   1
## 615     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 616     0     0     0 -1   4  -1   1   3   2  -1   1  -1   1   2
## 617     0     0     0 -1   1  -1   1   3   1   4   1  -1   1   1
## 618     1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 619     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 620     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 621     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 622     1     0     0  2  -1  -1   1   2   2  -1   4  -1   1   1
## 623     0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 624     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 625     0     0     0  1  -1  -1   1   3   1   5   5   5   1   1
## 626     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   2
## 627     1     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 628     0     0     0  2  -1  -1   1   3   1   5   5   5   1   1
## 629     0     0     0 -1   6  -1   1   2   2  -1   3  -1   1   4
## 630     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 631     0     0     0 -1   1  -1   2  -1   1   4   4   4   1   2
## 632     0     0     0  2  -1  -1   1   1   2  -1   5   5   1   1
## 633     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 634     0     0     0  2  -1  -1   2  -1   2  -1   4  -1   1   4
## 635     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 636     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 637     0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 638     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 639     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 640     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 641     0     0     0  1  -1  -1   1   3   2  -1   1  -1   1   1
## 642     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 643     0     0     0 -1   1  -1   1   3   1   4   4  -1   1   1
## 644     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 645     1     0     0 -1   7   7   2  -1   2  -1   1  -1   1   4
## 646     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 647     0     0     0 -1   1  -1   2  -1   1   3   5   1   1   4
## 648     0     0     0 -1   1  -1   1   3   1   5   1  -1   1   4
## 649     0     0     0  1  -1  -1   1   3   1   6   4  -1   1   1
## 650     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 651     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 652     0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 653     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 654     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 655     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 656     1     0     0 -1   1  -1   2  -1   2  -1   4   4   4   4
## 657     0     1     0 -1  -1  -1   1   6   2  -1   3   1   1   1
## 658     0     0     0 -1   5  -1   1   6   1   4   1  -1   1   1
## 659     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 660     0     0     0 -1  -1  -1   1   4   1   6   5  -1   1   4
## 661     0     0     0 -1   1  -1   1   4   1   4   5   1   1   4
## 662     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 663     0     0     0 -1   1  -1   2  -1   1   6   4  -1   1   1
## 664     0     0     0 -1  -1   4   1   4   2  -1   1   1   1   2
## 665     0     0     0 -1   1  -1   2  -1   1   2   5  -1   4   4
## 666     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 667     0     0     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 668     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 669     0     0     0 -1  -1   4   2  -1   1   6   1  -1   4   4
## 670     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 671     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 672     0     0     0 -1   4  -1   2  -1   1   6   5  -1   1   4
## 673     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   4
## 674     0     0     0 -1   1  -1   2  -1   1   4   5   5   1   4
## 675     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 676     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 677     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 678     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 679     1     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 680     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 681     0     0     0  1  -1  -1   2  -1   2  -1   4   4   1   1
## 682     0     0     0 -1   1  -1   1   2   1   2   4   3   1   1
## 683     0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 684     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 685     0     0     0 -1   6  -1   1   3   2  -1   1  -1   1   4
## 686     0     0     0 -1   1  -1   2  -1   1   1   5  -1   1   4
## 687     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 688     0     0     0 -1  -1  -1   2  -1   1   5   4  -1   1   5
## 689     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 690     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 691     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 692     1     0     0 -1   6  -1   2  -1   1   6   1  -1   1   4
## 693     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 694     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 695     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 696     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   3
## 697     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 698     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 699     0     0     0 -1   1  -1   2  -1   1   3   4  -1   4   4
## 700     0     0     0 -1   1  -1   1   3   2  -1   1   1   1   4
## 701     0     0     0 -1  -1  -1   2  -1   1   6   5  -1   1   4
## 702     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   1
## 703     0     0     0  1   6  -1   2  -1   2  -1   5   1   1   1
## 704     0     0     0 -1  -1   4   2  -1   2  -1   1  -1   4   4
## 705     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 706     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 707     0     1     0 -1  -1  -1   1   4   2  -1   5  -1   4   4
## 708     1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 709     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 710     0     0     0 -1   6  -1   2  -1   1   3   1   1   1   1
## 711     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 712     1     0     0 -1  -1   1   1   3   1   3   1   1   1   1
## 713     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 714     0     0     0 -1   4  -1   2  -1   2  -1   1  -1   5   5
## 715     0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 716     1     0     0 -1   1  -1   1   6   1   3   5  -1   1   1
## 717     0     0     0 -1   1  -1   1   1   1   3   1  -1   1   2
## 718     0     0     0 -1   1  -1   1   3   2  -1   4   1   1   1
## 719     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 720     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   1
## 721     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 722     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 723     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 724     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 725     0     0     0  1   1  -1   1   2   1   2   3  -1   1   2
## 726     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 727     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 728     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   1
## 729     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 730     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 731     0     0     0  2  -1  -1   1   2   2  -1   1  -1   1   4
## 732     1     0     0 -1   6  -1   2  -1   1   3   1  -1   1   1
## 733     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 734     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 735     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 736     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 737     0     0     0  1  -1  -1   1   3   1   1   4   4   1   1
## 738     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 739     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 740     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 741     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 742     0     0     0 -1   5  -1   2  -1   1   2   5  -1   1   4
## 743     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 744     0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   4
## 745     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 746     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 747     1     0     0 -1   3  -1   1   2   1   5   5  -1   1   2
## 748     0     0     0  2  -1  -1   2  -1   1   5   3  -1   1   4
## 749     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 750     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 751     0     0     0  2  -1  -1   1   3   1   1   2  -1   1   1
## 752     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 753     0     0     0  6   1  -1   2  -1   1   3   1  -1   4   4
## 754     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 755     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   5
## 756     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 757     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 758     0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 759     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 760     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 761     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 762     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 763     0     0     0 -1   6  -1   1   4   1   5   1  -1   1   1
## 764     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 765     0     0     0 -1   6  -1   1   4   1   5   1  -1   1   4
## 766     1     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 767     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 768     0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   4
## 769     0     0     0 -1   1  -1   1   5   1   4   5  -1   1   1
## 770     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 771     0     0     0 -1  -1   5   1   5   1   5   4   4   1   2
## 772     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 773     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 774     0     0     0 -1  -1   5   2  -1   1   6   5   1   1   4
## 775     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 776     0     0     0 -1  -1  -1   1   3   2  -1   4  -1   4   4
## 777     0     0     0 -1  -1  -1   1   4   1   2   3   3   1   4
## 778     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 779     0     0     0 -1   1  -1   1   3   1   3   5  -1   1   4
## 780     0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 781     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 782     0     0     0 -1  -1   5   1   6   1   2   5   1   1   2
## 783     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   1
## 784     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 785     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 786     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 787     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 788     0     0     0 -1   1   7   1   5   2  -1   1  -1   1   4
## 789     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 790     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 791     0     0     0 -1   3  -1   2  -1   1   6   1  -1   2   4
## 792     0     0     0  1   3  -1   1   4   1   3   5   1   1   1
## 793     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 794     0     0     0 -1  -1  -1   1   1   1   1   2  -1   1   1
## 795     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   2   4
## 796     1     0     0 -1   1  -1   1   3   1   3   4  -1   1   4
## 797     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 798     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 799     0     0     0 -1   5  -1   2  -1   2  -1   5  -1   1   2
## 800     0     0     0  2  -1  -1   2  -1   2  -1   5  -1   1   4
## 801     0     0     0 -1   1  -1   1   3   1   6   1  -1   1   1
## 802     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 803     0     0     0 -1  -1   4   1   1   1   2   1  -1   1   4
## 804     1     0     0 -1  -1  -1   2  -1   1   2   4  -1   1   1
## 805     1     0     0 -1  -1  -1   1   5   1   3   4  -1   1   1
## 806     0     0     0 -1  -1  -1   1   4   1   2   3  -1   1   1
## 807     1     0     0 -1  -1  -1   2  -1   2  -1   4  -1   4   4
## 808     0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   4
## 809     0     1     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 810     0     0     0 -1   3  -1   2  -1   2  -1   5  -1   1   1
## 811     0     0     0 -1   4  -1   1   4   1   3   1  -1   1   1
## 812     0     0     0 -1   1  -1   2  -1   1   6   1  -1   2   2
## 813     0     0     0 -1   6  -1   2  -1   1   1   5   4   1   1
## 814     0     0     0 -1   1   7   2  -1   2  -1   1  -1   4   4
## 815     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 816     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 817     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 818     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   1
## 819     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 820     0     0     0 -1   3  -1   2  -1   1   6   4  -1   1   1
## 821     1     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   4
## 822     0     1     0 -1  -1  -1   1   3   1   2   5  -1   1   1
## 823     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 824     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 825     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 826     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 827     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 828     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 829     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 830     0     0     0 -1  -1  -1   1   3   2  -1   3  -1   1   4
## 831     0     1     0 -1  -1  -1   2  -1   1   4   1  -1   1   1
## 832     0     0     0 -1   6   5   1   2   1   5   1   4   1   1
## 833     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 834     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 835     0     0     0 -1   6  -1   1   4   2  -1   1  -1   1   1
## 836     0     0     0 -1  -1   1   2  -1   1   6   1  -1   2   4
## 837     0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 838     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 839     0     0     0 -1  -1  -1   1   3   1   6   5  -1   1   1
## 840     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 841     1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 842     0     0     0 -1   4  -1   1   3   1   3   4  -1   1   2
## 843     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 844     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 845     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 846     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 847     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   4
## 848     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 849     0     0     0 -1  -1  -1   1   2   2  -1   4  -1   1   4
## 850     1     0     0  1  -1  -1   1   3   1   3   1   1   1   1
## 851     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 852     0     0     0 -1  -1  -1   1   3   1   3   4   5   1   1
## 853     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 854     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 855     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 856     1     0     0 -1   1  -1   2  -1   1   1   3   5   1   4
## 857     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 858     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 859     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 860     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 861     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 862     0     0     0 -1   1  -1   1   6   1   5   1  -1   1   1
## 863     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 864     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 865     0     0     0 -1  -1  -1   1   3   1   4   4   4   1   2
## 866     0     0     0  6  -1  -1   2  -1   2  -1   1  -1   1   2
## 867     0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   2
## 868     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 869     0     0     0 -1   4  -1   2  -1   2  -1   1   1   4   4
## 870     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 871     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 872     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 873     0     0     0 -1   9  -1   1   6   2  -1   5  -1   1   2
## 874     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 875     1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 876     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 877     1     0     0 -1   1  -1   1   2   1   4   3  -1   1   1
## 878     0     0     0 -1   6  -1   2  -1   1   6   5  -1   1   4
## 879     0     0     0 -1   1  -1   1   5   2  -1   1  -1   4   4
## 880     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 881     0     0     0 -1  -1  -1   1   3   1   3   4  -1   1   4
## 882     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 883     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 884     1     0     0 -1   1  -1   1   5   1   5   4   4   1   4
## 885     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 886     0     0     0  2  -1  -1   2  -1   2  -1   1   1   1   1
## 887     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 888     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 889     0     0     0 -1   1  -1   1   6   1   2   4  -1   1   1
## 890     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 891     0     0     0 -1  -1  -1   1   4   1   3   5  -1   1   1
## 892     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 893     0     0     0  1  -1  -1   1   3   2  -1   1  -1   1   1
## 894     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 895     0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   1
## 896     0     0     0 -1   6  -1   2  -1   1   3   4   1   1   2
## 897     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 898     0     0     0 -1   3  -1   1   4   2  -1   1  -1   1   2
## 899     0     0     0 -1   5  -1   1   5   2  -1   1  -1   1   4
## 900     0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 901     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   1
## 902     0     0     0 -1   1   5   1   6   1   4   1  -1   1   4
## 903     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 904     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 905     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 906     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 907     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 908     1     0     0  6  -1  -1   1   6   1   6   5  -1   1   4
## 909     0     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 910     1     0     0 -1   1   1   2  -1   1   3   1  -1   1   4
## 911     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 912     1     0     0  2   1  -1   1   3   1   3   5   1   1   1
## 913     0     0     0 -1  -1   5   1   3   1   3   5  -1   1   4
## 914     1     0     0 -1  -1  -1   2  -1   1   5   1   5   1   4
## 915     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 916     0     0     0 -1   1  -1   2  -1   1   2   4  -1   1   4
## 917     0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 918     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 919     0     0     0  3  -1  -1   1   3   2  -1   5  -1   1   2
## 920     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 921     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 922     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 923     0     0     0 -1  -1   5   1   3   2  -1   1  -1   1   1
## 924     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 925     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 926     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 927     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 928     1     0     0 -1  -1  -1   1   5   1   4   1  -1   1   1
## 929     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 930     0     0     0 -1   5  -1   2  -1   1   3   1  -1   1   1
## 931     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 932     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 933     0     0     0 -1   1  -1   1   5   1   3   4  -1   1   4
## 934     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 935     0     0     0 -1   1  -1   1   5   1   6   1  -1   1   1
## 936     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 937     0     0     0  1   1  -1   1   5   1   6   5   5   1   1
## 938     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 939     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 940     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 941     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 942     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 943     0     0     0 -1   1  -1   1   4   1   3   4   4   1   1
## 944     0     0     0 -1   2  -1   1   5   2  -1   4  -1   1   4
## 945     0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 946     0     0     0 -1   2  -1   1   3   1   3   1   3   4   4
## 947     0     0     0 -1   5  -1   2  -1   1   3   5  -1   1   2
## 948     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 949     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   2   4
## 950     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 951     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 952     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   1
## 953     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 954     0     0     0 -1   1  -1   1   2   1   2   5   4   4   4
## 955     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 956     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 957     0     0     0 -1   1  -1   1   5   1   5   1  -1   1   2
## 958     0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 959     0     1     0 -1  -1  -1   2  -1   1   3   3  -1   4   4
## 960     0     0     0 -1   4   5   1   6   1   5   1  -1   1   4
## 961     1     0     0 -1  -1  -1   2  -1   2  -1   2   1   1   4
## 962     1     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 963     0     0     0 -1   1  -1   1   5   1   6   1  -1   1   4
## 964     0     0     0  2  -1  -1   1   1   1   4   3   3   1   1
## 965     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 966     1     0     0  6  -1  -1   1   2   2  -1   1  -1   1   1
## 967     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 968     0     0     0 -1   1   4   1   5   1   5   1  -1   1   4
## 969     1     0     0 -1  -1  -1   2  -1   1   3   4  -1   2   4
## 970     0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   4
## 971     1     0     0 -1   1  -1   1   4   1   3   3   4   1   2
## 972     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 973     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 974     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 975     0     1     0 -1  -1  -1   1   3   1   2   3   4   1   1
## 976     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 977     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 978     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 979     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 980     0     0     0 -1   6  -1   2  -1   2  -1   3   1   1   4
## 981     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 982     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 983     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 984     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 985     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 986     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 987     0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   1
## 988     0     0     0 -1  -1  -1   2  -1   1   5   1   1   1   4
## 989     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 990     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 991     0     0     0 -1   7  -1   1   4   1   4   5  -1   1   4
## 992     0     0     0 -1  -1  -1   1   3   1   2   4   4   1   1
## 993     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 994     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 995     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 996     0     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 997     0     0     0  2  -1  -1   1   3   2  -1   1  -1   1   4
## 998     1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 999     0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1000    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1001    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1002    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1003    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1004    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   4   4
## 1005    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1006    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1007    0     0     0 -1  -1   1   2  -1   1   2   1   5   1   4
## 1008    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1009    0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   1
## 1010    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1011    0     0     0 -1  -1  -1   1   4   1   5   4  -1   1   1
## 1012    0     0     0 -1   5  -1   1   6   1   6   1  -1   1   4
## 1013    0     0     0  6  -1  -1   2  -1   1   3   1   1   1   4
## 1014    0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 1015    0     0     0 -1  -1  -1   2  -1   1   5   3  -1   1   1
## 1016    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 1017    0     0     0 -1   6  -1   2  -1   1   4   4   5   1   1
## 1018    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1019    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1020    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1021    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1022    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1023    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 1024    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1025    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1026    0     0     0 -1   5  -1   2  -1   1   3   5   5   1   2
## 1027    0     0     0 -1   3   7   2  -1   2  -1   1  -1   4   4
## 1028    0     0     0 -1   6  -1   1   5   2  -1   4  -1   1   2
## 1029    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1030    0     0     0 -1  -1  -1   1   3   1   3   2  -1   1   4
## 1031    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1032    1     0     0 -1   9  -1   2  -1   2  -1   1  -1   1   2
## 1033    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1034    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1035    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   2
## 1036    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1037    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1038    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1039    1     0     0 -1   5  -1   1   2   2  -1   4   4   1   2
## 1040    0     0     0 -1   1  -1   1   6   1   6   4  -1   1   1
## 1041    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1042    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1043    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1044    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1045    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1046    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   4   4
## 1047    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1048    0     0     0 -1  -1  -1   1   2   1   3   1  -1   1   5
## 1049    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1050    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1051    0     0     0 -1  -1  -1   1   2   2  -1   4   4   1   4
## 1052    0     0     0 -1   8  -1   1   3   2  -1   1  -1   1   4
## 1053    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1054    0     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   1
## 1055    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1056    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1057    0     0     0 -1   1  -1   1   3   1   3   5  -1   1   3
## 1058    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1059    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1060    1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1061    0     0     0 -1   1  -1   1   4   1   2   5   1   1   2
## 1062    0     1     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 1063    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   1
## 1064    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1065    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1066    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 1067    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1068    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1069    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1070    0     0     0 -1   1  -1   1   6   1   6   4  -1   1   4
## 1071    0     0     0 -1   5  -1   1   4   1   3   5  -1   1   4
## 1072    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1073    0     0     0 -1  -1  -1   2  -1   2  -1   4   4   4   4
## 1074    0     0     0 -1   1  -1   1   2   1   5   1  -1   1   4
## 1075    1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 1076    0     0     0 -1   6  -1   1   3   2  -1   5  -1   2   4
## 1077    0     0     0  2  -1  -1   1   3   2  -1   5   5   1   1
## 1078    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1079    0     1     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 1080    0     1     0 -1  -1  -1   1   3   1   3   5  -1   1   4
## 1081    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1082    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1083    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1084    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1085    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1086    0     0     0 -1   6  -1   1   6   1   2   5  -1   1   1
## 1087    0     0     0 -1  -1  -1   1   4   1   4   1  -1   1   4
## 1088    1     0     0 -1  -1  -1   2  -1   1   2   5  -1   1   4
## 1089    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1090    0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 1091    0     0     0 -1   1  -1   1   4   1   1   3  -1   1   1
## 1092    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 1093    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1094    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1095    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1096    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   2
## 1097    0     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 1098    1     0     0 -1   7  -1   2  -1   2  -1   1   1   1   4
## 1099    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1100    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1101    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1102    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1103    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1104    0     0     0  2  -1  -1   1   6   1   5   4   4   1   1
## 1105    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   1
## 1106    0     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   1
## 1107    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1108    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1109    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1110    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1111    0     0     0 -1   4  -1   1   1   1   1   5  -1   1   4
## 1112    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1113    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1114    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1115    0     0     0 -1  -1   7   1   5   2  -1   5  -1   1   2
## 1116    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1117    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1118    1     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1119    0     0     0 -1  10  -1   2  -1   2  -1   1  -1   1   4
## 1120    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 1121    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1122    0     0     0  1  -1  -1   1   1   2  -1   5   1   1   1
## 1123    0     1     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1124    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1125    1     0     0 -1   1  -1   1   3   1   3   1  -1   1   1
## 1126    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1127    1     0     0 -1   6  -1   1   3   1   3   5  -1   1   1
## 1128    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   4
## 1129    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1130    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 1131    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   4
## 1132    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1133    0     0     0 -1   5  -1   2  -1   2  -1   1   1   4   4
## 1134    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1135    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1136    0     0     0  2  -1  -1   1   3   2  -1   5   4   1   1
## 1137    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1138    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1139    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1140    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   5
## 1141    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1142    0     0     0 -1   1  -1   1   5   1   3   1  -1   1   1
## 1143    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1144    0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 1145    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1146    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1147    0     0     0 -1   1  -1   2  -1   1   3   4   1   1   4
## 1148    0     0     0 -1  -1   5   1   5   2  -1   1  -1   4   4
## 1149    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1150    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1151    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   3
## 1152    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1153    0     0     0 -1   1  -1   1   4   1   3   3  -1   1   4
## 1154    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1155    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1156    1     0     0 -1  -1  -1   2  -1   1   2   4   4   1   1
## 1157    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1158    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1159    0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 1160    0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1161    1     0     0  2  -1  -1   1   6   1   2   3   4   1   1
## 1162    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1163    0     0     0  1  -1  -1   1   3   2  -1   1   1   1   1
## 1164    1     0     0 -1   5  -1   2  -1   1   3   4   1   1   4
## 1165    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1166    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1167    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1168    1     0     0 -1  -1  -1   1   6   1   3   1  -1   1   1
## 1169    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1170    0     0     0 -1   2  -1   1   5   1   2   2   2   1   1
## 1171    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1172    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1173    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1174    1     0     0 -1  -1  -1   1   5   1   5   4  -1   1   1
## 1175    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1176    0     0     0  1   1  -1   2  -1   2  -1   1  -1   5   5
## 1177    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   4   4
## 1178    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1179    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1180    0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 1181    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1182    0     0     0 -1   6  -1   2  -1   1   2   5  -1   1   4
## 1183    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1184    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   5   4
## 1185    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1186    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1187    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1188    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   1
## 1189    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1190    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1191    0     0     0 -1   7  -1   1   4   1   2   4   4   1   2
## 1192    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1193    1     0     0 -1   1  -1   2  -1   1   2   1   1   5   4
## 1194    0     0     0 -1   1  -1   1   5   1   2   1  -1   1   2
## 1195    1     0     0 -1  -1  -1   1   3   1   4   3   1   1   1
## 1196    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   2   4
## 1197    0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   4
## 1198    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 1199    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1200    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1201    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1202    0     0     0 -1   8  -1   2  -1   2  -1   1   1   4   4
## 1203    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   2
## 1204    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1205    0     0     0 -1  -1  -1   1   4   2  -1   5   1   1   1
## 1206    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1207    0     0     0 -1   6  -1   2  -1   2  -1   5   3   1   4
## 1208    0     0     0 -1   2  -1   2  -1   2  -1   1  -1   1   4
## 1209    1     0     0 -1   6  -1   1   6   2  -1   1  -1   2   4
## 1210    0     0     0 -1   6  -1   1   3   1   3   5  -1   1   2
## 1211    1     0     0  2  -1  -1   1   3   2  -1   5  -1   1   4
## 1212    0     0     0 -1   1  -1   2  -1   1   3   5  -1   2   4
## 1213    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1214    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1215    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 1216    0     0     0 -1   7  -1   2  -1   2  -1   5  -1   1   2
## 1217    1     0     0 -1   1  -1   2  -1   1   4   1  -1   2   2
## 1218    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 1219    0     0     0 -1   1  -1   2  -1   2  -1   3   4   1   4
## 1220    0     0     0 -1  -1  -1   2  -1   1   6   5   1   1   4
## 1221    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1222    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1223    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   2
## 1224    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1225    0     1     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1226    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1227    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1228    0     0     0 -1  -1  -1   1   4   1   3   1  -1   1   1
## 1229    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1230    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1231    0     0     0  1  -1  -1   1   4   2  -1   5   1   1   4
## 1232    1     0     0 -1   9  -1   2  -1   2  -1   1  -1   4   4
## 1233    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1234    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1235    0     0     0 -1   5  -1   1   5   1   1   5   5   1   4
## 1236    0     1     0 -1  -1  -1   1   6   2  -1   5   4   1   4
## 1237    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1238    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1239    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 1240    0     0     0 -1  -1  -1   1   4   1   4   5   5   1   1
## 1241    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 1242    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1243    0     1     0 -1  -1  -1   2  -1   1   6   5   4   1   1
## 1244    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1245    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1246    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1247    0     0     0  1  -1  -1   1   4   1   4   1  -1   1   1
## 1248    0     0     0 -1   1  -1   1   6   1   3   4   4   1   4
## 1249    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1250    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1251    0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 1252    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1253    0     1     0 -1  -1  -1   2  -1   1   4   5  -1   1   1
## 1254    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 1255    0     0     0 -1  -1  -1   1   5   1   3   5  -1   1   1
## 1256    0     0     0  6  -1  -1   1   3   2  -1   5   5   1   2
## 1257    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1258    0     0     0 -1  -1   4   2  -1   2  -1   1   1   1   1
## 1259    0     0     0  2  -1  -1   1   5   2  -1   1   1   1   2
## 1260    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   2
## 1261    0     0     0 -1  -1  -1   2  -1   2  -1   5   1   1   1
## 1262    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   1
## 1263    0     0     0 -1   1  -1   2  -1   1   5   3  -1   4   4
## 1264    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1265    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1266    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1267    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1268    0     0     0 -1   1  -1   1   4   1   2   1  -1   1   4
## 1269    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 1270    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1271    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1272    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1273    0     0     0 -1   1  -1   1   5   1   3   1  -1   1   2
## 1274    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   5
## 1275    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 1276    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1277    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1278    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1279    0     0     0 -1   1  -1   1   4   1   2   4   3   1   1
## 1280    0     0     0 -1   1  -1   2  -1   2  -1   1   5   1   4
## 1281    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1282    0     0     0  2  -1  -1   1   4   1   5   4   4   1   1
## 1283    1     0     0 -1   1  -1   1   6   1   3   4  -1   1   4
## 1284    0     0     0 -1   1  -1   1   6   1   4   1  -1   1   4
## 1285    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1286    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1287    0     0     0 -1   1  -1   2  -1   1   1   5   4   1   1
## 1288    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1289    0     0     0  2   2  -1   1   1   1   5   5   4   1   1
## 1290    1     0     0 -1   1  -1   2  -1   1   1   1  -1   4   4
## 1291    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1292    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1293    0     0     0 -1   1  -1   1   5   1   5   1  -1   1   4
## 1294    0     0     0 -1  10  -1   1   4   2  -1   3   1   1   4
## 1295    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1296    0     0     0 -1  -1   4   2  -1   1   4   1  -1   1   2
## 1297    0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 1298    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 1299    0     0     0 -1   3  -1   1   6   1   2   1   4   1   4
## 1300    0     0     0 -1   1  -1   1   3   1   5   1  -1   1   1
## 1301    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1302    0     0     0 -1   6  -1   1   3   2  -1   5   5   1   1
## 1303    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1304    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1305    0     0     0 -1   6  -1   1   5   1   3   5   5   1   4
## 1306    0     0     0  2  -1  -1   1   2   1   2   4   4   1   1
## 1307    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1308    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1309    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1310    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1311    1     0     0 -1  -1  -1   2  -1   1   3   1   1   1   1
## 1312    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1313    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1314    1     0     0 -1  -1  -1   1   4   1   3   1  -1   1   4
## 1315    0     0     0 -1   1  -1   1   2   1   3   1   1   1   4
## 1316    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 1317    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1318    0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 1319    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1320    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1321    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1322    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1323    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1324    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1325    1     0     0 -1  -1  -1   1   3   2  -1   3   5   1   1
## 1326    0     0     0  1  -1  -1   1   4   2  -1   4   1   2   1
## 1327    0     0     0 -1  -1   4   2  -1   1   3   1   4   1   4
## 1328    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1329    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 1330    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1331    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1332    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1333    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1334    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1335    0     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   4
## 1336    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1337    1     0     0 -1   6  -1   1   3   1   3   5   5   1   2
## 1338    0     0     0  2  -1  -1   1   2   2  -1   4  -1   4   4
## 1339    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1340    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1341    0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 1342    1     0     0 -1  -1  -1   1   3   1   3   4  -1   1   4
## 1343    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1344    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1345    0     0     0 -1   6   4   1   3   2  -1   1   5   1   1
## 1346    1     0     0 -1  -1  -1   1   5   1   5   1  -1   1   4
## 1347    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1348    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1349    0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 1350    0     0     0 -1   5  -1   2  -1   1   1   5  -1   1   1
## 1351    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1352    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1353    0     0     0 -1   1  -1   1   3   1   2   4  -1   1   1
## 1354    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1355    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1356    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1357    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1358    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1359    0     0     0 -1  -1  -1   1   5   1   3   1  -1   2   1
## 1360    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1361    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1362    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   3   4
## 1363    0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 1364    0     0     0 -1   3  -1   2  -1   1   6   5  -1   4   4
## 1365    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1366    0     0     0 -1  -1   9   2  -1   2  -1   4  -1   1   4
## 1367    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 1368    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 1369    0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 1370    0     0     0 -1   8   5   1   4   1   4   5  -1   1   2
## 1371    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1372    0     0     0 -1  -1   1   1   3   1   5   5   5   1   2
## 1373    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1374    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1375    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1376    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1377    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1378    0     0     0  1   1  -1   1   3   1   2   3  -1   1   1
## 1379    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1380    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1381    0     0     0 -1   1  -1   1   4   2  -1   4  -1   1   4
## 1382    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1383    0     0     0 -1   1   1   1   5   1   5   1  -1   1   2
## 1384    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1385    0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   2
## 1386    0     0     0 -1  -1   5   1   3   1   2   4   4   1   4
## 1387    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1388    0     0     0 -1   1  -1   1   2   2  -1   1  -1   1   2
## 1389    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1390    1     0     0 -1  -1  -1   1   6   1   3   3  -1   1   1
## 1391    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   1
## 1392    1     0     0 -1  -1  -1   2  -1   1   2   1   5   1   1
## 1393    0     0     0 -1  -1  -1   1   3   1   2   3  -1   1   2
## 1394    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1395    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1396    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1397    0     0     0  2   1  -1   1   4   1   4   1   4   1   4
## 1398    0     0     0  1  -1  -1   1   4   1   3   1  -1   1   1
## 1399    0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 1400    0     0     0 -1  -1   5   2  -1   1   3   5  -1   1   4
## 1401    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1402    0     0     0 -1   1  -1   1   3   2  -1   5  -1   4   4
## 1403    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   2   5
## 1404    0     0     0  2  -1  -1   1   2   1   3   4   4   1   1
## 1405    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   5
## 1406    0     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 1407    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1408    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1409    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1410    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1411    0     0     0 -1   1  -1   2  -1   1   4   4  -1   1   1
## 1412    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1413    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1414    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1415    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1416    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1417    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1418    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1419    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1420    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1421    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 1422    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1423    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1424    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 1425    0     0     0 -1   5  -1   1   2   1   3   3   3   1   2
## 1426    1     0     0 -1   1  -1   1   6   1   4   1  -1   1   1
## 1427    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1428    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1429    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1430    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1431    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1432    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 1433    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1434    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1435    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 1436    1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   2
## 1437    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1438    0     0     0 -1  -1  -1   2  -1   1   6   1   1   1   4
## 1439    0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 1440    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1441    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1442    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   4
## 1443    0     0     0 -1   6  -1   1   4   1   4   4   5   1   4
## 1444    0     0     0 -1  -1   1   1   2   1   1   1  -1   1   4
## 1445    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1446    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1447    0     0     0 -1   3  -1   2  -1   2  -1   5  -1   1   4
## 1448    0     0     0 -1   1  -1   1   4   2  -1   1   4   1   4
## 1449    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1450    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1451    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1452    0     0     0  1   1  -1   1   6   1   6   4  -1   1   3
## 1453    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1454    0     0     0  1   1  -1   1   6   1   6   1  -1   1   2
## 1455    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1456    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1457    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1458    0     0     0 -1   1   4   1   4   2  -1   4  -1   1   1
## 1459    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1460    1     0     0 -1   6  -1   2  -1   1   2   5  -1   1   4
## 1461    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1462    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1463    0     0     0 -1   8  -1   1   5   1   3   1   1   1   2
## 1464    0     0     0  1   1  -1   1   1   1   3   4   4   1   1
## 1465    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1466    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   5   5
## 1467    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1468    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1469    0     0     0 -1   3  -1   1   4   1   2   1   1   1   1
## 1470    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 1471    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1472    0     0     0 -1   3  -1   1   3   2  -1   1  -1   4   4
## 1473    0     0     0 -1  -1  -1   2  -1   1   3   4   1   1   1
## 1474    0     0     0 -1  -1  -1   2  -1   2  -1   2   4   1   1
## 1475    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1476    0     0     0 -1   1  -1   1   4   1   5   1  -1   1   4
## 1477    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1478    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 1479    0     0     0 -1   5  -1   1   3   1   3   4  -1   1   1
## 1480    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1481    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1482    0     0     0 -1  10  -1   1   1   1   3   5   5   1   1
## 1483    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1484    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1485    0     0     0  1  -1  -1   1   3   2  -1   1   1   1   1
## 1486    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1487    1     0     0 -1  -1  -1   2  -1   1   2   1  -1   4   4
## 1488    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1489    0     0     0 -1   6  -1   1   3   1   3   5  -1   1   4
## 1490    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1491    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1492    0     1     0 -1  -1  -1   1   3   1   6   5  -1   1   1
## 1493    0     0     0  3   1  -1   1   2   2  -1   2   4   1   4
## 1494    0     0     0 -1  -1  -1   1   1   1   4   5  -1   1   4
## 1495    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1496    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1497    0     0     0 -1  -1   5   1   3   1   3   1   1   1   4
## 1498    0     0     0 -1  -1   5   1   3   1   2   5  -1   1   5
## 1499    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 1500    0     0     0  2   1   4   1   2   1   2   1   1   1   1
## 1501    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1502    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1503    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1504    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1505    0     0     0 -1   1  -1   1   3   1   2   4   4   1   2
## 1506    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1507    0     0     0 -1   1  -1   1   2   1   2   1  -1   1   2
## 1508    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1509    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1510    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1511    1     0     0 -1   1   7   2  -1   2  -1   1  -1   1   1
## 1512    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1513    0     0     0 -1   1  -1   1   6   1   6   5  -1   1   1
## 1514    0     0     0 -1   5  -1   1   4   2  -1   5  -1   1   4
## 1515    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1516    0     1     0 -1  -1  -1   2  -1   1   4   5  -1   4   4
## 1517    1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1518    1     0     0 -1  -1  -1   2  -1   1   2   5  -1   4   4
## 1519    0     0     0 -1   6  -1   2  -1   2  -1   5   1   4   1
## 1520    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1521    0     0     0 -1   1  -1   1   4   1   6   1  -1   1   1
## 1522    0     0     0 -1  -1   5   1   6   2  -1   5  -1   1   1
## 1523    0     0     0 -1   1  -1   1   3   1   4   5  -1   1   1
## 1524    0     0     0 -1   1  -1   1   4   1   3   5  -1   1   4
## 1525    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1526    0     0     0 -1   1   4   1   3   1   6   1  -1   1   1
## 1527    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1528    0     0     0 -1   1  -1   1   3   2  -1   1   1   4   4
## 1529    1     0     0 -1  -1  -1   1   4   1   4   2   1   1   1
## 1530    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1531    0     0     0 -1   9  -1   2  -1   1   3   5  -1   2   4
## 1532    0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 1533    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1534    0     0     0 -1   1  -1   1   4   2  -1   4   4   1   2
## 1535    0     0     0 -1   4  -1   1   5   1   4   1  -1   1   2
## 1536    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1537    0     0     0 -1   4  -1   1   6   1   3   1  -1   1   4
## 1538    0     0     0 -1   1  -1   1   3   2  -1   1  -1   4   4
## 1539    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 1540    0     0     0 -1   6  -1   2  -1   1   2   1  -1   1   4
## 1541    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1542    0     1     0 -1  -1  -1   2  -1   2  -1   2  -1   1   4
## 1543    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1544    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1545    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1546    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 1547    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1548    0     0     0 -1  -1   5   1   3   1   4   4   1   1   1
## 1549    0     0     0 -1  -1  -1   2  -1   1   6   5  -1   4   4
## 1550    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   2
## 1551    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1552    1     0     0 -1   5  -1   1   5   2  -1   5  -1   1   1
## 1553    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1554    0     0     0 -1  -1   7   1   3   1   1   1  -1   2   2
## 1555    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1556    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1557    0     0     0 -1   5  -1   2  -1   1   5   5   5   1   1
## 1558    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1559    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 1560    0     0     0 -1   3   7   2  -1   2  -1   1  -1   1   1
## 1561    0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   5
## 1562    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   1
## 1563    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1564    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1565    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1566    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1567    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1568    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1569    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1570    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 1571    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1572    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1573    0     0     0 -1   1  -1   2  -1   1   2   3  -1   1   4
## 1574    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1575    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1576    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1577    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1578    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1579    0     0     0 -1   1  -1   1   6   1   6   2  -1   1   2
## 1580    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1581    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1582    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1583    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1584    0     0     0 -1   3  -1   1   4   1   4   1  -1   4   4
## 1585    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1586    0     0     0 -1   1  -1   1   2   1   3   4  -1   1   4
## 1587    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1588    0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 1589    0     0     0 -1   5  -1   1   5   1   2   5  -1   1   4
## 1590    0     0     0 -1   7  -1   1   4   1   2   1  -1   1   4
## 1591    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1592    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1593    1     0     0 -1   6  -1   1   3   1   3   5  -1   1   1
## 1594    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1595    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 1596    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1597    0     0     0 -1  -1  -1   1   4   1   3   1  -1   1   2
## 1598    0     0     0 -1   1  -1   1   5   1   6   5  -1   1   1
## 1599    1     0     0 -1   3  -1   2  -1   2  -1   1   1   4   4
## 1600    0     0     0 -1  -1   4   1   2   1   6   5   4   1   1
## 1601    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   5
## 1602    0     0     0 -1   1   4   2  -1   1   2   1  -1   1   2
## 1603    0     0     0 -1  -1   7   2  -1   2  -1   1  -1   4   4
## 1604    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1605    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1606    0     0     0 -1  -1  -1   1   3   1   3   5  -1   1   4
## 1607    0     0     0 -1   2  -1   2  -1   2  -1   5  -1   1   4
## 1608    0     0     0 -1   6  -1   2  -1   1   3   1   1   1   4
## 1609    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1610    0     0     0  2  -1  -1   1   4   1   4   1   1   1   2
## 1611    1     0     0 -1   6  -1   1   2   1   3   2   3   1   1
## 1612    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   2
## 1613    1     0     0 -1   1  -1   1   6   1   4   1  -1   4   4
## 1614    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1615    0     0     0 -1   3   4   1   1   1   4   4   4   1   4
## 1616    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1617    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1618    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1619    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1620    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1621    0     0     0 -1   2  -1   1   3   1   3   1  -1   1   4
## 1622    0     0     0 -1   6  -1   1   3   1   6   3  -1   1   4
## 1623    1     0     0 -1   1  -1   2  -1   1   6   4   4   1   1
## 1624    1     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1625    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1626    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1627    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1628    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 1629    0     0     0  5   1  -1   1   3   2  -1   1  -1   1   1
## 1630    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1631    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1632    1     0     0 -1  -1  -1   2  -1   1   4   3   1   1   4
## 1633    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 1634    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1635    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1636    0     0     0  1  -1  -1   1   4   1   6   4   4   1   1
## 1637    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1638    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1639    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1640    0     0     0 -1  -1  -1   1   5   1   5   1  -1   1   3
## 1641    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1642    1     0     0 -1   1  -1   1   5   2  -1   1  -1   1   1
## 1643    0     0     0 -1   5  -1   2  -1   1   3   1   1   1   4
## 1644    1     0     0 -1   6  -1   1   3   1   3   3  -1   1   2
## 1645    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   2
## 1646    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1647    1     0     0 -1   5  -1   1   5   1   6   1  -1   1   4
## 1648    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1649    0     1     0 -1  -1  -1   1   6   2  -1   5  -1   1   1
## 1650    0     0     0 -1   3  -1   1   4   1   3   5  -1   1   2
## 1651    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1652    0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 1653    0     0     0 -1  -1   1   2  -1   2  -1   1   1   1   4
## 1654    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1655    0     0     0  3   1  -1   1   2   2  -1   5  -1   1   4
## 1656    0     0     0  2  -1  -1   1   1   2  -1   2   4   1   1
## 1657    1     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   1
## 1658    0     0     0 -1   1  -1   1   1   1   3   4   4   1   1
## 1659    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1660    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1661    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1662    1     0     0 -1  -1  -1   1   3   1   4   5  -1   1   1
## 1663    0     0     0 -1   3  -1   2  -1   1   3   1  -1   1   2
## 1664    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1665    0     1     0 -1  -1  -1   1   5   1   5   4  -1   1   1
## 1666    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   2
## 1667    0     0     0 -1  -1  -1   1   2   1   3   4   4   1   4
## 1668    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 1669    1     0     0 -1   3  -1   1   6   1   4   5  -1   1   4
## 1670    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1671    1     0     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 1672    0     0     0 -1   6  -1   2  -1   2  -1   1   3   1   4
## 1673    0     0     0 -1   7  -1   1   5   2  -1   4  -1   1   1
## 1674    0     0     0  3  -1  -1   2  -1   1   2   4   4   1   2
## 1675    0     0     0 -1   1  -1   1   4   1   1   5   4   1   1
## 1676    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1677    0     0     0 -1   1  -1   2  -1   1   4   5  -1   4   4
## 1678    0     0     0 -1   6  -1   1   3   2  -1   2   4   1   1
## 1679    0     0     0 -1  -1   7   2  -1   1   4   5   4   1   1
## 1680    0     0     0 -1  -1   7   1   2   1   4   1  -1   1   2
## 1681    0     0     0 -1  -1   4   1   2   2  -1   1   1   1   2
## 1682    0     0     0 -1   1  -1   2  -1   1   5   1   1   1   4
## 1683    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1684    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   5
## 1685    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1686    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1687    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1688    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1689    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1690    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1691    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1692    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1693    0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1694    1     0     0 -1   1  -1   1   6   2  -1   4  -1   1   4
## 1695    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   3
## 1696    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 1697    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1698    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1699    0     0     0 -1   1  -1   1   6   1   6   5  -1   1   4
## 1700    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1701    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1702    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1703    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1704    0     0     0 -1   6  -1   1   4   1   6   3   1   1   4
## 1705    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   5   5
## 1706    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1707    0     0     0 -1   1  -1   1   4   1   4   1   4   1   4
## 1708    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1709    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1710    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1711    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1712    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1713    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1714    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1715    0     1     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1716    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1717    0     1     0 -1  -1  -1   1   5   2  -1   5  -1   4   4
## 1718    0     0     0 -1   9  -1   2  -1   2  -1   5  -1   1   4
## 1719    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1720    0     0     0 -1   1  -1   1   4   1   4   5  -1   1   4
## 1721    1     0     0 -1  -1  -1   1   2   1   6   1  -1   1   4
## 1722    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   3
## 1723    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 1724    0     0     0 -1   6  -1   2  -1   1   2   1   1   1   4
## 1725    0     0     0 -1  -1  -1   2  -1   1   3   1   1   1   2
## 1726    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1727    0     0     0 -1   4  -1   2  -1   1   3   4  -1   1   4
## 1728    1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1729    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1730    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1731    0     0     0 -1   1   7   1   4   2  -1   1  -1   1   4
## 1732    1     0     0 -1   6  -1   2  -1   1   4   1  -1   1   4
## 1733    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   1
## 1734    0     0     0 -1   1  -1   1   3   2  -1   1  -1   2   4
## 1735    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1736    0     1     0 -1  -1  -1   2  -1   1   3   3  -1   4   3
## 1737    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 1738    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1739    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1740    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   5
## 1741    0     0     0 -1   1  -1   1   3   2  -1   1   1   2   5
## 1742    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1743    0     0     0 -1   1  -1   1   6   1   3   1  -1   1   4
## 1744    1     0     0 -1   6  -1   1   2   1   1   3   3   1   1
## 1745    0     0     0 -1   3  -1   2  -1   1   1   1  -1   4   4
## 1746    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1747    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1748    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1749    0     1     0 -1  -1  -1   2  -1   1   6   1   4   1   4
## 1750    1     0     0 -1   1  -1   1   3   1   6   1  -1   4   4
## 1751    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1752    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1753    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1754    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 1755    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1756    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1757    0     0     0 -1   1  -1   1   5   1   5   1  -1   1   4
## 1758    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1759    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1760    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1761    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1762    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1763    1     0     0 -1  -1  -1   2  -1   1   3   3   3   1   1
## 1764    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1765    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1766    1     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   1
## 1767    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 1768    1     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1769    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1770    0     0     0 -1   1  -1   1   2   2  -1   2   2   1   1
## 1771    1     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 1772    0     0     0  2  -1  -1   1   3   1   4   1  -1   1   1
## 1773    1     0     0 -1  -1  -1   2  -1   1   3   5  -1   4   4
## 1774    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1775    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1776    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 1777    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1778    0     0     0 -1  -1   5   1   5   1   5   1  -1   1   2
## 1779    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1780    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1781    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1782    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1783    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1784    1     0     0 -1   1  -1   1   3   1   2   1   5   1   1
## 1785    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 1786    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1787    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1788    0     0     0 -1   6  -1   1   4   2  -1   5   1   1   2
## 1789    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1790    0     0     0 -1   1  -1   1   4   1   3   5   1   1   4
## 1791    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1792    0     0     0  2  -1   7   1   3   1   4   1  -1   1   1
## 1793    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1794    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1795    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1796    0     0     0 -1   1  -1   1   1   1   5   5   1   1   4
## 1797    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1798    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1799    0     0     0 -1   1  -1   2  -1   2  -1   3   1   1   4
## 1800    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1801    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1802    0     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 1803    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1804    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1805    0     0     0 -1   1  -1   1   2   1   3   1  -1   1   1
## 1806    0     0     0 -1   1   7   1   3   2  -1   4  -1   1   4
## 1807    0     0     0  1  -1  -1   1   4   2  -1   1   1   1   1
## 1808    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1809    0     0     0 -1   1  -1   2  -1   1   1   1  -1   1   4
## 1810    0     1     0 -1  -1  -1   1   3   2  -1   1   4   1   4
## 1811    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1812    0     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 1813    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1814    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1815    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1816    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 1817    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1818    1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1819    1     0     0 -1   1   7   1   4   1   3   4   4   1   1
## 1820    0     0     0 -1   1  -1   2  -1   1   5   4  -1   1   4
## 1821    0     0     0  2   1  -1   1   3   1   6   4  -1   4   4
## 1822    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1823    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1824    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 1825    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1826    0     0     0 -1   5  -1   1   4   1   2   1  -1   4   4
## 1827    0     0     0 -1   1  -1   1   2   2  -1   1  -1   4   4
## 1828    0     0     0  2  -1  -1   1   4   2  -1   3   3   1   1
## 1829    0     0     0 -1   5  -1   1   6   1   5   3   3   1   1
## 1830    0     0     0  7  -1  -1   1   5   1   3   4   4   1   1
## 1831    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1832    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1833    0     0     0 -1  -1  -1   2  -1   2  -1   1   2   1   1
## 1834    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1835    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1836    0     0     0 -1  -1  -1   1   3   1   3   5   5   1   5
## 1837    0     0     0 -1   1  -1   1   2   1   2   2  -1   1   1
## 1838    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1839    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   3   1
## 1840    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1841    0     0     0 -1   1  -1   1   5   2  -1   1  -1   4   4
## 1842    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1843    0     0     0 -1  -1   1   1   5   2  -1   1  -1   5   5
## 1844    0     0     0 -1   1  -1   1   2   1   4   1  -1   1   1
## 1845    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1846    1     0     0 -1  -1  -1   2  -1   1   3   4   4   1   4
## 1847    0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   4
## 1848    0     0     0  1  -1  -1   1   3   1   3   5   5   1   1
## 1849    0     0     0  1  -1  -1   1   3   1   3   3   4   1   1
## 1850    0     0     0 -1   1  -1   2  -1   1   3   5  -1   5   5
## 1851    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 1852    0     0     0 -1   1  -1   1   5   2  -1   5  -1   1   4
## 1853    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1854    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1855    1     0     0 -1  -1  -1   1   5   1   2   4  -1   1   1
## 1856    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1857    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1858    1     0     0 -1  -1  -1   1   6   1   3   4   4   1   1
## 1859    0     0     0 -1  -1  -1   1   6   2  -1   4  -1   1   1
## 1860    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1861    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1862    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1863    1     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 1864    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   5
## 1865    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1866    0     0     0 -1   1  -1   1   4   1   3   5   5   1   4
## 1867    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1868    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1869    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1870    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 1871    0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   5
## 1872    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1873    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1874    0     0     0 -1   9  -1   2  -1   2  -1   1  -1   4   4
## 1875    1     0     0 -1  -1  -1   1   4   1   2   4  -1   1   2
## 1876    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 1877    0     0     0  1  -1  -1   2  -1   2  -1   5  -1   1   1
## 1878    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1879    0     0     0 -1   1  -1   1   4   1   4   4  -1   3   4
## 1880    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1881    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1882    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   1
## 1883    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 1884    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1885    0     0     0 -1  -1  -1   1   4   1   6   4  -1   1   1
## 1886    0     0     0 -1  -1  -1   2  -1   1   2   5  -1   1   2
## 1887    0     0     0  1   1  -1   1   3   1   6   3   3   1   1
## 1888    0     1     0 -1  -1  -1   1   3   1   3   5  -1   1   1
## 1889    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 1890    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1891    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1892    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   1
## 1893    1     0     0 -1  -1  -1   1   3   2  -1   5  -1   1   1
## 1894    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1895    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1896    0     0     0 -1   1  -1   2  -1   1   4   4  -1   1   4
## 1897    0     0     0 -1  -1  -1   1   3   1   3   1   4   1   4
## 1898    0     0     0 -1  -1  -1   1   3   1   4   5  -1   1   1
## 1899    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1900    0     0     0 -1   1   7   1   3   1   4   1  -1   1   3
## 1901    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1902    1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1903    1     0     0 -1   5  -1   1   4   1   5   1  -1   1   1
## 1904    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1905    0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 1906    0     0     0 -1  -1   5   1   5   1   2   1   4   1   4
## 1907    0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   4
## 1908    0     0     0 -1  -1  -1   2  -1   1   4   5  -1   4   4
## 1909    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1910    1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 1911    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1912    0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 1913    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1914    0     1     0 -1  -1  -1   1   6   1   2   1  -1   1   1
## 1915    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1916    0     0     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 1917    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 1918    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1919    0     0     0 -1   4   1   1   3   2  -1   5   1   1   1
## 1920    0     0     0  3  -1  -1   1   2   1   4   1  -1   4   4
## 1921    0     0     0  2   2  -1   1   3   2  -1   1  -1   1   1
## 1922    0     0     0 -1   7  -1   1   3   1   1   2   2   1   1
## 1923    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   3
## 1924    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1925    0     1     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 1926    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1927    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 1928    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 1929    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1930    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1931    0     0     0  1  -1  -1   2  -1   2  -1   1   5   1   1
## 1932    0     0     0  1   1  -1   1   4   1   3   1  -1   1   1
## 1933    0     0     0 -1   1  -1   2  -1   1   3   1   4   1   1
## 1934    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1935    0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 1936    0     0     0 -1  -1   5   1   3   1   4   5   5   1   4
## 1937    1     0     0 -1   6  -1   2  -1   1   6   5  -1   1   4
## 1938    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1939    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1940    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1941    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1942    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1943    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1944    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1945    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1946    0     0     0 -1  -1  -1   1   1   1   4   1  -1   1   4
## 1947    0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 1948    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   1
## 1949    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1950    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1951    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1952    1     0     0 -1  -1  -1   1   3   1   4   3   4   1   1
## 1953    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1954    1     0     0 -1  -1  -1   2  -1   1   2   3  -1   1   4
## 1955    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1956    0     0     0 -1   1  -1   1   4   2  -1   5  -1   2   4
## 1957    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1958    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1959    1     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1960    0     0     0 -1  -1   5   1   6   1   4   1  -1   1   1
## 1961    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   3
## 1962    0     0     0 -1  -1   1   2  -1   1   5   1  -1   1   4
## 1963    1     0     0 -1   1  -1   1   3   1   6   1  -1   1   4
## 1964    0     0     0 -1   1  -1   1   6   1   5   1  -1   1   4
## 1965    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1966    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1967    0     0     0 -1   5  -1   2  -1   1   3   5  -1   1   4
## 1968    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1969    0     0     0 -1  -1  -1   1   4   1   5   1  -1   1   1
## 1970    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1971    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1972    0     0     0 -1  -1  -1   1   6   2  -1   5  -1   1   4
## 1973    1     0     0 -1  -1   4   1   4   1   4   5   5   1   2
## 1974    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1975    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1976    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1977    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1978    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1979    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 1980    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1981    0     0     0 -1   1  -1   1   2   1   6   5  -1   1   1
## 1982    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1983    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1984    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1985    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1986    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1987    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 1988    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1989    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1990    0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 1991    0     1     0 -1  -1  -1   1   3   2  -1   5  -1   1   2
## 1992    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 1993    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1994    0     0     0 -1   7  -1   2  -1   1   6   2  -1   1   4
## 1995    0     0     0  2  -1  -1   1   2   1   2   4   4   1   1
## 1996    0     0     0 -1  -1  -1   1   6   2  -1   5  -1   1   1
## 1997    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 1998    0     0     0 -1  -1   1   1   2   2  -1   1  -1   1   4
## 1999    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2000    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 2001    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2002    1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   5
## 2003    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2004    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 2005    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2006    0     1     0 -1  -1  -1   2  -1   1   4   4  -1   1   1
## 2007    0     0     0 -1   6  -1   2  -1   1   3   5   1   1   1
## 2008    0     0     0 -1  -1  -1   2  -1   1   3   5   5   1   1
## 2009    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 2010    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 2011    0     0     0 -1  -1   5   1   4   1   5   5  -1   1   4
## 2012    0     0     0 -1  -1  -1   1   3   2  -1   1   1   1   4
## 2013    0     0     0 -1  -1  -1   1   2   1   3   1   1   1   1
## 2014    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   2
## 2015    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2016    0     0     0 -1   1  -1   1   6   2  -1   4  -1   4   4
## 2017    0     0     0  3  -1  -1   1   3   2  -1   1  -1   4   4
## 2018    0     0     0 -1   1   5   2  -1   1   3   1  -1   1   1
## 2019    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 2020    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2021    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2022    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 2023    0     0     0  1  -1  -1   1   1   1   4   3   3   1   1
## 2024    0     0     0 -1   6  -1   2  -1   1   4   4   1   4   1
## 2025    0     0     0 -1   6  -1   1   2   1   3   1   1   4   4
## 2026    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2027    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2028    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2029    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2030    1     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 2031    0     0     0 -1  -1   5   2  -1   2  -1   1   1   1   1
## 2032    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2033    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 2034    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2035    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2036    0     0     0 -1   1  -1   1   5   2  -1   1  -1   2   4
## 2037    0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 2038    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   3
## 2039    0     0     0 -1   4  -1   1   3   2  -1   5  -1   1   4
## 2040    1     0     0 -1   7  -1   1   3   2  -1   5   5   1   1
## 2041    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 2042    0     0     0 -1   1  -1   1   2   2  -1   5  -1   4   4
## 2043    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 2044    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2045    0     0     0 -1  -1  -1   1   5   1   3   1  -1   1   1
## 2046    0     0     0 -1  -1   4   1   2   1   1   3   5   1   1
## 2047    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 2048    0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   4
## 2049    1     0     0 -1   3  -1   2  -1   1   5   1  -1   4   4
## 2050    0     0     0 -1   6  -1   2  -1   1   5   1  -1   1   4
## 2051    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 2052    0     0     0  6  -1  -1   2  -1   2  -1   5  -1   1   4
## 2053    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2054    0     0     0 -1   4  -1   2  -1   2  -1   1   1   1   1
## 2055    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2056    0     0     0 -1  -1  -1   1   3   1   6   3  -1   1   1
## 2057    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2058    0     0     0 -1   1   5   1   5   2  -1   1  -1   1   1
## 2059    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2060    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   2
## 2061    1     0     0 -1  -1   1   2  -1   2  -1   1   1   4   4
## 2062    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 2063    0     0     0 -1   1  -1   1   1   1   5   1  -1   1   1
## 2064    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 2065    0     0     0 -1   1  -1   1   3   2  -1   3   5   1   2
## 2066    0     0     0 -1   6  -1   1   1   1   2   5  -1   1   1
## 2067    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2068    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2069    0     0     0 -1  -1   1   2  -1   1   3   1  -1   1   4
## 2070    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2071    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 2072    0     0     0 -1   7   7   1   6   2  -1   1  -1   1   2
## 2073    0     0     0 -1   3  -1   1   3   2  -1   4  -1   1   4
## 2074    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 2075    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2076    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2077    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 2078    0     0     0  1   1  -1   1   3   2  -1   4  -1   1   1
## 2079    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 2080    0     0     0 -1   1   5   1   4   1   2   1  -1   1   1
## 2081    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2082    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2083    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2084    1     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 2085    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2086    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 2087    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2088    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2089    0     0     0 -1  -1  -1   1   6   1   2   5  -1   4   4
## 2090    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2091    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 2092    0     0     0 -1  -1   1   2  -1   2  -1   5  -1   4   4
## 2093    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2094    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 2095    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2096    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2097    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 2098    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2099    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2100    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 2101    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2102    0     0     0 -1   7  -1   1   2   2  -1   1  -1   4   4
## 2103    0     0     0 -1   4  -1   2  -1   1   3   1   1   1   1
## 2104    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   1
## 2105    0     0     0 -1  -1   7   2  -1   2  -1   3  -1   4   4
## 2106    0     0     0 -1   1  -1   1   4   1   2   3  -1   1   4
## 2107    1     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 2108    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2109    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 2110    1     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 2111    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   1
## 2112    0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   4
## 2113    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2114    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2115    0     0     0 -1   1  -1   1   6   1   5   1  -1   1   4
## 2116    0     0     0 -1   5  -1   2  -1   2  -1   1   1   1   4
## 2117    0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 2118    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 2119    1     0     0  2  -1   8   1   3   1   3   4  -1   1   1
## 2120    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   2
## 2121    0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   2
## 2122    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 2123    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 2124    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2125    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2126    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   5   5
## 2127    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2128    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2129    1     0     0 -1   1  -1   2  -1   1   3   1  -1   1   1
## 2130    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2131    0     0     0 -1   6  -1   2  -1   1   6   1  -1   1   2
## 2132    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2133    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 2134    0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   2
## 2135    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2136    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2137    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2138    1     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 2139    0     0     0 -1   1  -1   1   3   1   3   1  -1   4   4
## 2140    0     0     0 -1   1  -1   1   2   1   3   1  -1   1   4
## 2141    0     0     0 -1   6  -1   1   2   1   2   5  -1   1   1
## 2142    0     0     0 -1   1  -1   1   5   1   6   1  -1   1   4
## 2143    0     0     0 -1  -1  -1   1   3   1   6   5  -1   1   4
## 2144    0     0     0 -1   1  -1   2  -1   1   3   5  -1   4   4
## 2145    0     0     0 -1   1  -1   2  -1   1   6   3  -1   1   4
## 2146    0     0     0  2  -1  -1   1   6   1   3   5   5   1   1
## 2147    0     0     0 -1   7  -1   1   3   2  -1   3  -1   1   1
## 2148    0     0     0 -1   6  -1   2  -1   1   3   1   1   1   1
## 2149    0     0     0 -1  -1   4   1   5   2  -1   1  -1   1   4
## 2150    0     0     0 -1   4  -1   2  -1   2  -1   4   4   1   1
## 2151    0     0     0 -1   3  -1   1   4   1   1   1  -1   1   1
## 2152    0     0     0 -1   1  -1   2  -1   1   4   5   5   1   4
## 2153    1     0     0 -1   1  -1   1   2   1   5   4   4   1   4
## 2154    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 2155    0     0     0 -1   1  -1   1   6   2  -1   3   3   1   1
## 2156    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   1   1
## 2157    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2158    0     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 2159    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   2
## 2160    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2161    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 2162    0     0     0 -1   6  -1   1   6   2  -1   5  -1   1   1
## 2163    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2164    0     0     0  1  -1  -1   1   4   2  -1   5  -1   1   1
## 2165    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2166    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2167    0     0     0 -1   6  -1   2  -1   1   3   2   2   1   1
## 2168    0     0     0 -1  -1   7   2  -1   1   6   1  -1   1   1
## 2169    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2170    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2171    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2172    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2173    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 2174    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2175    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   1
## 2176    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   2
## 2177    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 2178    0     0     0 -1   1  -1   2  -1   1   5   1   1   1   2
## 2179    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 2180    0     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 2181    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2182    0     0     0 -1   1  -1   1   1   2  -1   5  -1   4   4
## 2183    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 2184    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 2185    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2186    0     0     0 -1   7  -1   2  -1   1   2   1  -1   1   2
## 2187    0     0     0 -1   6  -1   2  -1   2  -1   4   4   1   1
## 2188    0     0     0  2  -1  -1   1   4   1   3   4  -1   1   4
## 2189    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2190    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2191    0     0     0 -1   1  -1   1   6   1   2   1  -1   1   4
## 2192    0     0     0 -1   5  -1   1   3   1   3   1  -1   1   4
## 2193    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2194    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2195    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2196    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   5   5
## 2197    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   2
## 2198    0     0     0  1  -1  -1   2  -1   2  -1   4   3   1   1
## 2199    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2200    0     0     0  1  -1  -1   1   3   2  -1   4   4   1   1
## 2201    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 2202    0     0     0  1   1  -1   1   3   2  -1   4  -1   1   1
## 2203    0     0     0 -1  -1  -1   2  -1   2  -1   1   4   1   2
## 2204    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2205    0     1     0 -1  -1  -1   1   3   1   3   4  -1   1   2
## 2206    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2207    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2208    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2209    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2210    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2211    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   2
## 2212    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 2213    0     0     0  1  -1  -1   1   3   1   1   1   4   1   1
## 2214    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2215    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2216    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2217    0     0     0 -1   1  -1   2  -1   1   4   5  -1   2   4
## 2218    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2219    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2220    0     0     0 -1   2  -1   1   2   1   4   3   1   1   4
## 2221    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 2222    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2223    0     0     0 -1  -1  -1   1   2   2  -1   4  -1   1   1
## 2224    1     0     0 -1  -1  -1   1   3   1   2   4   4   1   2
## 2225    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2226    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 2227    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2228    0     1     0 -1  -1  -1   1   5   1   4   5  -1   1   1
## 2229    0     0     0 -1   6  -1   1   3   2  -1   3   2   1   1
## 2230    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2231    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2232    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2233    0     0     0 -1  -1  -1   2  -1   2  -1   5   4   1   1
## 2234    0     0     0 -1   5  -1   1   2   2  -1   5  -1   1   2
## 2235    0     0     0 -1   6  -1   1   3   1   2   4   4   1   4
## 2236    0     0     0 -1   1  -1   1   3   2  -1   4  -1   1   4
## 2237    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2238    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2239    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2240    0     0     0 -1  -1  -1   1   3   1   5   1  -1   1   1
## 2241    1     0     0 -1   1  -1   2  -1   1   4   1  -1   5   5
## 2242    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 2243    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2244    0     0     0 -1   7  -1   2  -1   2  -1   1   4   1   1
## 2245    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 2246    0     0     0 -1   1  -1   2  -1   1   6   5   1   4   4
## 2247    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 2248    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 2249    0     0     0 -1  -1   5   2  -1   2  -1   1   1   1   1
## 2250    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2251    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2252    0     0     0 -1   1  -1   1   6   1   3   5  -1   1   4
## 2253    0     0     0  6  -1  -1   2  -1   2  -1   1  -1   1   1
## 2254    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 2255    0     0     0  1  -1  -1   1   3   1   4   3   3   1   1
## 2256    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2257    0     0     0 -1   6  -1   1   2   2  -1   1   3   1   1
## 2258    0     0     0  2  -1  -1   2  -1   1   5   1  -1   1   1
## 2259    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2260    1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 2261    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2262    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   1
## 2263    1     0     0 -1   3  -1   2  -1   1   6   1   4   1   1
## 2264    0     0     0 -1   2  -1   1   3   2  -1   1  -1   1   4
## 2265    1     0     0 -1  -1  -1   2  -1   1   3   5  -1   4   4
## 2266    1     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 2267    0     0     0 -1   5   7   2  -1   1   3   1  -1   1   1
## 2268    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2269    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2270    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 2271    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2272    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
##        Latitude Longitude mobile_money savings borrowing insurance
## 1     -4.460442  29.81140            0       0         0         0
## 2     -6.176438  39.24487            1       1         1         0
## 3     -6.825702  37.65280            1       0         0         0
## 4     -3.372049  35.80831            1       0         1         0
## 5     -7.179645  31.03910            1       1         0         1
## 6     -6.362331  37.13774            0       0         1         0
## 7     -8.089257  35.83641            1       1         1         1
## 8     -8.916028  33.43390            1       1         0         0
## 9     -3.972247  32.64995            0       1         1         0
## 10    -8.033973  35.76942            1       0         0         1
## 11    -3.619491  33.81397            1       1         1         0
## 12    -8.847496  34.82359            1       0         0         0
## 13   -10.743503  34.73308            0       1         1         0
## 14    -8.295917  31.50903            0       0         0         0
## 15    -6.169053  39.19849            1       0         0         0
## 16    -1.338745  30.90012            0       0         0         0
## 17   -10.488371  39.02762            1       0         0         0
## 18    -3.180342  36.86124            1       1         1         0
## 19    -1.261826  30.67859            1       1         1         0
## 20    -7.782641  35.66560            1       1         0         0
## 21    -4.614918  29.78761            1       1         0         0
## 22    -2.597419  32.91360            1       0         1         0
## 23   -10.918859  38.00266            1       1         0         0
## 24    -8.871831  34.95540            0       1         0         0
## 25    -5.072699  38.45452            1       0         1         0
## 26    -7.774543  35.69338            1       1         1         0
## 27    -6.219971  39.23240            1       1         1         0
## 28    -1.324064  31.79063            1       1         1         0
## 29    -3.352235  37.34739            1       1         1         1
## 30    -6.819066  37.64553            1       1         1         0
## 31    -4.290469  35.85897            1       0         0         0
## 32    -2.762266  33.61668            1       1         0         0
## 33    -8.898817  33.54752            1       0         1         0
## 34    -3.831435  32.68175            0       0         1         1
## 35    -8.568090  32.12580            1       0         0         0
## 36   -11.467450  36.97929            0       1         0         0
## 37    -4.090220  34.73737            0       1         0         0
## 38   -10.511796  38.99460            1       1         1         0
## 39    -5.035472  36.23767            0       0         1         0
## 40    -2.402577  32.32959            1       0         1         0
## 41    -3.808334  32.22749            0       0         1         1
## 42    -8.539498  32.94379            0       0         1         0
## 43    -4.833257  34.76190            1       1         1         0
## 44    -5.717437  38.23602            1       0         0         0
## 45    -8.603990  39.26019            1       1         0         0
## 46    -2.545407  32.95832            1       0         0         0
## 47    -3.871321  35.65141            0       1         0         0
## 48    -8.564092  35.33906            1       1         1         0
## 49    -4.225851  34.61299            1       1         1         1
## 50    -8.953660  32.56462            1       0         0         0
## 51    -3.996847  33.37908            0       1         1         0
## 52    -2.611466  32.07196            0       0         1         0
## 53    -8.978150  36.76014            0       1         1         0
## 54    -2.340967  32.29512            1       1         1         0
## 55    -3.432752  31.51375            1       0         1         0
## 56    -8.128108  30.96697            0       0         1         0
## 57    -6.265031  36.86941            0       0         1         0
## 58   -10.488619  39.02783            1       0         1         0
## 59    -4.025963  34.50822            0       0         0         0
## 60    -8.571489  33.44991            1       1         0         0
## 61    -2.506709  32.01181            1       1         0         0
## 62    -3.363681  36.72003            1       1         1         0
## 63    -6.968397  39.08682            1       1         1         1
## 64    -6.372752  38.35172            0       1         1         0
## 65    -3.252335  30.90823            0       0         0         0
## 66   -10.662969  35.65687            1       0         1         0
## 67    -2.852849  32.88685            1       0         1         0
## 68   -10.467358  36.13245            1       1         0         0
## 69    -6.875757  39.23261            1       1         0         0
## 70    -6.883295  39.25355            1       1         1         0
## 71    -3.821738  33.30840            0       0         1         0
## 72   -11.263398  34.79128            1       1         1         1
## 73    -7.854259  31.17578            0       0         1         0
## 74    -4.268603  38.05357            1       1         0         0
## 75   -11.400793  36.42849            1       0         0         0
## 76    -6.148147  39.22280            1       0         1         0
## 77    -8.797980  34.99026            0       1         0         0
## 78    -6.290723  35.88228            0       0         0         1
## 79    -4.573588  33.03776            1       0         1         0
## 80    -5.245949  39.78153            0       0         0         0
## 81    -3.202463  37.20557            1       1         1         0
## 82   -10.750776  38.53077            1       0         0         0
## 83    -6.570029  35.51702            0       0         0         0
## 84    -6.931571  39.26271            0       0         0         0
## 85    -5.959047  36.69328            0       0         0         0
## 86   -10.919896  39.38173            0       1         0         0
## 87    -1.940385  32.85856            0       0         0         0
## 88    -9.330313  33.71555            1       1         1         0
## 89    -3.350379  37.30189            1       0         1         1
## 90    -3.365591  33.53727            1       1         1         0
## 91    -9.237312  34.89158            0       1         1         0
## 92    -9.493857  34.65333            1       0         1         0
## 93   -10.674737  35.64183            1       1         1         0
## 94    -9.930898  39.72115            0       0         0         0
## 95    -3.903049  35.81426            0       0         0         0
## 96    -6.833702  39.24087            1       0         0         0
## 97    -3.627541  33.40639            0       0         0         0
## 98    -2.040158  33.83592            0       0         1         0
## 99    -2.745153  31.88754            1       0         1         0
## 100   -3.674167  33.44101            1       1         1         0
## 101   -7.757071  35.48008            1       1         0         0
## 102   -7.255773  31.39929            1       1         1         0
## 103   -6.170265  39.22253            1       1         0         0
## 104  -10.519409  38.67833            1       1         0         1
## 105   -8.460328  32.15848            0       0         1         0
## 106   -7.681498  36.03874            1       0         1         1
## 107   -2.774334  32.70359            0       1         1         0
## 108   -1.498239  33.80839            1       1         0         0
## 109   -4.796151  38.29238            1       0         0         0
## 110   -2.416812  32.93535            1       0         0         0
## 111   -7.289010  38.99792            1       0         1         0
## 112  -11.042891  37.43361            0       0         0         0
## 113   -9.240114  33.33921            0       0         0         0
## 114   -4.642396  38.32172            0       0         0         0
## 115   -8.295487  31.52009            0       0         0         0
## 116   -6.885442  39.15487            1       0         0         0
## 117   -8.584248  35.20766            1       0         0         0
## 118   -2.037014  33.02725            0       1         1         1
## 119   -3.545571  36.98625            0       0         0         0
## 120  -10.281696  40.19748            1       0         0         0
## 121   -9.335193  34.76613            0       1         0         0
## 122  -11.107797  39.32546            0       0         0         0
## 123   -9.295657  32.75979            1       0         1         0
## 124   -6.819074  39.23892            1       1         0         0
## 125   -8.616326  39.26434            0       0         1         0
## 126   -3.147341  32.36981            0       0         0         0
## 127   -3.348855  35.78177            1       0         1         0
## 128   -5.605736  36.56213            0       0         1         0
## 129   -1.875367  33.70181            0       0         0         1
## 130   -6.220586  39.23271            1       0         0         0
## 131   -4.613718  34.95000            1       1         1         1
## 132   -2.844044  33.08184            1       1         1         1
## 133   -7.780921  35.69346            0       0         0         0
## 134   -3.282538  32.87852            0       0         0         0
## 135  -10.779779  39.54917            1       1         1         0
## 136   -8.844225  34.82568            1       0         0         0
## 137   -7.110450  31.16725            0       0         0         1
## 138  -10.663179  38.75114            1       1         1         1
## 139   -8.635658  31.42978            1       0         1         0
## 140  -10.853290  39.27796            1       0         0         0
## 141   -4.760987  34.58148            0       1         1         0
## 142   -6.907859  39.16891            1       1         0         1
## 143   -9.010237  33.00567            1       0         0         0
## 144   -1.959388  35.34817            0       0         0         0
## 145   -8.905958  33.46200            1       1         1         1
## 146  -10.629344  35.70398            1       0         0         0
## 147   -5.241083  32.33783            0       0         0         0
## 148   -3.358085  36.68217            1       1         1         0
## 149   -9.405595  39.59767            0       0         0         0
## 150   -6.121117  38.40738            1       1         0         0
## 151   -6.857071  39.28186            1       0         0         0
## 152   -3.420720  30.74116            0       0         1         0
## 153   -6.798244  39.24889            1       1         0         0
## 154  -10.661450  35.65716            1       1         0         0
## 155   -6.163611  39.19200            0       0         0         0
## 156   -7.750966  35.86474            1       1         1         1
## 157  -10.784345  38.62104            0       0         1         0
## 158   -5.618218  32.74653            1       0         0         0
## 159   -8.847223  34.82324            0       0         0         0
## 160   -6.153780  35.73856            1       0         0         0
## 161   -4.215867  35.73768            1       0         0         0
## 162   -8.695957  34.37510            1       1         0         1
## 163   -8.777397  33.64056            1       0         1         0
## 164   -7.251994  31.39577            0       0         0         0
## 165   -2.597026  32.91296            1       1         0         0
## 166   -1.302024  33.94419            1       0         0         0
## 167   -6.897877  39.28304            1       0         0         0
## 168   -4.775708  33.23886            0       0         0         0
## 169   -9.294164  32.76012            0       0         0         0
## 170  -10.551023  39.79038            0       1         0         1
## 171   -4.362962  35.07469            1       0         1         0
## 172   -8.802597  34.22394            1       0         0         0
## 173   -9.463246  33.95387            0       1         0         0
## 174  -10.849092  39.69424            0       0         0         0
## 175   -8.860809  34.00852            0       0         0         0
## 176   -7.934367  35.62788            1       1         0         1
## 177   -6.156445  39.21357            1       0         1         0
## 178   -1.497544  33.81604            1       1         1         1
## 179   -2.415815  32.93552            1       0         1         0
## 180  -10.344932  40.24872            0       0         1         0
## 181   -6.844976  39.27956            1       1         1         0
## 182   -4.269849  38.05020            1       0         1         0
## 183   -6.191095  31.22190            1       0         1         1
## 184   -1.568206  30.88958            0       0         1         0
## 185   -3.253247  34.21561            0       0         1         0
## 186   -9.954110  39.32897            0       0         1         0
## 187   -5.052858  33.49014            0       1         1         0
## 188   -2.401976  32.33061            0       0         0         0
## 189  -10.442330  36.05890            0       0         1         1
## 190   -2.535150  32.96039            1       1         1         1
## 191   -4.065121  35.28788            0       0         0         0
## 192   -2.752715  31.88174            1       0         1         0
## 193  -10.828834  34.88715            1       0         1         0
## 194   -2.776980  32.70354            0       1         1         0
## 195   -3.871249  35.65141            0       0         0         0
## 196   -5.867472  35.07340            0       1         0         0
## 197   -4.873362  38.45562            1       0         1         0
## 198   -6.184964  39.20752            1       1         0         0
## 199   -6.793946  39.25061            1       1         1         0
## 200   -3.287257  37.37458            0       0         0         0
## 201   -9.331522  33.33315            1       0         0         0
## 202   -3.353460  37.56767            1       0         0         0
## 203   -5.011343  32.80220            1       0         0         0
## 204   -2.060479  35.47691            0       0         0         0
## 205   -3.545911  36.98624            1       1         0         0
## 206   -8.074549  31.93359            0       1         0         0
## 207   -5.866409  35.13523            0       1         1         0
## 208   -2.769081  32.69200            1       1         1         0
## 209   -6.743296  32.48179            0       0         0         0
## 210   -8.590996  35.15098            1       0         1         0
## 211   -4.455599  33.95443            0       1         0         0
## 212   -8.906000  33.45583            1       0         1         0
## 213   -4.603282  34.65740            0       1         0         0
## 214   -2.609280  32.06952            0       0         1         0
## 215   -1.723663  33.96093            1       1         0         0
## 216   -2.636411  32.27621            1       0         0         0
## 217   -5.183178  39.79332            0       0         0         0
## 218   -6.811831  39.24486            0       1         1         0
## 219   -6.657472  37.14428            1       0         1         0
## 220   -5.125592  38.38524            1       0         0         0
## 221   -6.128432  39.21582            0       1         1         0
## 222   -7.490266  30.59744            0       0         0         0
## 223   -3.525608  35.34402            1       0         0         0
## 224   -8.696757  34.37410            0       0         0         1
## 225   -6.662062  37.13561            1       1         1         0
## 226   -4.185944  33.13411            1       0         1         0
## 227  -11.112992  38.47258            0       1         1         1
## 228   -7.141858  39.07478            0       1         1         0
## 229   -6.142630  39.24135            1       0         1         0
## 230   -4.188187  33.12340            0       1         1         0
## 231   -6.844786  39.27936            0       0         0         0
## 232   -6.173131  39.22521            0       0         0         0
## 233   -9.164725  33.81672            0       0         1         0
## 234   -6.212815  34.83488            1       1         0         1
## 235   -4.466974  35.69146            0       0         0         0
## 236   -2.905372  32.74710            0       1         1         0
## 237   -4.849303  34.83936            0       1         1         0
## 238   -9.011469  33.00584            0       0         0         0
## 239   -6.148424  39.22327            1       0         1         0
## 240   -2.018018  33.87930            0       1         0         0
## 241   -7.697167  35.62144            1       1         0         0
## 242   -4.744900  29.69787            1       1         0         1
## 243  -11.112724  38.47243            1       1         0         1
## 244   -3.300823  34.20970            0       1         0         0
## 245   -3.387680  36.67019            1       1         1         0
## 246   -1.513483  33.80911            1       1         0         0
## 247   -6.931571  39.26271            1       0         0         0
## 248   -4.545269  31.96504            1       0         0         0
## 249   -5.104970  32.39614            0       0         1         0
## 250   -4.638348  38.19302            1       1         0         1
## 251   -2.347185  32.29514            0       0         1         0
## 252   -6.264926  36.86952            1       1         1         0
## 253   -4.642978  38.32028            1       1         0         0
## 254  -11.039856  37.18551            0       0         0         0
## 255   -2.063752  35.55784            0       0         0         0
## 256   -6.301055  33.84649            0       1         0         0
## 257   -5.615290  38.27523            0       0         0         0
## 258   -3.103718  31.08312            1       0         1         0
## 259   -9.000066  34.54953            1       0         0         0
## 260  -10.181910  38.94369            1       1         0         0
## 261   -4.196712  34.82013            0       0         0         0
## 262  -11.040754  37.18215            0       0         0         0
## 263   -6.849305  39.14634            1       0         1         0
## 264   -3.070385  33.35457            1       0         1         0
## 265   -7.873138  30.79579            1       1         1         0
## 266   -2.523244  32.96335            1       1         1         0
## 267  -10.128376  39.13902            0       1         1         0
## 268   -4.268993  35.68586            0       0         0         0
## 269   -5.322255  34.51866            0       0         0         0
## 270   -8.764780  31.84100            0       0         1         0
## 271   -3.906508  35.81326            0       1         1         0
## 272   -2.979759  34.25998            0       1         0         0
## 273   -2.377594  33.58021            1       1         1         1
## 274   -5.887828  39.25355            0       0         0         0
## 275   -4.907854  29.66219            1       0         0         0
## 276   -2.634961  33.97212            1       0         0         0
## 277   -7.191244  31.02309            1       0         1         0
## 278   -2.103280  31.49478            0       0         0         0
## 279   -6.792464  39.24096            1       1         0         0
## 280   -3.559171  36.98752            1       1         1         1
## 281   -3.820754  37.45852            1       1         1         0
## 282   -8.370363  31.71733            0       0         0         0
## 283  -10.951186  39.02943            1       1         1         0
## 284  -10.287815  40.11716            1       0         0         0
## 285   -2.769726  32.59721            0       1         0         1
## 286   -9.327941  33.70485            0       0         1         0
## 287   -5.132928  39.09780            0       1         0         0
## 288   -8.973461  33.95759            0       1         0         0
## 289   -7.429241  31.37628            1       1         0         1
## 290   -2.539014  33.19913            1       0         1         0
## 291   -3.211082  37.26119            1       0         0         0
## 292   -7.106507  31.16539            0       1         0         0
## 293  -10.286637  40.11661            1       0         0         0
## 294   -5.879811  35.12092            0       1         0         0
## 295   -3.169872  33.30070            1       1         0         1
## 296   -5.041131  34.75544            0       0         0         0
## 297   -2.534127  32.93342            1       1         0         0
## 298   -5.329121  34.51971            0       0         0         0
## 299  -10.827532  34.88608            0       0         1         0
## 300   -6.800089  39.25587            1       0         0         0
## 301   -6.897340  39.25251            1       0         0         0
## 302   -7.782667  35.71354            1       0         0         0
## 303  -10.493106  39.32400            1       1         1         1
## 304   -9.336857  34.76603            0       1         0         0
## 305   -6.854797  30.52560            0       1         0         0
## 306   -6.484753  31.11700            0       0         0         0
## 307  -10.692438  39.39623            1       0         1         0
## 308   -2.641297  32.78498            0       0         0         1
## 309  -10.642997  38.84683            0       0         1         0
## 310   -3.739584  37.66097            1       0         0         0
## 311   -9.203381  34.56231            1       1         0         0
## 312   -2.518059  32.91151            1       1         1         0
## 313   -9.104020  33.18237            0       0         1         0
## 314   -2.801443  33.99067            1       1         0         0
## 315   -9.442549  33.55591            1       0         1         1
## 316   -4.356816  37.82229            1       1         1         0
## 317   -3.252566  34.21582            0       0         1         0
## 318   -4.545061  31.96526            1       0         1         0
## 319   -3.366650  37.31895            1       0         0         0
## 320   -1.630723  31.44443            0       0         0         0
## 321   -9.954605  39.33124            1       0         1         0
## 322   -4.489448  35.60621            0       0         1         0
## 323   -2.195641  31.44535            0       1         1         0
## 324  -11.144231  37.51044            1       1         1         1
## 325   -3.002279  31.94635            0       0         0         0
## 326   -1.335447  30.90514            0       0         1         0
## 327   -4.188567  35.02130            1       0         0         0
## 328   -5.037426  38.88133            0       0         0         0
## 329   -3.044137  31.37516            1       0         1         0
## 330   -6.345682  31.06963            0       0         0         0
## 331   -4.823232  34.75150            1       0         1         0
## 332   -1.863771  33.86567            0       0         0         0
## 333   -4.895145  38.57563            0       0         0         0
## 334   -1.208473  31.40702            0       1         1         0
## 335   -5.603523  36.56622            1       0         1         0
## 336   -5.974767  29.85589            1       1         1         1
## 337   -3.366902  36.71639            1       1         1         1
## 338   -4.199982  30.49019            0       0         1         0
## 339   -6.059043  37.09621            1       0         1         0
## 340  -10.280398  40.19799            1       0         0         1
## 341   -3.079075  32.08483            1       0         0         0
## 342   -6.341885  31.06502            1       1         1         1
## 343   -8.896037  31.69136            0       0         0         1
## 344   -7.909390  39.67025            0       0         0         0
## 345   -6.239907  39.53002            0       1         0         0
## 346   -4.268837  38.05366            1       0         0         0
## 347   -4.943768  38.91569            0       0         0         0
## 348  -10.378108  39.84106            0       1         0         1
## 349   -2.777050  32.70326            0       1         0         0
## 350   -2.963889  33.34137            0       0         0         1
## 351   -5.605833  36.56221            1       1         1         0
## 352   -3.821281  37.45938            0       1         0         0
## 353   -8.297941  35.28262            1       1         0         0
## 354   -3.443411  37.43350            1       0         0         0
## 355   -7.975373  31.62949            1       0         1         0
## 356   -2.523538  32.96288            1       1         1         0
## 357   -7.838941  35.63902            0       0         0         0
## 358  -10.860940  39.28016            1       1         0         0
## 359   -2.704197  33.48899            1       1         0         0
## 360   -2.870928  33.28540            0       0         0         1
## 361  -10.562191  39.17013            1       1         0         0
## 362   -3.348458  37.45972            0       0         0         0
## 363  -11.077934  38.27428            0       0         0         1
## 364   -4.962391  34.94210            0       0         0         0
## 365   -8.686935  36.70570            0       1         1         0
## 366   -3.564367  36.98124            1       1         1         0
## 367   -3.422855  30.73987            1       0         1         1
## 368  -10.893691  38.98678            0       0         0         0
## 369   -3.372700  36.65887            1       1         0         0
## 370   -7.380402  31.36434            0       0         0         1
## 371   -1.099997  34.01068            0       1         0         0
## 372   -3.200963  34.42227            0       0         0         0
## 373   -7.979895  31.63732            1       0         1         0
## 374   -8.825045  34.95897            0       1         1         0
## 375   -8.848541  32.28139            1       0         0         0
## 376   -5.046095  33.50275            1       1         1         0
## 377   -6.187375  39.21643            1       1         1         0
## 378   -5.873497  39.29242            0       1         1         0
## 379   -5.875086  39.25422            0       1         0         0
## 380   -6.208290  39.38595            0       0         1         0
## 381   -3.561104  33.89020            0       0         1         0
## 382  -10.603943  35.61389            1       0         1         0
## 383   -4.915051  34.93223            1       0         1         0
## 384   -6.161793  34.85769            0       0         1         0
## 385   -9.077891  34.64864            0       1         0         0
## 386   -5.763183  38.70204            0       1         0         0
## 387   -7.980074  31.63643            0       0         0         1
## 388   -6.751968  38.93444            1       0         1         0
## 389   -6.485667  35.94317            0       0         1         0
## 390   -1.249261  31.66376            0       1         1         0
## 391   -9.249496  32.83672            1       0         0         0
## 392   -8.934728  33.34384            1       1         0         0
## 393  -10.900564  39.63933            0       0         0         0
## 394   -2.961864  34.14980            0       0         0         0
## 395  -11.260035  34.79371            1       1         1         0
## 396  -10.793808  38.31887            1       0         0         1
## 397   -7.520484  39.28717            1       0         1         0
## 398   -5.238302  39.77755            1       1         0         0
## 399   -2.775613  33.79583            0       0         1         0
## 400   -6.137421  39.22995            0       0         0         0
## 401  -10.369849  39.22202            1       1         0         0
## 402   -3.864171  32.61097            1       0         0         0
## 403   -5.982628  39.28634            1       1         0         0
## 404   -7.750790  35.86440            1       0         1         0
## 405   -5.246152  39.78143            0       1         1         0
## 406   -9.347154  34.26108            1       1         1         0
## 407   -3.398257  36.53062            1       1         0         1
## 408   -2.979613  34.26952            1       1         1         0
## 409   -3.828861  30.63579            1       0         1         0
## 410   -6.125816  39.21909            0       0         0         0
## 411   -7.166858  30.53542            0       1         0         0
## 412   -6.155475  39.21215            0       0         0         0
## 413   -6.783983  39.23907            1       1         0         1
## 414   -6.742754  32.48287            0       0         0         0
## 415   -6.792668  39.24105            1       0         1         0
## 416   -9.601324  33.86540            0       0         0         0
## 417   -8.951976  33.24725            1       0         1         0
## 418   -5.677415  38.42597            1       0         1         1
## 419  -10.951173  39.02943            1       1         1         0
## 420   -2.415767  32.93514            1       1         1         0
## 421   -9.174879  32.86261            1       1         1         0
## 422   -7.786718  31.68321            1       0         1         0
## 423   -6.768802  39.26405            1       1         1         0
## 424   -3.196830  37.64922            1       0         0         0
## 425   -8.897929  33.45462            1       1         1         0
## 426   -9.006916  33.06786            1       1         1         0
## 427   -8.839791  34.80556            1       1         1         1
## 428   -7.118978  39.20020            1       0         0         0
## 429   -2.316523  32.68360            1       1         1         0
## 430   -9.001133  32.81153            1       0         0         0
## 431   -4.216691  35.73719            1       1         1         0
## 432   -7.945280  31.63928            1       1         0         0
## 433   -6.175935  39.24439            0       0         0         0
## 434   -8.123703  35.41988            0       0         0         0
## 435   -4.607088  34.46569            0       0         0         0
## 436   -6.960959  39.33519            1       1         1         0
## 437  -10.452590  39.41371            0       0         0         0
## 438   -6.538450  38.99099            1       0         1         0
## 439   -4.481284  34.19435            1       0         0         1
## 440   -1.234919  30.94733            0       1         1         0
## 441   -8.409383  35.86672            0       0         0         0
## 442   -6.485977  31.11694            0       1         0         0
## 443   -4.577621  30.30198            0       1         0         0
## 444   -3.745123  37.66582            1       1         0         1
## 445   -6.484983  35.93960            1       0         1         0
## 446   -7.490884  30.59589            0       1         1         0
## 447   -5.953726  39.26362            0       0         0         0
## 448   -5.350433  39.70199            1       1         0         0
## 449   -1.396004  34.61867            1       0         1         0
## 450   -9.493811  34.65333            1       0         0         0
## 451   -6.193548  36.37211            1       1         0         0
## 452  -10.694118  39.79462            0       0         0         0
## 453   -8.562328  35.33731            1       1         0         0
## 454  -10.098016  34.68721            1       1         0         0
## 455   -8.934525  33.34370            0       0         1         0
## 456   -8.351521  31.83402            0       0         0         0
## 457   -9.987597  38.96514            1       0         0         0
## 458   -2.386796  33.09744            1       1         0         0
## 459   -2.856078  30.54669            0       1         1         0
## 460   -4.073442  37.98994            1       0         0         0
## 461   -5.952817  36.69149            1       0         1         0
## 462   -3.429924  37.29028            1       1         1         0
## 463   -8.806513  34.97654            0       0         0         0
## 464   -4.610622  35.03752            0       0         0         0
## 465   -2.376992  33.58297            1       0         1         0
## 466  -10.863138  39.02731            0       1         1         0
## 467   -7.483167  31.18866            0       0         1         0
## 468   -3.387308  36.67108            1       0         1         0
## 469   -5.236976  39.78056            0       1         1         0
## 470   -2.456528  33.63985            1       0         0         0
## 471   -6.206686  34.83610            1       0         1         0
## 472   -1.782937  34.72699            1       1         1         0
## 473   -6.871658  38.57175            1       0         0         0
## 474   -4.204748  32.33176            0       0         0         0
## 475   -6.144322  35.73491            1       0         1         0
## 476  -10.917921  38.00300            0       0         0         0
## 477   -4.510312  34.17508            0       0         1         0
## 478   -5.929299  39.23306            0       0         0         0
## 479   -4.431526  34.46536            0       0         0         0
## 480   -4.351797  34.43500            0       1         0         0
## 481   -6.173824  35.63869            1       1         1         1
## 482   -5.136158  34.77293            1       1         1         0
## 483   -2.555089  33.05302            1       1         1         0
## 484   -6.823067  39.31011            1       1         0         1
## 485   -1.333372  30.90686            0       0         1         0
## 486   -5.087740  31.84774            0       0         0         0
## 487   -8.896828  31.69163            0       0         1         1
## 488   -8.297016  34.90485            0       0         0         0
## 489   -6.344063  31.08271            0       0         0         0
## 490   -4.580134  30.30334            0       1         1         0
## 491   -9.012380  33.06852            1       1         0         0
## 492   -5.346835  36.43177            0       0         0         0
## 493   -4.864235  30.34152            0       0         0         0
## 494   -6.161794  39.19225            1       1         1         0
## 495   -7.501528  31.43542            0       1         0         0
## 496   -6.157547  39.24593            1       1         0         0
## 497   -7.943048  31.63910            1       0         0         0
## 498   -8.509026  35.05530            1       0         0         1
## 499   -2.505295  32.00959            0       0         0         1
## 500   -7.119389  37.80367            0       0         0         0
## 501  -10.549913  39.78831            1       0         1         0
## 502   -6.880398  39.25065            1       1         0         0
## 503   -6.330410  31.06473            1       1         1         1
## 504   -4.887248  29.63958            0       0         0         0
## 505   -1.178618  31.42527            1       0         1         0
## 506   -6.522827  37.21554            0       1         1         0
## 507   -2.880233  37.37065            0       1         1         0
## 508   -5.083258  31.84803            0       0         0         0
## 509   -3.870967  32.76275            1       0         1         0
## 510   -6.334194  31.07925            1       1         1         0
## 511  -10.606220  39.62229            0       1         0         0
## 512   -9.215652  33.07898            1       0         0         0
## 513   -6.773837  36.64776            1       1         1         1
## 514   -2.533452  32.93166            1       1         0         1
## 515   -5.128472  39.10187            0       1         1         0
## 516   -7.997281  35.51670            1       0         1         0
## 517   -9.599984  33.86392            0       0         0         0
## 518   -2.479219  32.90873            1       0         0         0
## 519   -5.245700  39.76819            1       1         0         0
## 520   -3.720849  32.67924            1       0         1         1
## 521   -4.435023  30.02593            1       1         1         0
## 522   -9.174834  32.86467            1       1         0         0
## 523   -5.246045  39.78138            0       0         0         0
## 524   -2.525426  32.90297            1       1         0         0
## 525   -1.237315  34.23270            1       0         0         0
## 526   -2.107253  33.07570            1       1         1         0
## 527   -1.089506  31.80645            1       1         1         0
## 528   -3.368890  37.32185            1       0         0         1
## 529  -10.243959  38.25158            0       0         0         0
## 530   -8.496958  35.59041            1       1         0         0
## 531   -4.877587  31.58217            0       0         1         0
## 532   -1.340950  34.37664            0       0         0         0
## 533   -6.801584  39.25610            1       1         1         0
## 534   -8.282102  35.30936            1       1         0         0
## 535   -3.328359  36.63484            1       0         0         1
## 536   -9.212787  33.08299            1       0         1         0
## 537   -6.331498  31.06614            0       1         1         0
## 538   -8.929726  33.51238            1       0         0         0
## 539   -7.108497  31.16780            0       0         0         1
## 540   -8.278952  36.16308            1       0         1         0
## 541   -2.802618  33.99150            1       1         1         1
## 542   -2.518358  32.91259            1       1         1         0
## 543   -2.543599  32.97678            1       1         0         0
## 544   -3.367349  36.68591            1       1         0         0
## 545   -3.351811  37.34884            1       1         0         0
## 546   -5.246267  39.78131            1       0         1         0
## 547   -7.948720  35.78571            1       0         0         0
## 548   -9.336732  34.76600            0       1         1         1
## 549   -6.858264  39.23410            1       0         1         0
## 550   -3.374429  35.85422            1       1         1         0
## 551   -4.054862  32.24252            0       1         1         0
## 552   -6.241727  39.52942            1       1         1         0
## 553   -5.085428  31.84662            0       1         1         0
## 554   -9.174452  32.86430            1       0         0         0
## 555   -6.852880  39.25272            1       1         0         0
## 556   -2.533642  32.93235            1       1         0         0
## 557   -6.167751  35.89135            1       0         1         0
## 558  -10.244265  38.25265            0       0         1         0
## 559   -2.775401  33.79571            1       1         0         0
## 560   -6.002638  37.74761            0       1         0         0
## 561  -10.697917  35.80059            1       1         1         0
## 562   -8.296885  31.51606            0       0         0         0
## 563   -2.681389  30.57979            1       1         0         0
## 564   -6.160834  34.84365            0       1         1         0
## 565   -8.848432  34.82376            1       0         0         1
## 566   -9.253212  32.83682            1       0         1         0
## 567   -8.543366  34.44228            1       0         0         0
## 568   -3.382967  35.50345            1       1         1         1
## 569   -6.410001  35.10643            0       0         0         0
## 570   -8.687845  36.70755            1       0         0         1
## 571   -2.502878  33.55027            0       0         1         1
## 572   -2.462953  32.38394            0       0         0         0
## 573   -5.968360  39.19610            0       0         0         0
## 574   -4.801293  32.43059            0       0         0         0
## 575   -2.506915  33.54625            0       0         0         0
## 576   -5.440896  37.76881            0       0         0         0
## 577   -1.650807  31.70748            1       1         1         0
## 578   -8.883027  33.29293            0       0         1         0
## 579   -6.586633  36.08064            1       0         1         1
## 580   -9.083480  33.56219            0       1         0         0
## 581   -2.669543  32.98413            0       1         1         0
## 582   -6.484302  35.93892            1       0         0         0
## 583   -5.954697  35.96853            0       0         0         0
## 584   -4.760894  34.20092            0       0         1         1
## 585   -7.827022  33.35099            0       0         0         0
## 586   -1.335952  30.90493            0       0         0         0
## 587  -11.144555  37.51214            0       0         0         0
## 588   -6.951559  39.33051            1       0         0         0
## 589  -10.672729  35.64100            1       0         1         0
## 590   -9.083711  34.65344            0       1         0         0
## 591   -7.496951  31.03377            0       1         0         0
## 592   -2.748364  31.62747            0       0         0         1
## 593   -3.358981  36.66100            1       1         1         0
## 594   -4.881635  29.64784            1       0         1         0
## 595   -6.896591  39.25345            0       0         0         0
## 596   -6.948591  39.23188            1       0         0         0
## 597   -3.342265  35.78733            1       0         1         0
## 598   -1.876115  33.70149            1       1         0         0
## 599   -1.438035  34.58890            0       1         0         0
## 600   -6.041485  39.23010            1       0         0         0
## 601   -4.146826  32.88942            0       0         1         0
## 602   -7.045480  39.03073            0       0         0         0
## 603   -2.499938  33.54656            0       1         1         1
## 604   -4.438947  30.03459            0       0         1         0
## 605   -9.174398  32.86384            0       1         0         0
## 606   -5.693600  34.49531            1       1         1         1
## 607   -8.202698  35.99768            1       0         1         0
## 608   -7.497040  31.03245            1       0         0         0
## 609   -6.734163  38.84894            1       0         1         0
## 610   -6.784537  39.01631            1       0         0         0
## 611   -8.221546  35.46092            1       0         1         1
## 612  -11.034050  35.12097            0       0         1         0
## 613   -4.575918  30.09259            0       0         0         0
## 614   -4.454058  29.81093            1       0         1         0
## 615   -4.482062  34.19564            0       1         0         1
## 616  -10.203384  40.03890            1       0         0         0
## 617   -9.338054  34.56067            1       1         0         0
## 618   -7.955370  36.86374            0       1         0         0
## 619   -7.868047  35.40623            0       1         0         1
## 620   -6.873695  39.17482            0       1         1         0
## 621   -2.589076  32.64506            0       1         0         1
## 622   -3.217375  36.86661            1       1         1         0
## 623   -3.751652  32.85322            1       1         1         0
## 624   -4.502347  34.16541            0       1         0         0
## 625   -6.856450  39.28190            1       1         0         1
## 626  -10.847712  39.69935            1       1         0         0
## 627   -1.571293  30.88618            1       0         1         1
## 628   -6.931022  39.26420            1       1         1         0
## 629  -10.344922  40.24879            1       0         0         0
## 630   -4.193169  33.13199            0       0         1         0
## 631   -8.410753  35.36654            1       0         1         0
## 632   -6.678311  39.20479            1       0         0         0
## 633   -9.270369  33.36344            0       0         0         0
## 634  -10.281707  40.19750            1       0         0         0
## 635  -10.793825  39.59613            0       1         0         0
## 636   -7.216001  38.79324            0       0         0         0
## 637   -8.802407  34.22164            1       0         0         0
## 638   -8.905060  32.96149            1       0         0         0
## 639   -7.999127  35.85235            0       0         1         0
## 640   -4.482683  30.16062            0       1         0         0
## 641   -7.041571  30.56129            1       1         1         1
## 642   -2.711093  32.72457            0       1         0         0
## 643   -1.975942  32.91388            1       1         0         0
## 644   -2.397797  32.06342            0       1         0         0
## 645   -8.203472  36.69363            0       1         1         0
## 646   -5.246350  39.78141            0       0         0         0
## 647   -8.879760  34.82585            1       0         0         0
## 648   -4.740031  38.35021            1       0         1         0
## 649   -4.482911  30.16142            1       1         0         1
## 650   -8.906579  34.67260            1       1         0         0
## 651   -2.640628  32.78334            0       0         0         0
## 652   -6.744112  38.93101            1       0         0         0
## 653   -8.848410  32.28136            1       0         0         0
## 654   -8.205215  35.99778            0       0         1         0
## 655   -7.833434  33.35174            0       0         0         0
## 656   -5.122775  38.38481            0       0         1         0
## 657   -5.134827  34.77145            1       1         1         1
## 658   -2.608383  32.06985            1       1         1         0
## 659   -1.567965  30.88283            0       1         0         0
## 660   -6.375635  38.35002            1       0         1         0
## 661   -8.875282  34.82419            1       1         1         0
## 662  -10.834925  38.65013            0       0         0         0
## 663   -1.233503  34.22592            1       0         1         0
## 664   -6.798304  39.24894            1       1         1         0
## 665   -4.677560  38.46839            1       0         1         0
## 666   -6.345043  31.08317            0       0         0         0
## 667   -6.792645  39.24001            1       1         0         0
## 668   -9.246992  34.77573            0       1         0         0
## 669   -8.088196  36.68237            1       0         0         0
## 670   -8.296041  31.51167            0       0         0         1
## 671  -10.919520  35.27903            1       1         1         1
## 672   -7.596765  39.22961            1       1         1         0
## 673   -6.674549  39.17874            1       0         1         0
## 674   -3.522947  35.34588            1       0         1         0
## 675   -8.262122  35.30209            0       0         0         1
## 676   -7.647118  35.75620            0       1         1         1
## 677   -6.883253  39.25321            0       0         0         0
## 678  -10.911303  38.29750            1       1         0         1
## 679  -11.047807  34.76365            1       1         0         0
## 680   -6.135115  39.32389            0       0         0         0
## 681   -7.740814  35.87432            1       1         0         1
## 682   -9.988118  38.96452            1       1         1         0
## 683   -5.249295  32.34454            1       0         0         0
## 684   -6.162706  35.63959            0       0         0         1
## 685   -6.844802  39.27961            1       0         1         0
## 686   -5.125842  38.38466            1       0         0         0
## 687   -4.551515  34.84324            1       1         0         0
## 688   -7.759743  35.85600            1       1         1         0
## 689   -8.386332  33.23017            0       0         1         0
## 690   -6.743765  32.48060            0       1         0         0
## 691   -3.628043  34.26937            0       0         0         0
## 692   -9.249638  32.83648            1       1         0         0
## 693   -5.553021  37.33960            0       0         0         0
## 694  -10.128545  39.13891            0       1         0         1
## 695   -6.794004  39.25044            0       0         0         0
## 696   -7.681020  31.56045            1       0         1         0
## 697   -1.794876  34.72726            0       0         0         0
## 698   -5.024822  34.76461            0       0         0         0
## 699  -10.196750  38.56411            1       1         0         0
## 700   -3.347075  37.30240            1       1         0         1
## 701   -3.493885  36.81844            1       0         1         1
## 702   -3.360694  37.02811            1       0         1         0
## 703  -10.407368  39.16585            1       1         1         1
## 704  -10.361232  40.10445            0       0         1         0
## 705   -5.102358  39.80807            0       1         1         0
## 706  -11.014966  34.88006            1       1         1         0
## 707   -2.753136  31.65280            1       1         1         0
## 708  -10.180767  38.94161            1       0         0         0
## 709   -3.215508  36.86083            0       0         0         0
## 710   -7.751862  35.68172            1       1         0         0
## 711   -3.376479  36.67656            0       0         0         0
## 712   -6.079457  36.64711            1       1         0         1
## 713   -7.867612  35.40623            0       0         1         1
## 714   -5.926765  39.22105            0       0         1         0
## 715   -9.639440  34.57478            1       1         0         1
## 716   -8.630674  33.14908            1       0         0         0
## 717   -8.103924  35.90298            1       0         1         1
## 718   -8.696094  34.37366            1       1         1         1
## 719   -4.359322  35.07495            0       0         0         0
## 720   -6.207871  39.38608            0       0         1         0
## 721   -4.357362  37.82197            1       0         1         1
## 722   -4.624469  34.94520            0       0         0         0
## 723   -3.030877  33.25054            0       0         0         0
## 724   -2.599781  33.42122            1       1         1         0
## 725  -10.347772  40.08527            1       1         1         1
## 726   -3.743557  33.83470            0       0         0         0
## 727   -1.840512  31.14021            0       1         0         1
## 728   -6.768348  39.26735            1       0         1         0
## 729   -6.774287  36.64687            0       1         1         0
## 730   -8.433743  31.65853            0       0         0         1
## 731   -4.825238  34.75312            1       1         1         0
## 732  -10.203087  38.61948            1       1         0         0
## 733   -1.643161  31.43036            1       1         1         0
## 734   -7.481828  35.97683            0       0         0         0
## 735   -3.741618  33.83798            0       0         1         0
## 736   -8.902091  32.96400            0       1         1         0
## 737   -4.734325  34.92381            1       1         1         1
## 738   -4.874275  36.79100            0       1         0         0
## 739   -2.987156  34.19036            0       0         1         0
## 740   -4.186206  34.24277            1       1         0         0
## 741  -10.939607  34.99763            1       0         0         0
## 742   -3.430437  37.29052            1       1         1         0
## 743   -8.965028  32.89908            0       0         0         0
## 744   -4.876151  34.63017            1       1         0         0
## 745   -4.013727  34.51307            0       0         0         0
## 746   -4.916418  34.67375            0       1         0         0
## 747   -1.356994  31.63398            1       1         1         0
## 748   -6.242119  39.53025            1       1         1         0
## 749   -9.336808  34.76595            0       0         0         0
## 750   -6.149321  39.51664            1       1         0         0
## 751   -5.132168  39.09657            1       1         1         0
## 752   -5.608584  38.27904            0       0         1         0
## 753   -4.360872  29.96591            1       0         1         0
## 754   -6.054137  37.08920            0       0         0         1
## 755   -1.694281  34.29524            0       0         0         0
## 756   -4.489362  35.60642            0       0         0         0
## 757   -8.303533  32.32578            0       0         1         0
## 758   -2.824096  33.56847            1       1         1         0
## 759   -3.362605  36.48346            0       0         1         1
## 760  -10.665548  38.75009            0       0         1         0
## 761   -4.944119  38.91484            0       0         1         0
## 762   -1.176994  31.42242            0       1         1         0
## 763   -7.291475  36.06158            1       1         0         1
## 764  -10.857757  39.27922            1       0         0         1
## 765   -8.452301  35.17381            1       1         0         0
## 766   -4.120960  34.83554            1       0         1         0
## 767   -3.630122  34.29560            1       0         0         0
## 768  -10.107788  39.62153            0       0         0         0
## 769   -8.252518  31.98803            1       1         1         0
## 770   -6.758968  36.47029            1       0         1         0
## 771   -1.512548  33.80892            1       1         0         0
## 772   -4.432074  30.02836            1       1         0         1
## 773   -4.984155  39.83427            0       0         0         0
## 774   -3.102101  37.59077            1       1         0         1
## 775   -2.698431  33.48642            0       1         0         0
## 776   -3.214105  31.78429            1       1         1         0
## 777   -4.990917  39.07661            1       0         0         0
## 778   -7.797489  35.77105            1       1         1         1
## 779   -3.658031  32.23175            1       0         1         0
## 780   -2.017218  33.46502            1       1         0         0
## 781  -10.683534  39.59331            0       1         1         0
## 782   -6.807494  39.23123            1       0         1         0
## 783   -5.192490  38.76435            0       0         0         0
## 784   -4.200826  30.49374            0       0         0         0
## 785   -5.695991  36.63142            0       0         0         0
## 786   -4.641922  34.18432            0       1         0         0
## 787   -4.200235  32.32572            0       0         1         0
## 788   -4.683379  35.95498            1       0         0         0
## 789  -10.921938  39.38392            0       0         1         0
## 790   -9.011527  33.06948            1       0         0         0
## 791   -5.226239  35.17876            0       0         0         1
## 792   -3.365808  33.53942            1       1         1         1
## 793   -7.252047  31.39579            0       1         0         0
## 794   -9.169366  33.54174            1       1         1         0
## 795   -5.181991  38.79147            0       1         1         0
## 796   -3.822684  37.46291            1       1         1         0
## 797   -3.373275  36.65844            1       1         0         0
## 798   -3.030828  33.92736            1       1         1         0
## 799   -9.005242  34.54913            1       0         0         0
## 800   -4.887248  29.63958            1       1         0         0
## 801   -4.545303  31.96518            0       1         1         0
## 802   -3.042386  35.48199            0       0         1         0
## 803   -2.485763  32.92276            1       0         0         0
## 804   -3.830379  30.63567            1       1         1         0
## 805   -2.663604  32.64076            1       1         0         0
## 806   -8.011575  35.49811            1       0         1         0
## 807   -9.336969  34.76623            1       0         0         0
## 808   -2.635285  31.31249            1       0         0         0
## 809  -11.143326  37.51215            1       0         0         1
## 810   -9.336791  34.76600            1       1         0         1
## 811   -7.872945  30.79661            1       1         0         1
## 812   -3.082593  32.08669            0       0         0         1
## 813   -6.767140  39.11742            1       0         1         0
## 814  -10.923872  39.38218            0       0         1         0
## 815   -5.967492  39.19699            0       0         0         0
## 816   -4.617100  35.03143            0       1         1         0
## 817   -8.359675  32.29617            0       0         1         0
## 818   -5.131904  39.09902            0       0         0         0
## 819  -10.617617  38.81132            0       0         0         0
## 820   -6.218177  36.35919            1       0         0         1
## 821   -9.930898  39.72115            1       0         0         0
## 822   -6.735368  38.84880            1       1         1         1
## 823   -3.156105  32.37273            1       0         1         0
## 824   -7.780980  35.69260            0       0         1         0
## 825   -7.982354  31.53769            0       0         0         1
## 826   -5.246621  39.76660            0       0         0         0
## 827   -5.179832  38.79018            1       0         0         0
## 828   -8.980224  36.75909            0       0         0         0
## 829  -10.857828  39.78017            0       0         1         0
## 830   -2.497108  32.90594            1       1         0         0
## 831   -1.325962  31.82266            1       0         0         0
## 832   -8.253354  31.36132            1       1         1         1
## 833   -9.305501  33.62544            0       0         0         0
## 834   -3.752147  32.85004            0       0         1         0
## 835   -5.104153  32.39617            0       1         0         0
## 836   -2.546164  32.95737            1       1         0         0
## 837  -10.378723  39.84088            0       0         0         0
## 838   -4.112272  35.15864            0       1         0         0
## 839   -3.389938  36.76768            1       0         0         0
## 840  -10.171023  39.85875            1       1         1         0
## 841   -7.496754  31.03255            1       0         0         0
## 842   -3.400768  37.35744            1       1         1         0
## 843  -10.667499  38.74775            1       1         1         0
## 844   -6.263346  36.86894            0       0         0         0
## 845   -4.550209  34.84322            0       0         0         0
## 846   -3.287638  32.22239            0       0         0         0
## 847   -8.316859  35.55161            1       1         1         0
## 848  -10.797879  38.65343            0       0         0         0
## 849   -7.730373  35.71968            1       0         0         0
## 850   -1.507128  33.78789            1       1         1         0
## 851   -8.409450  35.86655            0       1         0         1
## 852   -5.060554  39.73325            1       1         1         0
## 853   -3.822367  37.46240            0       0         0         0
## 854   -2.529937  32.94447            0       0         0         0
## 855   -7.482223  35.96893            1       0         0         0
## 856   -5.073140  38.45363            1       1         1         0
## 857   -6.750875  30.41145            0       0         0         0
## 858   -8.781510  34.64492            0       0         0         0
## 859   -9.408772  33.91602            0       1         0         0
## 860   -6.148856  39.21399            0       0         0         0
## 861   -5.687193  36.62851            0       1         0         0
## 862   -3.618565  33.81542            1       1         1         0
## 863   -1.792115  34.73468            0       1         1         0
## 864   -8.572715  33.45564            0       0         0         0
## 865   -1.506447  33.78902            1       1         0         0
## 866   -4.834474  34.75082            0       0         0         0
## 867   -7.933247  35.78296            1       1         1         0
## 868   -9.170717  33.82011            0       0         0         0
## 869   -5.926778  39.22305            0       0         1         0
## 870   -3.053623  34.34203            0       1         0         0
## 871   -1.329375  31.80872            0       1         1         0
## 872   -4.627531  35.02776            1       0         0         0
## 873   -1.372901  34.43386            1       1         1         0
## 874  -10.683742  38.87934            1       1         0         0
## 875   -1.464741  31.73768            1       1         1         0
## 876   -5.402919  38.61264            1       0         1         0
## 877   -1.405404  33.70625            1       1         0         1
## 878   -8.936643  33.34546            1       1         0         0
## 879   -4.625868  35.75762            1       1         0         0
## 880  -10.416477  38.80636            0       0         1         0
## 881   -7.754419  35.48312            1       1         1         0
## 882   -3.574056  32.61107            0       0         1         0
## 883   -8.633744  33.15060            1       0         0         0
## 884   -8.204229  36.69396            1       1         1         0
## 885   -8.243206  35.02418            1       0         1         0
## 886   -6.815340  39.27343            0       1         1         0
## 887   -2.602053  33.42233            0       1         1         0
## 888   -8.282282  35.30944            1       1         1         0
## 889   -4.073239  37.99144            1       1         0         1
## 890   -6.044318  39.22818            0       1         0         0
## 891   -4.748464  29.69622            1       1         1         0
## 892  -10.727719  39.78729            0       0         0         0
## 893   -3.425950  30.73144            1       1         0         1
## 894  -10.684642  39.59021            0       0         0         0
## 895   -8.777538  33.64095            1       0         1         0
## 896   -3.388996  36.74088            1       1         1         0
## 897  -10.130070  39.13526            0       1         0         1
## 898   -3.276120  37.10946            1       0         0         0
## 899   -8.391658  38.94882            1       1         0         0
## 900   -6.586865  36.07748            1       1         1         1
## 901  -10.781496  39.54885            1       1         0         0
## 902   -5.085441  30.56619            1       1         1         1
## 903   -8.820650  36.25196            0       1         1         0
## 904   -3.238648  31.86982            0       1         1         0
## 905   -8.310717  31.05488            0       0         0         0
## 906   -5.313408  36.55919            0       0         0         0
## 907   -8.433683  31.66030            1       0         1         1
## 908   -6.955818  39.33102            1       1         0         0
## 909   -4.642832  38.32358            1       0         1         1
## 910   -5.054704  35.86374            1       0         0         0
## 911   -9.305675  35.28553            0       0         0         0
## 912   -2.541324  32.91309            1       0         0         0
## 913   -6.346440  31.06988            1       0         1         0
## 914   -8.937241  33.34711            1       0         0         0
## 915  -10.744102  34.73293            0       0         0         0
## 916   -3.211241  31.81910            1       1         1         0
## 917   -5.964764  35.97465            1       0         0         1
## 918   -4.745897  29.69706            0       1         0         1
## 919   -3.361153  36.68377            1       0         1         0
## 920   -7.041666  30.56138            0       1         0         0
## 921   -6.753309  30.41272            0       0         0         1
## 922   -2.637137  32.28019            1       1         0         0
## 923   -3.366356  36.68580            1       1         1         1
## 924   -4.534585  38.24079            1       1         0         0
## 925   -6.358466  39.45430            0       0         1         1
## 926   -4.545183  31.96512            0       0         1         0
## 927   -6.301227  35.88022            0       0         0         0
## 928   -4.408921  34.52967            1       0         1         0
## 929   -3.636546  32.93983            0       0         1         0
## 930   -6.139575  39.32515            1       0         1         0
## 931   -8.960022  32.89953            0       0         1         0
## 932   -8.374517  31.97839            1       1         1         0
## 933   -7.118598  39.20521            1       1         1         0
## 934   -9.337657  34.76740            1       1         0         0
## 935   -8.034076  35.76821            1       1         1         1
## 936   -8.490923  32.28890            0       0         1         0
## 937   -8.952210  33.24702            1       1         1         1
## 938   -4.335681  35.40283            0       0         0         0
## 939   -6.751094  36.46955            0       0         1         0
## 940   -2.802117  33.99140            1       0         0         0
## 941   -8.683723  35.10519            0       0         0         0
## 942   -1.677410  33.71071            0       1         0         0
## 943   -8.536823  32.94141            1       1         1         1
## 944   -9.199114  33.10054            1       0         0         0
## 945   -3.028071  33.25188            0       1         1         1
## 946   -9.325212  34.76290            1       1         1         0
## 947   -5.876844  39.29078            1       0         1         0
## 948  -10.557790  36.23737            1       1         1         0
## 949   -7.146022  31.20282            0       1         1         0
## 950   -2.122017  33.48686            0       1         0         0
## 951   -2.785471  33.78834            0       0         0         0
## 952   -7.424692  31.37070            1       0         1         0
## 953   -1.088420  31.80648            0       0         0         0
## 954   -3.162708  32.25907            1       0         0         0
## 955   -4.634835  38.20696            1       1         0         0
## 956   -2.040879  33.83973            0       0         1         0
## 957   -9.672312  39.10597            1       1         1         0
## 958   -2.538632  33.19864            1       0         1         0
## 959   -6.342315  31.08301            1       0         0         0
## 960   -2.078613  32.93989            1       1         1         0
## 961   -7.571408  36.10763            0       0         0         0
## 962   -8.977482  33.95139            1       1         0         0
## 963   -8.256622  35.09216            1       1         0         1
## 964   -7.942946  31.62918            1       0         1         0
## 965   -9.171456  33.82048            0       0         0         0
## 966  -10.737359  38.80795            1       0         0         0
## 967   -4.089253  34.73639            0       1         0         0
## 968   -1.890073  34.72970            1       1         1         0
## 969   -3.352097  36.66113            1       0         1         0
## 970   -6.072730  36.64452            1       1         0         1
## 971   -7.747411  35.71584            1       1         1         0
## 972   -2.657758  33.94021            0       1         1         0
## 973   -4.310061  35.62750            0       0         1         0
## 974   -9.119846  32.93786            0       0         0         0
## 975   -6.582218  39.07972            1       0         0         0
## 976   -6.755314  30.41356            0       0         0         0
## 977   -7.994485  31.79560            0       0         1         0
## 978  -10.793280  39.42274            1       1         0         0
## 979   -6.052412  37.08709            0       0         1         0
## 980   -2.527669  32.94528            1       1         1         0
## 981   -2.057465  31.51319            0       1         1         0
## 982   -8.302900  32.32682            0       0         1         0
## 983   -8.370214  31.71728            0       0         1         0
## 984   -5.165026  39.81222            0       0         1         0
## 985  -10.900501  39.64024            0       1         1         0
## 986   -5.748391  34.82956            0       1         0         0
## 987   -6.812393  39.24450            0       1         1         0
## 988   -6.928704  39.26278            1       0         0         0
## 989   -5.748464  34.83053            0       1         0         0
## 990   -9.237544  33.33852            0       0         0         0
## 991   -3.392292  36.74103            1       1         1         0
## 992   -8.687149  36.70807            1       1         1         1
## 993   -8.497040  35.59113            0       1         1         0
## 994  -11.132054  38.60646            1       0         1         1
## 995   -9.348936  34.77191            1       0         0         0
## 996   -1.302054  33.94417            1       0         0         0
## 997   -3.361639  36.68351            1       1         0         0
## 998   -5.769654  38.70284            0       0         1         0
## 999   -8.409383  35.86672            0       1         0         0
## 1000  -8.566789  34.44583            0       0         0         0
## 1001  -7.473740  36.12578            1       1         1         0
## 1002  -4.103362  32.40901            0       0         0         0
## 1003  -4.700120  38.11962            0       0         0         0
## 1004  -3.820722  37.45835            0       0         0         0
## 1005  -2.535342  32.93955            0       0         0         0
## 1006  -3.991295  33.38841            0       0         0         0
## 1007 -11.058681  37.33865            1       1         0         0
## 1008  -5.802079  34.40206            0       1         1         0
## 1009  -5.754774  38.69909            1       1         0         0
## 1010  -6.767303  38.98445            0       0         0         0
## 1011  -7.949883  31.60424            1       1         1         0
## 1012  -4.868917  29.64284            1       1         0         0
## 1013  -4.910217  29.66150            1       0         0         0
## 1014 -10.952199  39.27203            0       0         1         1
## 1015  -2.525437  32.90177            1       0         0         0
## 1016  -8.204114  35.99724            1       1         0         0
## 1017  -7.958475  31.61809            1       1         1         0
## 1018  -3.276007  32.79980            0       0         1         0
## 1019  -2.949926  33.36856            0       0         0         0
## 1020  -2.556107  30.60723            0       1         1         0
## 1021  -1.245187  31.66583            0       0         0         0
## 1022  -6.744098  30.40708            1       1         1         0
## 1023  -9.408100  33.91683            0       1         1         0
## 1024 -11.258996  34.79142            0       0         0         0
## 1025  -7.780918  35.69237            0       0         0         0
## 1026  -3.302949  37.51187            1       0         1         0
## 1027  -8.546793  32.54849            0       0         1         0
## 1028  -6.195374  39.22670            1       0         1         0
## 1029  -3.129820  33.64721            0       1         0         0
## 1030  -6.785439  39.23877            1       1         0         0
## 1031  -2.754981  31.87903            0       0         0         0
## 1032 -10.602689  39.62188            1       1         0         0
## 1033  -2.557304  36.78190            0       0         0         0
## 1034  -6.528858  37.21855            0       0         0         0
## 1035  -6.142729  39.22070            0       0         0         0
## 1036  -4.420343  34.75703            0       1         1         0
## 1037  -9.973875  34.62902            0       0         0         0
## 1038  -6.583188  38.55414            0       0         0         0
## 1039  -1.507042  33.78796            1       1         1         0
## 1040  -4.200494  34.82258            1       1         0         1
## 1041  -6.379011  38.35326            0       1         0         0
## 1042  -9.321775  32.78161            0       0         0         0
## 1043 -10.924964  39.38053            0       0         0         0
## 1044  -3.042396  35.48202            0       0         0         1
## 1045  -2.634303  32.79086            0       0         0         0
## 1046  -8.820687  36.25189            0       1         0         0
## 1047  -5.953565  39.26091            0       1         0         0
## 1048  -3.003309  31.94541            1       1         1         0
## 1049  -1.453420  31.06506            1       1         1         0
## 1050  -7.309372  30.63862            0       0         0         0
## 1051 -10.936574  39.28002            1       1         1         0
## 1052 -10.282454  40.18761            1       1         0         0
## 1053  -2.759560  33.61826            0       0         0         0
## 1054  -1.749394  31.61544            1       0         0         0
## 1055  -8.240094  35.44110            0       0         0         1
## 1056  -7.657839  35.45411            0       1         1         0
## 1057  -8.654806  35.12939            1       1         1         0
## 1058 -10.493125  39.32407            0       0         0         0
## 1059  -2.639400  33.97032            1       0         0         0
## 1060  -9.208730  33.08781            1       0         0         0
## 1061  -8.874971  34.82141            1       1         1         0
## 1062  -6.131042  39.30377            1       0         1         0
## 1063  -3.364465  33.54148            1       1         1         1
## 1064  -2.849018  30.53578            0       0         0         0
## 1065  -5.717323  38.23610            1       0         1         1
## 1066 -10.702943  39.13491            1       0         0         0
## 1067  -4.110708  35.18611            0       0         0         0
## 1068  -3.011582  33.93829            1       0         1         0
## 1069  -2.639184  32.95502            0       0         1         0
## 1070  -4.577699  30.09297            1       0         1         0
## 1071  -4.887558  29.64393            1       1         1         0
## 1072  -3.042507  35.48205            0       0         0         0
## 1073  -2.543495  32.90502            1       1         0         0
## 1074  -9.362257  34.79626            1       0         0         0
## 1075  -6.300749  35.50043            1       1         1         1
## 1076  -2.987681  34.19190            1       1         1         0
## 1077  -3.372336  36.65839            1       1         1         0
## 1078  -9.421972  33.95901            0       1         0         0
## 1079  -3.279447  32.88017            1       1         0         0
## 1080  -7.120795  39.20260            1       1         1         0
## 1081  -7.814538  35.78913            0       0         1         1
## 1082  -5.236558  39.77960            1       0         0         0
## 1083  -6.786935  39.11268            0       1         0         0
## 1084  -2.948407  34.14765            0       0         0         0
## 1085  -4.193376  33.13089            0       0         0         0
## 1086  -3.828789  32.60401            1       0         1         0
## 1087  -8.692032  35.10012            1       1         1         0
## 1088  -5.181955  39.09144            1       0         0         0
## 1089 -10.617497  38.81129            1       0         1         0
## 1090  -4.310329  34.22565            1       1         1         1
## 1091  -3.274321  32.79393            1       1         1         0
## 1092 -10.509894  38.99350            1       0         0         0
## 1093  -6.211118  31.22427            0       1         0         0
## 1094  -1.854728  31.58990            0       1         1         0
## 1095  -7.252124  31.39579            1       0         0         1
## 1096  -2.577908  32.13885            1       1         0         0
## 1097  -7.376220  31.36464            1       0         0         0
## 1098 -10.281816  40.19749            0       0         0         0
## 1099  -7.291695  36.06155            0       0         0         1
## 1100  -5.175875  34.62329            0       1         1         0
## 1101  -6.751050  36.46960            0       1         0         1
## 1102  -8.896721  31.69141            0       0         0         1
## 1103  -4.433357  30.02851            0       0         0         0
## 1104  -5.078245  39.10406            1       1         0         0
## 1105 -10.692603  39.81413            1       1         1         0
## 1106  -3.076902  32.08708            0       1         1         1
## 1107  -5.930022  39.29880            0       0         0         0
## 1108  -5.897271  35.21064            0       1         0         0
## 1109  -9.354617  34.41985            1       1         1         1
## 1110  -3.317067  36.70742            0       0         1         1
## 1111  -7.837171  38.34423            1       1         0         1
## 1112  -2.744255  31.88140            0       0         0         0
## 1113  -8.189757  31.84927            0       1         0         0
## 1114 -10.674655  35.64220            1       1         0         0
## 1115  -9.318674  32.77968            1       0         0         0
## 1116  -4.646342  35.04234            0       0         0         0
## 1117  -3.787501  30.49837            0       0         1         0
## 1118  -6.333513  31.08038            1       1         0         0
## 1119 -10.936330  34.99597            0       1         1         0
## 1120  -9.405334  39.59772            0       1         0         0
## 1121  -8.541288  31.90556            0       0         0         0
## 1122  -6.167220  39.21019            1       1         0         0
## 1123  -7.958412  31.61411            1       0         1         0
## 1124  -4.487604  35.61584            0       1         0         0
## 1125  -1.248912  31.66388            1       1         1         0
## 1126  -3.408707  31.51607            0       0         1         0
## 1127  -2.506179  32.91077            1       1         1         0
## 1128  -9.670500  39.10818            0       0         0         0
## 1129  -9.003208  32.80798            0       0         1         0
## 1130  -7.783640  35.67740            1       0         1         0
## 1131  -4.828142  34.75095            0       1         0         0
## 1132  -1.941336  32.86262            0       1         1         0
## 1133  -8.913861  33.43317            0       0         0         0
## 1134  -2.553917  30.60878            0       0         0         0
## 1135  -9.949313  37.90564            1       1         1         0
## 1136  -3.368412  36.73275            1       1         0         1
## 1137  -8.564994  32.12666            0       0         0         0
## 1138  -6.931875  39.26458            1       0         0         0
## 1139  -6.816883  30.48970            1       1         0         1
## 1140  -4.730659  38.33666            1       1         0         0
## 1141 -11.042250  37.43294            1       0         0         0
## 1142  -9.011570  33.00484            1       0         1         0
## 1143  -8.240115  35.44104            0       0         1         1
## 1144  -9.171341  33.81924            0       1         1         0
## 1145  -7.202537  31.08025            1       1         0         0
## 1146  -4.479575  34.19142            1       1         1         0
## 1147  -5.076110  38.45355            1       1         1         0
## 1148  -8.204259  36.69424            1       1         0         0
## 1149  -9.239578  33.33965            0       0         0         1
## 1150  -5.036571  36.23245            0       0         0         0
## 1151 -10.632288  38.84619            1       1         0         0
## 1152  -8.433944  31.66007            1       0         1         0
## 1153  -6.815037  39.15245            1       1         0         0
## 1154  -6.422808  31.22119            0       0         0         0
## 1155  -3.029920  33.26524            0       0         1         0
## 1156  -8.933314  33.34415            1       1         0         1
## 1157  -5.246162  39.78157            0       0         0         0
## 1158  -4.475330  34.18779            0       1         0         0
## 1159 -10.604963  35.61390            1       0         1         0
## 1160  -6.898221  37.49584            0       0         1         0
## 1161  -6.184958  39.20786            1       1         1         1
## 1162  -9.490176  33.27444            0       0         1         1
## 1163  -6.147715  39.51641            1       0         0         0
## 1164  -6.897652  39.28292            1       0         1         1
## 1165  -4.573104  35.65115            0       0         0         1
## 1166  -6.125615  39.21900            0       0         0         0
## 1167  -1.511382  33.80774            0       0         0         0
## 1168  -7.480956  31.18938            1       0         1         0
## 1169 -10.785433  38.61889            0       0         0         0
## 1170  -6.908738  39.17039            1       1         1         0
## 1171  -6.873981  30.52882            0       0         0         0
## 1172  -4.529464  38.23771            1       0         0         0
## 1173  -5.415161  39.72593            1       1         0         0
## 1174  -2.554943  33.05497            1       0         0         0
## 1175 -11.078110  38.27464            0       1         0         0
## 1176  -6.208129  39.38594            0       0         1         0
## 1177 -10.131074  39.13991            0       0         1         0
## 1178  -4.545238  31.96532            0       0         0         1
## 1179  -4.801082  32.43040            0       0         0         0
## 1180  -7.118777  37.80533            1       0         1         0
## 1181  -5.445350  38.03467            0       0         0         0
## 1182 -10.248619  38.69714            1       0         0         0
## 1183  -8.546546  32.54826            0       0         0         0
## 1184  -4.874166  36.79103            0       0         0         0
## 1185  -2.879652  32.23385            0       1         0         0
## 1186  -2.026642  33.46306            1       0         1         0
## 1187  -1.236945  30.94802            1       0         0         0
## 1188  -1.939928  32.86013            0       1         1         0
## 1189  -8.237302  35.43624            0       0         1         0
## 1190  -2.775935  33.79542            0       0         1         0
## 1191  -5.078630  39.12394            1       0         0         0
## 1192  -3.015183  33.04971            1       1         1         0
## 1193  -4.536829  38.24079            1       1         0         1
## 1194  -1.248176  31.66149            1       1         1         0
## 1195  -6.833379  39.24081            1       0         0         0
## 1196  -8.535848  32.94236            0       1         1         0
## 1197  -7.897603  31.59961            1       1         1         0
## 1198  -7.951425  35.78691            0       1         0         0
## 1199  -5.037125  38.88051            0       0         0         0
## 1200  -7.277879  31.04180            0       1         0         0
## 1201  -9.442633  33.55587            0       0         0         0
## 1202  -6.138801  39.23038            0       0         0         0
## 1203  -2.015420  33.94363            1       1         1         0
## 1204  -4.470482  35.69451            0       0         0         0
## 1205  -6.174307  39.21255            1       1         1         0
## 1206  -8.185828  31.52245            0       0         1         0
## 1207  -6.717176  38.73739            1       1         1         0
## 1208  -4.078846  37.13652            0       1         0         0
## 1209  -2.548617  32.98186            1       1         1         0
## 1210  -2.552243  32.91020            1       1         1         0
## 1211  -6.867696  39.28217            1       1         0         0
## 1212  -2.961180  34.16304            1       0         0         0
## 1213  -2.636654  32.27992            1       0         1         0
## 1214  -9.569345  34.87792            0       0         0         1
## 1215  -2.656405  31.57546            1       0         1         0
## 1216  -2.662600  32.64005            1       1         0         0
## 1217  -3.565175  36.95175            0       0         1         0
## 1218  -1.087705  31.80655            1       0         0         0
## 1219  -8.875161  34.82138            1       1         0         0
## 1220  -8.818194  34.84048            1       0         0         0
## 1221  -5.246048  39.78142            0       0         1         0
## 1222  -4.545293  31.96516            0       0         0         0
## 1223  -6.149396  39.51521            0       1         1         0
## 1224 -10.861290  39.02940            0       1         0         0
## 1225  -5.702095  34.49524            1       0         0         0
## 1226  -6.743388  30.40857            0       1         0         0
## 1227  -6.802138  39.04799            0       1         0         0
## 1228  -2.740385  31.39077            1       0         0         0
## 1229  -4.205279  34.83163            0       0         0         0
## 1230  -8.062827  36.00712            0       1         1         1
## 1231  -3.672029  33.43527            1       1         1         1
## 1232  -9.320334  32.78026            0       0         1         0
## 1233 -11.117437  35.18501            0       0         0         0
## 1234  -2.198380  31.44758            0       1         1         0
## 1235  -8.936705  33.34808            1       0         0         0
## 1236  -9.081679  34.80899            1       1         1         0
## 1237  -4.645499  35.04322            0       1         0         1
## 1238  -4.619285  35.76662            0       0         0         0
## 1239  -6.580177  39.08224            1       1         0         0
## 1240  -6.857164  39.27358            1       1         1         0
## 1241  -9.861860  38.89359            1       0         0         0
## 1242  -7.945408  31.63786            0       0         0         0
## 1243  -7.980466  31.63574            1       0         0         0
## 1244  -6.360085  37.13779            0       0         1         0
## 1245  -4.673296  29.99765            1       1         0         0
## 1246  -2.961771  34.16602            0       0         0         0
## 1247  -5.066668  31.93906            1       1         0         1
## 1248  -8.189974  31.84973            1       0         1         0
## 1249  -3.477845  37.57739            0       0         1         0
## 1250  -2.508970  35.60500            0       0         0         0
## 1251  -5.262932  39.78371            1       0         0         0
## 1252 -11.039236  34.75534            0       0         1         0
## 1253 -10.274178  40.17478            1       0         1         1
## 1254  -9.860296  38.89422            0       0         0         0
## 1255  -7.374329  30.62932            1       1         1         0
## 1256  -8.569586  34.45042            1       1         0         0
## 1257  -6.883073  39.25367            1       0         0         0
## 1258  -5.077282  39.10379            1       0         0         1
## 1259  -8.911420  33.43468            1       0         1         0
## 1260  -5.042673  33.49187            0       1         0         0
## 1261  -9.296204  32.77090            1       1         0         0
## 1262  -8.847476  34.82358            1       1         0         0
## 1263  -3.351815  37.02198            1       1         0         1
## 1264  -5.329071  34.51967            0       0         0         0
## 1265  -6.891166  38.56030            0       0         1         0
## 1266  -8.897497  33.45377            0       1         0         1
## 1267  -8.571663  33.45149            1       0         0         1
## 1268  -6.575886  36.05810            1       1         1         0
## 1269 -10.942641  39.24212            0       0         1         0
## 1270  -3.517377  32.39407            0       0         0         1
## 1271  -9.174110  32.86404            0       0         0         0
## 1272 -11.028368  39.25391            1       1         1         0
## 1273  -1.370831  34.08924            1       1         1         0
## 1274  -8.204944  35.99792            0       0         1         0
## 1275  -6.331423  31.06528            0       1         0         0
## 1276  -4.189685  35.02100            0       0         0         1
## 1277  -8.295835  34.90755            0       0         1         0
## 1278  -4.341213  35.39678            0       1         0         0
## 1279  -8.590790  35.15396            1       0         1         1
## 1280 -10.518433  38.68013            1       1         0         0
## 1281  -3.808550  32.22603            0       0         0         0
## 1282  -6.798603  39.16722            1       1         1         0
## 1283  -8.167511  36.33343            1       1         1         0
## 1284  -3.426084  30.73260            1       0         0         1
## 1285  -3.830539  30.63431            1       0         1         0
## 1286  -8.497178  35.59163            0       0         1         0
## 1287  -9.294835  32.75985            1       0         1         0
## 1288  -5.505384  32.49113            0       0         0         0
## 1289  -7.957530  31.61707            1       1         1         0
## 1290 -10.618727  38.81156            1       1         0         0
## 1291 -10.718672  38.77085            0       0         0         0
## 1292 -10.859750  39.78383            0       0         0         0
## 1293 -10.821988  39.53047            1       1         1         1
## 1294  -6.833252  39.24086            1       1         0         0
## 1295  -6.784750  39.15751            0       1         0         0
## 1296  -6.774998  37.75401            1       1         1         0
## 1297  -8.074447  31.93379            1       0         1         1
## 1298  -8.520152  39.09367            1       1         1         0
## 1299  -8.563262  35.33710            1       1         1         0
## 1300  -7.291474  36.06154            1       0         0         0
## 1301  -3.535957  32.41699            0       0         0         0
## 1302  -6.881212  39.28669            1       0         1         0
## 1303  -8.611124  31.29043            0       0         0         0
## 1304  -7.252479  37.73303            0       0         1         0
## 1305  -8.047945  35.46859            1       1         1         0
## 1306  -8.584176  35.20690            1       1         1         1
## 1307  -9.468258  33.95033            0       1         0         0
## 1308  -1.858006  33.05043            0       1         0         0
## 1309  -5.403271  38.61076            0       0         0         0
## 1310  -4.141928  33.45479            0       1         0         0
## 1311  -6.885232  39.15516            1       1         0         0
## 1312  -8.863944  34.01013            0       1         0         0
## 1313  -1.813507  33.39918            0       0         0         0
## 1314  -6.808917  39.10798            1       0         1         0
## 1315  -6.819884  39.23896            1       0         0         0
## 1316  -9.296518  32.77075            0       0         0         0
## 1317  -3.541056  33.13700            0       0         0         0
## 1318  -9.861525  38.89591            1       0         0         0
## 1319  -5.970089  39.19655            0       0         0         0
## 1320  -7.481221  31.18948            0       0         0         1
## 1321  -2.457498  32.91673            0       1         0         0
## 1322  -6.766904  39.11711            0       0         0         0
## 1323  -2.766226  32.11302            0       0         0         0
## 1324  -8.015630  31.60780            0       0         0         0
## 1325  -6.845011  39.27910            1       1         1         0
## 1326  -7.957522  31.61655            1       1         0         0
## 1327  -5.443251  38.03571            1       1         1         0
## 1328  -4.410158  34.77274            0       1         0         0
## 1329  -2.477641  32.20389            1       1         0         0
## 1330 -10.730171  39.79008            0       0         0         1
## 1331  -1.842942  31.14182            0       0         1         0
## 1332  -7.199297  31.05353            0       0         0         0
## 1333  -8.488180  32.28749            0       0         0         0
## 1334 -10.181007  38.94339            0       1         1         0
## 1335  -3.330566  36.63986            1       1         1         0
## 1336  -3.532103  33.10909            0       0         1         0
## 1337  -3.828594  32.60323            1       1         0         0
## 1338  -6.834060  39.24094            1       0         0         0
## 1339  -2.868922  32.52956            1       1         1         0
## 1340  -8.842268  34.81681            1       1         0         0
## 1341  -5.255828  32.36004            1       0         0         1
## 1342  -3.367226  36.68713            1       1         0         0
## 1343  -4.677816  35.95593            0       0         0         1
## 1344  -7.599822  36.99752            0       0         0         0
## 1345  -6.175132  37.60666            1       1         1         0
## 1346  -6.819436  37.64590            1       0         0         0
## 1347  -4.578554  33.05226            1       0         0         0
## 1348  -4.683479  34.89565            0       0         0         0
## 1349  -9.296036  32.77076            1       0         0         0
## 1350  -3.313394  37.13128            1       1         1         0
## 1351  -1.804956  33.40066            0       0         0         0
## 1352  -3.834086  32.68197            0       1         0         0
## 1353  -3.390898  35.50080            1       0         0         0
## 1354  -1.328819  31.80836            1       0         0         0
## 1355  -4.199558  32.32511            0       1         0         0
## 1356 -10.716993  38.77125            0       0         0         0
## 1357  -2.639351  32.27665            0       0         0         0
## 1358  -4.909873  29.66181            0       0         0         0
## 1359  -2.555321  33.04835            1       1         1         0
## 1360  -9.309252  33.62369            0       0         0         0
## 1361  -3.116547  33.63500            0       0         0         0
## 1362 -10.280367  40.11473            1       1         1         0
## 1363  -3.574209  33.39663            1       1         1         0
## 1364  -7.697058  35.62115            1       0         0         0
## 1365  -5.592471  38.25013            0       0         0         0
## 1366  -1.498631  33.81373            1       1         1         0
## 1367  -4.731770  38.33659            1       0         0         0
## 1368  -1.968789  32.91859            1       1         0         0
## 1369  -7.045029  30.56190            1       0         1         1
## 1370  -6.150041  39.51527            1       1         1         0
## 1371  -6.582160  39.08075            1       0         0         0
## 1372  -8.911144  33.46021            1       1         1         0
## 1373  -8.217617  31.68497            0       1         1         0
## 1374  -7.656825  35.45321            0       0         0         0
## 1375  -8.128389  30.96691            0       0         0         1
## 1376  -6.880545  39.28634            0       0         0         0
## 1377  -7.901711  31.59238            0       1         1         0
## 1378  -5.747892  34.82993            1       1         1         1
## 1379  -6.874888  30.53203            0       1         1         0
## 1380  -5.041033  33.49203            0       1         0         0
## 1381  -9.989919  38.96651            1       1         0         0
## 1382  -4.432813  30.02746            1       0         0         1
## 1383  -4.146769  32.88496            1       0         0         0
## 1384  -7.326880  35.54300            0       0         1         0
## 1385  -3.376518  36.67711            1       1         0         0
## 1386  -5.182547  38.78996            1       0         1         0
## 1387  -3.901757  35.81303            1       1         1         0
## 1388 -10.853176  39.27811            1       1         1         0
## 1389  -8.252193  31.98853            1       0         0         0
## 1390 -10.272671  40.16403            1       0         0         1
## 1391  -5.986547  38.22086            1       1         1         0
## 1392  -4.357457  37.82201            1       0         0         1
## 1393  -7.783844  35.66376            1       1         0         0
## 1394  -2.774221  32.61751            0       1         0         0
## 1395  -6.172539  35.73678            1       0         0         0
## 1396 -10.987258  35.62965            0       0         0         0
## 1397  -5.961231  35.97312            1       1         1         1
## 1398  -4.906134  35.78076            1       1         1         1
## 1399  -8.230081  35.43240            1       1         0         1
## 1400  -8.591173  35.15342            1       0         0         0
## 1401  -5.981867  35.44181            1       1         1         1
## 1402  -3.360554  33.92838            1       1         1         0
## 1403  -5.246029  39.78162            0       1         0         0
## 1404  -1.323663  31.79133            1       1         1         1
## 1405  -7.646819  35.75635            0       0         0         0
## 1406  -2.878944  37.36677            1       1         1         1
## 1407  -3.483882  37.57666            0       1         0         0
## 1408 -10.550582  39.78867            0       0         1         0
## 1409  -2.552190  32.90921            0       0         0         0
## 1410  -9.441318  33.56298            1       0         0         1
## 1411  -3.313353  36.70905            1       1         0         1
## 1412 -10.453933  39.40890            0       0         0         0
## 1413  -2.822872  33.36669            0       0         0         1
## 1414  -6.335614  31.06467            0       1         0         0
## 1415 -10.489456  39.02757            1       0         0         0
## 1416 -10.779807  39.54819            0       0         0         0
## 1417 -10.816626  39.52980            0       1         0         0
## 1418  -4.482634  35.05801            0       0         1         0
## 1419  -8.555560  34.44041            0       0         0         0
## 1420 -10.406698  39.16537            1       1         1         0
## 1421  -4.984155  39.83425            0       0         1         0
## 1422  -2.820199  33.37472            0       1         1         0
## 1423  -3.183415  35.47565            0       1         0         0
## 1424  -2.463518  33.63358            1       1         1         0
## 1425  -2.501594  32.88812            1       0         1         0
## 1426  -3.354894  37.02816            1       1         1         0
## 1427 -10.442568  36.06212            0       0         0         0
## 1428  -4.201522  30.48920            0       1         1         0
## 1429  -9.448775  34.44471            1       0         1         1
## 1430  -8.409128  35.86672            0       1         1         0
## 1431  -5.877589  39.28965            0       0         0         0
## 1432  -5.078551  39.12222            0       1         0         0
## 1433  -6.174566  39.21972            0       1         0         0
## 1434  -4.143758  33.45603            0       0         0         0
## 1435  -6.346204  31.06996            1       0         1         0
## 1436  -9.153371  33.48439            0       0         0         0
## 1437 -10.733520  39.51668            0       1         0         0
## 1438  -2.562278  32.92273            1       0         0         0
## 1439 -10.952359  39.34114            1       0         1         0
## 1440  -3.529821  32.41743            0       0         0         0
## 1441 -10.262463  39.92201            0       0         0         0
## 1442 -10.734911  39.51145            1       1         1         0
## 1443 -10.406595  39.16513            1       1         1         0
## 1444 -10.366193  38.76088            1       1         1         0
## 1445  -6.833240  39.24099            0       0         0         0
## 1446  -5.591854  38.25097            0       0         0         0
## 1447  -4.303707  34.21886            1       1         0         0
## 1448  -1.346914  31.65839            1       0         1         0
## 1449 -11.098781  39.30737            1       1         0         0
## 1450  -7.994345  31.79559            0       0         1         0
## 1451  -4.677372  35.95597            0       0         0         1
## 1452  -4.026007  34.50814            1       1         1         1
## 1453  -6.319659  31.08185            1       1         0         0
## 1454 -10.697105  39.39365            1       1         1         0
## 1455 -11.042434  37.43106            0       1         0         0
## 1456  -5.246212  39.78156            0       0         0         0
## 1457  -7.516174  39.23449            1       0         0         0
## 1458  -6.808057  39.25017            1       1         1         0
## 1459  -3.230813  31.81441            0       0         0         0
## 1460  -6.844884  39.23454            1       0         0         0
## 1461  -8.288632  35.30630            0       0         0         0
## 1462  -9.442603  33.55586            0       0         0         0
## 1463  -4.905149  35.77963            1       1         1         1
## 1464 -10.835639  38.64884            1       1         1         1
## 1465  -3.030816  34.35169            1       1         1         1
## 1466  -5.874116  39.25850            0       0         1         0
## 1467  -3.203744  34.41586            0       0         1         0
## 1468  -2.287084  32.26856            1       0         0         0
## 1469  -3.008850  37.58281            1       1         1         0
## 1470  -3.005696  37.58405            1       1         0         0
## 1471  -6.252552  30.91319            0       0         1         0
## 1472  -1.902157  35.41788            0       1         1         0
## 1473  -5.260576  39.78331            1       0         1         0
## 1474  -2.526170  32.90252            1       1         0         0
## 1475 -11.114904  38.47047            0       0         0         0
## 1476  -8.072963  31.93342            1       1         1         0
## 1477  -7.781061  35.69213            0       1         1         0
## 1478  -2.348638  32.29561            0       0         0         0
## 1479  -3.110210  32.72898            1       1         1         1
## 1480  -5.156076  38.44841            0       0         0         0
## 1481  -8.868727  34.95338            0       0         0         0
## 1482  -6.762835  38.98394            1       0         1         1
## 1483  -6.165228  39.20935            0       0         0         0
## 1484  -5.051254  33.48712            0       0         0         0
## 1485  -3.346076  37.30234            1       1         1         1
## 1486  -5.094561  39.77253            0       1         0         0
## 1487 -10.283449  40.11816            1       0         0         0
## 1488  -8.496129  35.59115            1       0         1         0
## 1489  -1.324223  31.79124            1       0         1         0
## 1490  -6.744328  36.09118            0       0         0         0
## 1491  -3.279386  32.21993            0       1         1         0
## 1492  -6.801701  39.05391            1       1         0         0
## 1493  -4.894028  38.57581            1       1         1         0
## 1494  -9.656229  33.90275            1       1         1         0
## 1495  -2.769367  32.59830            1       1         1         0
## 1496 -11.078765  38.27433            0       0         0         0
## 1497  -6.180251  39.23729            1       1         1         0
## 1498  -8.285460  35.30856            1       1         1         1
## 1499  -5.177701  39.79283            0       0         0         0
## 1500  -1.324367  31.79133            1       1         1         0
## 1501 -10.781260  39.54818            0       0         0         0
## 1502  -4.984044  39.83425            0       0         1         0
## 1503  -8.904659  34.66930            1       1         0         0
## 1504  -8.906187  33.45562            0       0         0         0
## 1505  -7.468961  36.12839            1       1         1         1
## 1506  -8.609636  31.29035            0       0         0         0
## 1507 -10.561740  39.17122            1       1         1         0
## 1508  -4.108853  35.18651            0       0         0         0
## 1509  -5.187207  38.76915            1       0         0         0
## 1510  -3.263644  32.22343            0       0         1         0
## 1511  -4.199660  32.32598            0       1         1         0
## 1512  -1.402118  34.39060            0       1         0         0
## 1513  -3.627718  33.39548            1       1         0         0
## 1514  -2.989378  34.19545            1       1         1         0
## 1515  -6.298305  35.48931            0       1         0         0
## 1516  -2.958909  34.15203            1       0         1         0
## 1517  -3.290587  32.24776            1       0         1         1
## 1518  -2.580367  32.13700            1       1         0         0
## 1519  -6.180251  39.23729            1       0         1         0
## 1520  -2.767162  32.60761            0       1         0         0
## 1521  -4.225829  34.61311            1       1         0         1
## 1522  -2.317028  32.68445            1       1         1         0
## 1523  -9.012511  33.06826            1       0         1         1
## 1524  -5.072166  38.45411            1       0         0         0
## 1525  -1.371133  34.08894            0       1         0         0
## 1526  -2.287163  32.26921            1       1         1         1
## 1527  -3.209626  37.31099            0       1         0         0
## 1528  -4.943269  38.91512            1       1         0         0
## 1529  -6.888472  39.16117            1       1         1         0
## 1530  -8.973632  33.95745            1       0         0         0
## 1531  -7.798882  35.77168            1       0         0         1
## 1532  -6.917841  39.25849            1       0         1         0
## 1533  -6.813962  30.48862            0       1         0         0
## 1534  -8.283058  35.30969            1       1         1         0
## 1535  -7.680544  31.56242            1       0         0         0
## 1536  -2.193328  31.44266            0       1         1         0
## 1537  -1.335291  33.80024            1       1         1         0
## 1538  -3.240666  33.42970            1       0         0         1
## 1539  -7.954961  36.86503            1       1         0         1
## 1540 -10.361872  40.10192            1       0         0         0
## 1541  -4.879503  34.63683            0       1         1         0
## 1542  -7.680511  36.03972            1       0         1         0
## 1543 -10.560232  36.23843            0       0         0         0
## 1544  -4.108829  35.18654            0       1         0         0
## 1545  -6.172697  35.73670            0       0         0         0
## 1546  -5.446184  38.03563            0       0         0         1
## 1547  -5.246176  39.78152            0       0         1         0
## 1548  -3.372394  37.34017            1       1         0         0
## 1549  -6.743822  36.09175            1       0         0         0
## 1550  -8.017376  31.60421            0       0         0         0
## 1551 -10.663162  38.75215            0       1         1         0
## 1552  -6.720384  38.73755            1       1         0         0
## 1553 -10.818248  39.52731            1       1         0         0
## 1554  -6.814287  37.68486            1       1         0         0
## 1555  -8.848242  32.28191            1       0         0         0
## 1556  -7.872670  30.79677            0       1         1         0
## 1557  -8.299517  35.28403            1       1         0         0
## 1558  -9.575299  33.77273            0       1         0         0
## 1559  -4.230434  35.42796            1       1         0         0
## 1560  -6.584905  36.07362            0       0         0         0
## 1561  -6.823028  39.31091            1       1         0         0
## 1562  -5.873696  39.29160            0       0         0         0
## 1563  -5.323720  34.51856            0       0         1         0
## 1564  -4.648166  35.04097            1       1         1         0
## 1565  -3.101723  31.08703            0       1         0         0
## 1566  -1.875248  33.70188            0       1         0         0
## 1567 -11.050098  34.75486            1       1         1         1
## 1568  -9.957604  34.61850            0       1         0         0
## 1569  -6.265062  36.86318            0       1         0         0
## 1570  -9.408402  33.91706            0       1         0         0
## 1571  -2.526941  34.05992            0       0         0         0
## 1572  -5.992601  37.75381            0       0         0         0
## 1573  -3.042940  31.37638            1       1         1         0
## 1574  -5.873522  39.25880            0       0         0         0
## 1575  -2.951463  33.91648            0       0         1         0
## 1576  -3.871301  35.65138            0       1         0         0
## 1577  -2.755046  31.87911            0       0         0         1
## 1578  -4.954600  39.78724            0       1         0         0
## 1579  -8.252495  31.98901            1       1         1         0
## 1580  -1.461846  31.68683            0       1         1         1
## 1581  -8.374812  31.97821            0       0         1         0
## 1582  -8.392441  38.94695            1       1         1         0
## 1583  -8.848334  34.82286            1       0         0         0
## 1584  -3.996728  34.54162            1       1         1         0
## 1585  -3.568046  36.94879            0       1         1         0
## 1586  -3.622045  33.81446            1       0         1         0
## 1587  -6.742766  32.48257            0       0         1         0
## 1588  -3.808663  32.22639            1       0         1         0
## 1589  -6.538357  38.99085            1       1         1         0
## 1590  -1.556631  31.64424            1       1         1         0
## 1591  -5.505623  32.49358            1       0         0         0
## 1592  -7.252623  37.73266            1       0         0         0
## 1593  -4.881701  29.64791            1       1         1         1
## 1594  -5.956557  36.69484            0       0         0         1
## 1595  -2.763815  32.60413            1       1         0         0
## 1596  -6.484378  31.11691            0       0         0         0
## 1597  -3.822062  37.46193            1       1         0         0
## 1598  -9.464686  33.94887            1       0         0         0
## 1599  -8.088045  36.68110            0       1         1         0
## 1600  -3.005139  31.92481            1       1         0         1
## 1601 -11.217201  34.97810            1       0         0         0
## 1602  -8.820627  36.25205            1       1         0         0
## 1603  -7.872740  30.79650            0       1         0         0
## 1604  -8.316642  35.55187            0       0         0         0
## 1605  -9.334995  34.76437            0       0         0         0
## 1606  -6.897663  38.55779            1       1         1         0
## 1607  -8.905791  33.45594            1       1         0         0
## 1608  -2.501981  32.88888            1       1         1         0
## 1609 -11.039624  37.18491            0       1         0         0
## 1610  -6.819832  39.23836            1       0         1         0
## 1611 -10.275122  40.18637            1       1         0         0
## 1612  -7.255795  31.39926            1       1         1         0
## 1613  -1.986809  33.06927            1       1         1         0
## 1614  -7.154886  31.06596            0       0         1         0
## 1615  -7.784096  35.71351            1       1         1         0
## 1616  -4.804338  34.22029            0       1         0         0
## 1617  -7.937941  31.62741            0       0         0         0
## 1618  -3.983516  34.53671            0       0         1         0
## 1619  -3.571770  32.61084            0       0         1         0
## 1620  -7.044389  30.55955            0       0         1         0
## 1621  -4.638137  38.19882            1       1         0         0
## 1622  -6.790044  39.05432            1       0         1         0
## 1623  -4.216021  35.74168            1       1         1         1
## 1624  -9.336776  33.32216            0       0         0         0
## 1625  -8.977339  33.94898            0       1         0         0
## 1626  -3.130516  32.91876            0       0         0         0
## 1627  -3.196323  34.41477            0       0         1         0
## 1628  -5.992340  37.75255            1       1         1         0
## 1629  -9.591888  34.87660            1       0         1         1
## 1630  -5.181477  39.09101            0       0         0         0
## 1631  -7.393303  38.96921            1       1         0         0
## 1632  -5.170935  38.46550            1       0         1         0
## 1633  -2.563796  33.27545            1       0         1         0
## 1634  -3.128570  33.49541            0       0         1         0
## 1635  -6.484169  31.11612            1       1         0         0
## 1636  -4.793995  38.29087            1       1         1         1
## 1637  -8.616441  39.26453            0       0         0         0
## 1638  -6.778774  36.64757            0       0         1         0
## 1639  -8.773721  33.64296            1       1         0         0
## 1640  -4.312438  35.74456            1       0         0         0
## 1641  -3.220784  32.69438            0       0         0         0
## 1642  -3.278784  37.09615            1       1         1         1
## 1643  -2.539368  32.91289            1       0         1         0
## 1644  -4.700035  38.11984            1       0         1         0
## 1645  -8.253512  35.10657            0       0         0         0
## 1646  -6.213538  31.22455            0       0         0         0
## 1647  -1.858816  33.04993            1       1         0         0
## 1648  -9.239853  33.33894            0       0         1         0
## 1649  -6.321523  31.08085            1       0         0         1
## 1650  -5.725303  37.09664            1       1         1         0
## 1651  -4.762395  34.20166            0       1         0         0
## 1652  -9.309995  33.62291            1       1         0         0
## 1653  -6.165643  39.20898            0       0         0         0
## 1654  -4.847666  38.51229            1       1         0         0
## 1655  -2.490681  32.98829            1       1         0         0
## 1656 -10.345759  40.25116            1       1         1         0
## 1657  -7.746597  35.71928            1       1         1         0
## 1658  -8.213781  34.83908            1       1         0         0
## 1659  -3.128526  33.51308            0       0         0         0
## 1660  -4.142308  33.45834            0       0         0         0
## 1661  -9.905980  38.98556            0       1         0         0
## 1662  -3.952103  35.44045            1       0         0         0
## 1663  -6.575295  39.07677            1       0         0         0
## 1664  -5.054095  35.86419            0       0         1         0
## 1665  -6.856505  39.28311            1       1         1         0
## 1666  -6.420854  31.02019            1       1         0         0
## 1667  -7.736564  35.69494            1       0         1         0
## 1668  -2.662391  32.64137            0       0         1         1
## 1669  -5.440945  37.73055            1       0         1         1
## 1670  -7.144943  39.07801            1       0         1         0
## 1671  -8.891691  33.54492            1       0         0         0
## 1672  -7.945384  31.63919            1       0         1         0
## 1673  -6.345850  31.06956            1       0         0         1
## 1674  -6.659096  39.17855            1       0         0         0
## 1675 -10.853015  39.27820            1       1         1         0
## 1676  -4.771495  34.91792            0       1         0         0
## 1677  -9.174854  32.86412            1       1         0         0
## 1678  -6.849239  39.14637            1       1         0         0
## 1679  -6.775203  37.75313            1       1         0         0
## 1680  -6.811465  39.10764            1       0         0         0
## 1681 -10.274652  40.16780            1       1         1         0
## 1682  -9.010983  33.00515            1       1         0         0
## 1683  -9.326336  33.33306            0       0         0         0
## 1684  -8.843741  34.80464            1       1         0         0
## 1685  -5.883608  36.44749            0       0         0         0
## 1686  -3.952100  35.44060            0       1         1         0
## 1687  -2.377648  33.58031            1       0         0         0
## 1688  -5.019357  38.70771            1       0         0         1
## 1689  -5.612598  32.74700            0       1         1         0
## 1690  -8.572309  33.45624            1       1         1         1
## 1691  -4.324633  37.88633            1       0         0         0
## 1692 -10.442166  36.05909            0       1         0         0
## 1693 -10.106704  39.62071            1       0         0         0
## 1694  -8.173272  36.33574            1       1         1         1
## 1695  -5.865750  35.19121            0       0         0         0
## 1696  -3.997215  33.37929            1       0         0         0
## 1697  -1.496014  33.81085            0       0         0         0
## 1698  -4.575166  30.09850            0       1         1         0
## 1699 -10.369790  39.22200            1       1         0         0
## 1700  -5.016971  32.81002            0       0         0         0
## 1701  -6.744070  30.40721            1       0         1         0
## 1702  -2.564949  36.78456            0       1         0         0
## 1703  -6.418922  39.54607            0       0         0         0
## 1704  -6.825991  37.65313            1       1         1         0
## 1705  -4.347483  32.88209            1       0         1         0
## 1706  -5.036151  36.23784            0       0         0         0
## 1707 -11.402195  36.43081            1       1         0         0
## 1708  -4.379514  35.47740            0       1         0         0
## 1709  -9.669812  39.10841            0       0         0         1
## 1710 -10.202919  38.84235            0       1         0         0
## 1711  -6.484725  35.93951            1       1         1         0
## 1712  -5.337003  39.73044            0       1         0         0
## 1713 -10.751565  38.53242            0       0         0         0
## 1714  -8.882983  32.79953            0       0         0         0
## 1715  -2.916553  32.16530            0       0         0         0
## 1716  -4.848358  29.74423            1       1         0         0
## 1717  -3.415501  31.52227            1       0         0         0
## 1718  -2.317051  32.68439            1       1         1         0
## 1719  -1.364433  34.43741            0       0         1         0
## 1720  -4.199139  30.49044            1       1         1         0
## 1721  -2.506684  32.00984            1       0         0         0
## 1722  -3.253151  37.00724            1       1         0         0
## 1723 -10.933880  39.28597            1       1         1         0
## 1724  -6.858386  39.23360            1       0         1         0
## 1725  -6.131434  39.31614            1       0         0         0
## 1726 -10.694773  39.39374            1       1         1         0
## 1727  -5.246111  39.78152            1       0         1         0
## 1728  -3.053619  34.34180            0       0         1         0
## 1729  -8.502466  35.08090            0       0         0         0
## 1730  -3.638685  32.95432            0       1         1         0
## 1731 -11.132198  38.60738            1       1         1         0
## 1732  -8.965131  32.89897            1       0         0         0
## 1733  -7.326877  35.54285            1       0         0         0
## 1734 -10.692207  39.39712            1       1         1         0
## 1735  -3.749834  32.85768            1       0         0         0
## 1736  -1.811149  33.40906            1       0         0         0
## 1737  -2.122842  33.05959            1       1         1         0
## 1738  -6.524381  37.21406            0       0         0         0
## 1739  -4.510074  35.06841            0       0         0         0
## 1740  -7.838677  38.34612            1       1         0         0
## 1741  -6.139624  37.59064            1       1         1         0
## 1742  -2.774411  33.79147            0       0         1         0
## 1743 -10.794144  39.42216            1       1         0         0
## 1744  -6.849290  39.14593            1       1         1         0
## 1745  -8.059813  35.46360            1       1         0         0
## 1746  -9.927538  39.72514            0       0         0         0
## 1747  -8.847350  34.82324            1       1         0         0
## 1748  -4.891229  29.74253            0       0         0         0
## 1749  -4.794421  38.28562            1       0         0         0
## 1750  -2.078227  32.93930            0       1         1         0
## 1751  -7.491411  30.59690            0       0         0         0
## 1752  -5.246169  39.78152            0       0         0         0
## 1753  -9.133788  32.74885            0       0         0         0
## 1754  -4.436389  34.87024            1       0         1         0
## 1755  -9.251326  32.83648            1       1         0         0
## 1756  -7.855481  31.17657            1       0         1         0
## 1757  -1.749973  31.61606            1       1         1         0
## 1758 -11.263935  34.79114            0       0         0         1
## 1759  -6.204194  31.22394            0       1         0         0
## 1760 -10.202887  38.61961            1       0         0         0
## 1761  -4.890348  29.74325            0       0         0         1
## 1762 -11.049011  34.76160            0       1         0         0
## 1763  -7.774221  35.69569            1       0         1         0
## 1764  -5.442208  38.03753            0       0         0         0
## 1765  -6.240166  39.52770            0       1         1         0
## 1766  -5.104936  32.39602            1       0         0         1
## 1767  -6.844722  39.27924            1       0         0         0
## 1768  -8.937450  33.18943            1       0         1         0
## 1769  -5.695753  36.63119            0       0         0         0
## 1770  -6.070210  36.64538            1       1         0         0
## 1771  -6.617259  39.09648            1       1         0         0
## 1772  -8.313724  35.27435            1       1         0         0
## 1773  -5.085805  30.56337            1       1         0         0
## 1774  -5.456934  33.82835            0       0         0         0
## 1775  -2.584752  32.64708            0       0         0         0
## 1776  -9.119015  32.93943            1       1         0         0
## 1777  -7.196613  31.09202            0       1         0         0
## 1778  -5.016726  38.70963            1       0         1         0
## 1779  -8.911367  33.43452            0       0         0         0
## 1780 -10.251400  38.69593            0       1         0         1
## 1781  -3.252763  33.43796            0       0         0         0
## 1782  -7.453471  31.38635            0       1         1         1
## 1783  -4.552511  34.84270            0       0         0         0
## 1784  -7.117449  31.23510            1       1         1         1
## 1785  -4.853477  34.87766            1       1         1         0
## 1786  -5.015404  38.70849            0       0         0         0
## 1787 -10.860995  39.27997            0       0         1         0
## 1788  -5.738672  34.84156            1       1         1         1
## 1789  -8.896624  31.69146            0       0         0         0
## 1790  -6.794218  39.23238            1       0         0         0
## 1791  -2.011927  33.94685            1       0         1         0
## 1792  -2.487316  32.92427            1       1         1         0
## 1793  -5.173541  38.46678            1       0         0         0
## 1794 -10.716805  38.76730            0       0         0         0
## 1795  -5.029538  38.69550            1       0         0         0
## 1796  -6.636902  38.35509            1       1         1         0
## 1797  -7.775075  31.10261            0       0         1         0
## 1798  -1.960005  35.35634            0       0         0         1
## 1799  -7.957994  31.61841            1       0         0         1
## 1800  -9.973396  34.62808            0       1         0         0
## 1801 -10.664190  38.75097            0       0         0         0
## 1802  -8.072968  31.93338            1       0         0         0
## 1803 -11.074049  38.27657            0       1         0         1
## 1804  -1.985535  33.06592            0       0         1         0
## 1805  -4.684252  34.89663            1       1         1         1
## 1806  -6.867777  39.28387            1       1         0         0
## 1807 -11.056857  37.33766            1       1         1         1
## 1808 -11.108296  35.20304            0       1         1         0
## 1809  -7.701168  31.28270            0       0         0         0
## 1810  -6.923374  39.25581            1       1         0         1
## 1811  -2.533532  32.93136            1       0         0         0
## 1812  -2.504959  32.01061            1       1         1         0
## 1813  -7.782660  35.66713            1       0         0         0
## 1814 -10.796302  39.42368            0       0         0         0
## 1815  -8.409273  35.86652            0       1         1         1
## 1816  -8.302826  32.32665            0       0         1         0
## 1817 -10.795314  39.42262            0       0         1         1
## 1818 -10.226628  40.22047            1       0         0         0
## 1819  -8.088016  36.68237            1       1         1         0
## 1820  -7.118782  37.80586            1       0         1         0
## 1821  -6.823234  39.23002            1       1         1         0
## 1822  -8.039318  35.76125            0       1         1         0
## 1823  -5.872647  39.29254            0       0         1         0
## 1824  -6.395152  30.97914            0       1         1         0
## 1825 -10.237950  39.47138            0       0         0         1
## 1826  -6.882901  39.25327            1       0         0         0
## 1827  -3.448597  37.42518            1       1         1         0
## 1828  -4.188611  35.02128            1       1         1         1
## 1829  -4.056461  33.08408            1       1         0         0
## 1830  -7.774946  31.10267            1       1         1         1
## 1831  -3.358762  36.60110            0       0         0         0
## 1832  -9.773358  39.60115            0       0         0         1
## 1833  -6.884961  39.15519            1       0         0         0
## 1834  -4.345548  32.89008            0       0         0         0
## 1835  -8.350217  31.83529            1       1         0         0
## 1836  -6.923583  39.25703            1       1         0         0
## 1837  -4.372977  35.07264            1       1         1         0
## 1838 -10.712195  39.44463            0       0         0         0
## 1839  -5.777245  39.30055            0       0         0         0
## 1840  -4.984201  39.83419            0       1         1         0
## 1841  -3.439856  31.89303            1       1         0         0
## 1842  -4.140427  33.46406            0       1         0         0
## 1843  -6.837059  39.18588            1       0         0         0
## 1844  -8.012022  35.49688            1       1         1         0
## 1845  -3.333017  33.92523            0       0         1         0
## 1846  -3.667719  35.60286            1       0         1         0
## 1847  -6.341594  31.06431            1       0         0         0
## 1848  -6.892275  39.22910            1       1         1         1
## 1849  -6.211128  39.21805            1       0         0         1
## 1850  -3.388338  36.94392            1       0         1         0
## 1851  -6.881226  39.28643            0       0         0         0
## 1852  -9.438225  33.56092            1       0         0         1
## 1853  -4.119316  34.82136            0       1         1         0
## 1854 -10.521873  38.67520            1       1         0         0
## 1855  -1.324265  31.79129            1       0         0         0
## 1856  -5.169510  39.80646            0       1         0         0
## 1857  -3.016358  33.04483            1       1         1         0
## 1858  -7.731434  35.70265            1       0         0         1
## 1859  -6.883011  39.25342            1       1         0         1
## 1860 -10.719292  38.77158            0       1         0         0
## 1861  -3.162447  33.30108            1       0         0         0
## 1862  -4.906169  35.78085            0       0         0         0
## 1863  -6.148665  35.73767            1       0         0         0
## 1864  -8.089743  35.83677            1       1         0         1
## 1865 -10.442327  36.06147            1       0         0         1
## 1866  -8.052735  31.50348            1       1         1         0
## 1867  -5.200430  38.71752            1       0         0         1
## 1868  -6.220632  36.35454            0       0         1         1
## 1869  -3.512551  35.95517            0       1         1         0
## 1870  -9.987725  38.96400            1       1         1         0
## 1871  -5.242975  39.76736            1       1         0         0
## 1872  -2.640704  33.93040            0       1         1         0
## 1873  -6.483856  31.11671            0       1         1         1
## 1874  -5.981871  35.44183            0       1         0         1
## 1875  -5.246220  39.78233            1       1         1         0
## 1876  -4.567826  33.03933            1       1         1         0
## 1877 -10.861374  39.02941            1       1         1         0
## 1878  -3.251487  30.90944            1       1         1         0
## 1879  -4.311841  35.74577            1       0         0         0
## 1880  -6.921514  37.77748            0       0         0         0
## 1881  -9.489001  33.27174            0       0         1         0
## 1882 -10.182372  40.01454            1       0         0         0
## 1883  -4.646231  35.04335            1       0         1         0
## 1884 -10.663274  38.75023            0       1         1         0
## 1885  -6.779442  39.23631            1       1         0         1
## 1886  -4.808834  34.75382            1       1         0         0
## 1887  -4.292207  35.55142            1       0         1         1
## 1888  -6.331494  38.38498            1       1         0         0
## 1889  -1.593010  31.14144            1       0         0         0
## 1890  -1.870342  34.73408            0       0         0         0
## 1891  -8.102938  35.90314            0       0         0         0
## 1892  -9.057494  33.28735            1       0         1         0
## 1893  -6.857194  39.28204            1       0         1         0
## 1894  -9.083033  34.64290            0       0         0         0
## 1895  -6.223189  36.35387            1       1         0         0
## 1896  -2.770246  32.69655            1       1         1         0
## 1897  -6.616494  39.11045            1       1         0         0
## 1898  -3.320310  36.33822            1       0         0         0
## 1899 -10.560745  39.17486            0       0         0         0
## 1900  -4.310558  35.74179            1       0         0         0
## 1901  -7.955387  36.86436            0       1         1         0
## 1902 -10.950543  39.34136            1       0         1         0
## 1903  -5.071152  32.79159            1       1         0         0
## 1904  -8.243182  35.02466            0       0         1         0
## 1905 -10.704898  35.80127            1       0         1         0
## 1906  -3.741828  37.66342            1       1         0         1
## 1907  -8.386770  33.23058            1       0         0         0
## 1908 -10.281636  40.19760            1       0         1         0
## 1909  -9.336108  34.76667            0       1         0         0
## 1910  -6.783918  39.01765            1       1         0         0
## 1911  -9.986419  38.96440            1       0         0         0
## 1912  -2.401749  32.32909            1       1         1         0
## 1913  -9.464455  33.95018            0       0         0         0
## 1914  -2.528950  32.96297            1       0         1         1
## 1915  -2.879020  32.23297            1       0         0         0
## 1916  -1.456329  31.69376            1       1         1         0
## 1917  -5.873222  39.29424            0       1         0         0
## 1918  -9.283068  35.28421            1       1         0         0
## 1919  -6.151672  39.22428            1       0         1         0
## 1920  -4.796414  38.29167            1       1         0         1
## 1921  -3.329766  36.63739            1       1         0         0
## 1922  -6.827707  37.65220            1       0         1         1
## 1923  -4.809622  34.75340            0       0         0         0
## 1924  -5.986630  38.22105            0       0         0         0
## 1925  -6.897030  39.25355            1       0         0         0
## 1926  -4.528917  38.23805            0       0         0         0
## 1927  -3.335765  33.92738            0       1         0         0
## 1928  -4.642531  34.16671            0       1         0         0
## 1929  -4.574809  30.09948            0       0         0         0
## 1930  -3.153624  33.66235            0       0         0         0
## 1931  -2.747094  33.23101            0       1         0         1
## 1932  -4.909710  29.66180            1       1         1         1
## 1933  -4.324997  37.88642            1       0         1         0
## 1934  -6.750118  30.40934            0       1         0         0
## 1935  -8.885678  33.30232            1       0         0         0
## 1936  -1.511051  33.80825            1       1         0         0
## 1937  -1.084000  31.80719            1       1         1         0
## 1938  -6.909753  37.49554            0       1         1         0
## 1939  -5.715105  38.23726            1       0         0         0
## 1940  -1.375401  34.43289            0       1         0         0
## 1941  -7.389503  31.36446            0       0         1         0
## 1942 -10.793116  38.32066            0       1         0         0
## 1943 -11.098611  39.30909            0       0         0         0
## 1944 -10.704977  39.13345            0       0         1         1
## 1945  -7.167618  30.53641            1       0         1         0
## 1946  -6.948321  39.23169            1       0         1         0
## 1947  -4.957011  39.78686            1       1         0         0
## 1948  -6.146456  39.32883            0       0         0         0
## 1949  -4.548923  35.79580            1       1         1         0
## 1950  -2.715496  33.14014            0       0         0         0
## 1951  -8.539092  32.94157            0       1         0         0
## 1952  -6.888139  39.16064            1       1         1         1
## 1953  -4.824996  32.85682            0       0         0         0
## 1954  -6.041551  39.23003            1       0         1         0
## 1955  -8.016228  35.49347            0       0         0         0
## 1956  -3.788439  30.49477            1       1         0         0
## 1957  -3.199934  37.64567            1       1         0         0
## 1958  -9.669902  39.10836            1       0         0         0
## 1959  -6.087422  39.32903            0       0         0         0
## 1960  -8.841048  34.81143            1       1         1         0
## 1961  -5.926811  39.22311            0       0         1         0
## 1962  -4.820650  39.08783            1       1         1         0
## 1963  -4.625886  35.75632            1       0         0         1
## 1964  -4.269811  38.05066            1       1         1         0
## 1965  -8.409393  35.86655            0       0         0         0
## 1966  -2.486009  32.90195            0       1         1         0
## 1967  -9.221034  33.64046            1       0         1         0
## 1968  -2.560882  33.26424            1       0         1         0
## 1969  -3.448631  37.42520            1       1         0         0
## 1970  -9.404283  39.59920            0       0         0         0
## 1971  -5.283339  35.08206            1       0         1         0
## 1972  -5.337002  39.73052            1       0         0         0
## 1973  -3.005113  31.92495            1       1         1         1
## 1974 -10.204856  38.84306            0       1         0         0
## 1975  -2.564527  36.78431            0       0         0         1
## 1976  -6.616821  39.11027            1       0         0         0
## 1977  -8.551020  32.55034            1       0         0         0
## 1978  -6.869432  39.27548            0       0         0         0
## 1979  -2.402847  31.70872            1       0         0         0
## 1980  -6.163826  35.88974            0       0         0         0
## 1981  -3.828950  32.60460            1       1         1         0
## 1982  -7.104716  31.23705            0       1         0         0
## 1983  -9.408092  33.91681            0       1         1         0
## 1984  -4.453210  38.32891            0       0         0         0
## 1985  -5.246653  39.76678            0       0         0         0
## 1986  -5.176406  34.62006            0       0         1         0
## 1987  -8.465831  32.15776            1       0         1         0
## 1988 -11.023215  35.12412            0       1         0         0
## 1989  -8.526254  32.03569            0       0         0         0
## 1990  -8.361413  32.29751            1       0         0         0
## 1991  -5.873933  39.25830            1       0         0         0
## 1992  -2.879095  37.36977            1       0         0         0
## 1993  -9.029688  32.46648            0       0         0         0
## 1994  -5.700216  34.49165            1       1         0         0
## 1995  -3.390610  36.66734            1       1         1         0
## 1996  -3.387117  35.49957            1       1         1         1
## 1997  -8.033446  35.77037            0       0         0         1
## 1998  -6.883157  39.25347            1       0         0         0
## 1999  -6.598281  38.54620            0       0         1         0
## 2000  -6.794265  39.23270            1       0         0         0
## 2001 -10.735214  34.74395            0       1         1         0
## 2002  -8.253602  31.36164            1       1         1         1
## 2003  -3.607367  36.71279            0       1         0         1
## 2004 -10.692302  39.79992            1       0         0         1
## 2005  -7.408982  37.66951            0       1         0         0
## 2006  -6.721359  38.73640            1       0         0         1
## 2007  -6.193025  39.25603            1       1         1         0
## 2008  -6.142661  39.24159            1       1         1         0
## 2009 -10.965968  35.27540            0       0         0         0
## 2010  -9.971204  34.63016            1       1         1         0
## 2011  -6.814491  39.15244            1       1         1         0
## 2012  -8.934923  33.34461            1       0         0         0
## 2013  -2.665976  32.98017            1       1         1         0
## 2014  -6.150823  39.51708            0       1         1         0
## 2015  -7.872884  30.79704            0       0         1         0
## 2016  -2.705877  33.48917            1       0         0         1
## 2017 -10.258433  39.92180            1       0         0         0
## 2018  -7.599161  31.27127            1       1         0         0
## 2019  -3.133942  32.90605            1       0         0         1
## 2020  -6.816965  39.08526            0       0         1         0
## 2021  -4.419273  34.76239            0       0         0         0
## 2022  -8.062195  36.00653            1       0         1         1
## 2023  -4.734734  34.92388            1       1         1         1
## 2024  -6.808147  39.23252            1       1         0         0
## 2025  -7.510278  31.04500            0       1         0         0
## 2026  -8.967764  32.90095            0       1         0         0
## 2027  -7.646870  35.75628            0       1         1         0
## 2028  -5.236417  39.77872            0       0         0         0
## 2029  -8.635636  31.42947            0       0         0         0
## 2030  -1.241344  34.36808            1       1         1         0
## 2031  -6.849673  39.22526            1       0         1         0
## 2032  -4.776154  33.23853            0       1         0         0
## 2033  -3.209157  37.31183            1       1         0         0
## 2034  -7.302427  30.63091            0       1         1         0
## 2035 -10.274334  40.17459            0       0         0         0
## 2036  -8.541338  31.90562            1       0         1         0
## 2037  -2.843314  33.08111            1       0         0         0
## 2038  -4.460808  35.68938            1       0         1         0
## 2039  -2.602632  33.42278            1       1         0         0
## 2040  -6.209196  39.21827            1       1         1         1
## 2041  -9.050734  33.29010            0       0         0         0
## 2042  -3.432013  31.50893            1       1         1         0
## 2043  -6.849671  39.22503            0       0         0         0
## 2044  -4.453946  38.32841            0       0         0         0
## 2045  -6.187648  39.21582            1       0         0         0
## 2046  -6.200187  39.25399            1       0         1         0
## 2047  -4.493813  35.07229            0       0         0         0
## 2048  -3.351819  37.34918            1       1         0         1
## 2049  -4.200111  34.82145            1       0         0         0
## 2050  -2.121309  33.05953            1       1         0         1
## 2051  -7.849743  31.43522            1       0         1         1
## 2052  -7.954386  31.60717            1       0         0         0
## 2053  -4.474563  34.18417            0       1         0         0
## 2054  -5.875356  39.25609            1       0         0         0
## 2055  -4.071376  37.98837            1       1         1         0
## 2056  -5.134907  34.77139            1       1         0         0
## 2057  -1.750169  31.61119            1       0         0         0
## 2058 -10.378582  39.84099            1       1         0         1
## 2059  -4.395134  34.52822            0       1         0         0
## 2060  -8.167450  36.33011            1       1         0         0
## 2061  -6.162934  39.19122            0       0         1         0
## 2062  -5.074657  38.45269            0       0         0         0
## 2063  -4.435247  34.86985            1       1         1         0
## 2064  -4.612594  29.78251            1       1         1         0
## 2065  -6.858850  39.23302            1       1         0         0
## 2066  -3.391698  37.55031            1       1         1         0
## 2067  -4.874983  38.44760            0       0         0         0
## 2068  -6.854998  30.52992            0       1         0         0
## 2069  -6.816958  39.08603            1       0         1         0
## 2070  -5.769218  37.25095            0       0         0         0
## 2071  -5.185362  38.77041            1       1         0         1
## 2072  -2.120816  33.49131            1       1         1         0
## 2073  -3.204742  35.94439            1       0         0         0
## 2074  -4.088917  34.73578            1       0         1         0
## 2075 -10.817017  39.52649            1       1         1         0
## 2076  -9.171430  33.81922            0       0         0         0
## 2077 -10.926600  35.27890            1       1         0         0
## 2078  -4.760870  34.58139            1       1         1         1
## 2079  -8.803570  34.22392            1       0         1         0
## 2080 -10.258666  39.92090            1       1         1         0
## 2081  -8.973382  33.95753            0       1         0         0
## 2082  -2.578178  36.77668            0       0         0         0
## 2083  -4.776107  33.23834            0       0         0         0
## 2084  -3.355509  36.49439            0       0         0         0
## 2085 -10.793753  39.42271            0       1         1         0
## 2086  -4.191869  33.12874            0       0         0         0
## 2087  -2.856371  33.28018            0       1         1         0
## 2088  -8.088099  36.68166            0       0         0         0
## 2089  -1.331263  33.80811            1       0         0         0
## 2090  -4.200126  32.32583            0       0         1         0
## 2091 -10.488654  39.02789            1       1         0         0
## 2092  -6.154415  39.22299            1       0         1         0
## 2093 -11.125137  35.17390            1       1         0         0
## 2094 -10.488128  39.02829            1       1         0         1
## 2095 -11.023280  35.12392            0       0         0         1
## 2096  -8.189482  31.85022            0       0         0         0
## 2097  -1.557957  31.46215            1       1         1         0
## 2098  -9.336072  34.76558            1       0         1         0
## 2099  -2.344145  32.29518            0       1         0         0
## 2100 -11.057877  35.11873            0       1         1         0
## 2101  -1.344749  31.65857            1       0         1         0
## 2102  -1.321872  31.81752            1       1         1         0
## 2103  -6.192821  39.25603            1       1         0         0
## 2104  -3.366351  36.68724            1       1         1         0
## 2105  -3.005197  31.92445            1       0         1         0
## 2106  -4.105939  35.18116            1       1         1         1
## 2107  -2.538485  32.23759            1       1         1         0
## 2108  -3.031613  33.93113            0       0         1         0
## 2109  -8.806570  34.97652            1       0         1         0
## 2110  -9.369359  34.23857            1       0         1         0
## 2111  -6.181934  39.22333            0       1         0         0
## 2112  -3.358118  33.90985            1       0         1         0
## 2113  -1.853442  31.59029            0       1         1         1
## 2114  -2.743992  31.62895            0       0         0         0
## 2115  -8.305117  32.33495            1       0         1         0
## 2116  -4.310531  35.74016            0       0         0         0
## 2117  -5.124884  38.38488            1       0         0         0
## 2118  -6.933936  30.60138            0       0         0         0
## 2119  -7.752823  35.67893            1       1         1         0
## 2120  -2.766215  32.11263            1       1         1         0
## 2121  -4.552331  34.84274            0       1         0         0
## 2122  -1.880742  34.73088            1       0         1         1
## 2123 -10.493082  39.32410            1       0         0         0
## 2124  -8.553637  36.00417            0       0         0         0
## 2125  -1.794625  34.73343            1       0         0         1
## 2126  -8.906178  33.46299            0       1         0         0
## 2127  -1.556770  31.65016            0       1         1         0
## 2128  -8.251539  31.36193            0       1         0         1
## 2129  -6.743933  30.40716            1       1         1         0
## 2130  -8.954343  33.24194            0       0         0         1
## 2131  -6.661419  37.13609            1       1         1         0
## 2132  -2.627673  33.93041            0       1         0         0
## 2133  -6.418362  39.54793            0       0         1         0
## 2134 -10.686849  39.59189            0       1         0         0
## 2135  -3.523085  35.33449            0       1         1         0
## 2136 -10.196281  38.56199            0       1         0         0
## 2137  -4.844656  29.97259            0       0         0         1
## 2138  -2.559999  32.65545            1       1         0         0
## 2139 -10.867336  39.42960            1       1         1         0
## 2140  -7.393134  38.96937            1       1         1         0
## 2141  -2.596270  32.91345            1       1         0         0
## 2142  -2.554960  30.60707            1       0         1         0
## 2143  -8.600415  35.04390            1       0         1         1
## 2144  -9.759835  39.61860            1       1         0         0
## 2145  -1.874057  33.70225            1       0         0         1
## 2146  -3.394689  36.73829            1       1         1         0
## 2147  -6.869069  39.27626            1       1         0         0
## 2148  -3.376864  36.67659            1       1         1         0
## 2149  -5.017065  32.81012            1       0         0         0
## 2150  -4.701840  38.12082            1       0         0         0
## 2151  -3.331969  36.34391            1       1         0         0
## 2152  -6.222641  36.35265            1       0         1         1
## 2153  -7.769515  36.91530            1       0         1         0
## 2154  -6.965644  39.51337            0       1         0         0
## 2155  -6.783986  39.23880            1       1         1         1
## 2156  -8.953842  32.56485            1       1         0         0
## 2157 -10.606257  39.62233            0       0         0         0
## 2158  -4.872925  38.45612            1       0         1         0
## 2159  -6.220814  39.23285            0       0         1         0
## 2160  -4.450097  33.95166            0       1         0         1
## 2161  -4.853394  32.47505            1       0         0         0
## 2162  -6.222024  39.23324            1       0         0         0
## 2163  -3.680953  30.58997            1       0         0         0
## 2164  -3.681005  30.58993            1       1         0         1
## 2165  -3.042596  35.48211            0       0         1         0
## 2166  -2.759691  33.61841            0       0         0         0
## 2167  -6.210093  39.21912            1       0         1         1
## 2168  -2.887019  31.73253            1       1         1         1
## 2169  -7.556017  31.02547            0       0         1         0
## 2170  -4.510161  35.06835            0       0         0         0
## 2171 -10.706165  39.13305            1       1         0         0
## 2172 -11.014758  39.44334            1       0         0         0
## 2173  -5.078118  39.12214            1       1         0         0
## 2174  -5.414959  39.72396            0       0         1         0
## 2175  -6.326811  39.54995            0       0         0         0
## 2176  -2.802009  33.99103            1       1         1         0
## 2177  -2.827298  33.36686            1       1         0         0
## 2178  -5.874485  39.25644            0       1         1         0
## 2179  -3.078675  32.08505            0       0         0         0
## 2180 -10.951162  39.02943            1       1         1         0
## 2181  -4.843111  38.52186            0       0         0         0
## 2182  -5.695882  36.63144            1       0         0         0
## 2183  -6.759269  36.47060            1       1         1         1
## 2184  -8.631544  33.14788            1       1         0         0
## 2185  -9.054468  33.28924            0       0         0         0
## 2186  -6.566066  35.51695            1       1         1         0
## 2187  -6.227999  39.24173            1       1         0         0
## 2188  -7.748700  35.71592            1       0         1         0
## 2189  -4.887371  29.64412            1       1         0         0
## 2190  -4.983524  39.08415            0       0         0         0
## 2191  -6.485057  35.93949            1       1         1         0
## 2192  -6.833660  39.18554            1       1         1         0
## 2193  -9.427888  33.95596            0       0         1         0
## 2194  -5.246128  39.78123            0       0         0         0
## 2195  -7.838083  35.63740            0       1         1         0
## 2196  -9.305561  33.62524            0       0         1         0
## 2197  -2.643967  32.77833            1       1         1         0
## 2198  -6.169415  39.20041            1       1         0         0
## 2199  -8.908516  32.96499            0       1         0         0
## 2200  -6.813240  37.68254            1       1         1         1
## 2201  -8.898331  33.45403            0       0         0         0
## 2202  -8.916061  33.53401            1       1         0         1
## 2203  -6.616194  39.11210            0       1         0         0
## 2204  -4.186219  33.13551            0       0         0         0
## 2205  -2.877713  32.24622            1       1         1         0
## 2206 -10.861404  39.02941            0       0         0         0
## 2207  -3.239739  33.45499            0       1         1         0
## 2208  -4.865199  30.33689            0       0         1         0
## 2209  -2.680874  30.57971            0       1         1         0
## 2210  -3.373630  36.84828            0       1         0         0
## 2211  -8.481461  32.08486            1       1         1         0
## 2212  -3.345385  36.83518            0       0         0         1
## 2213 -10.835524  38.64745            1       1         1         1
## 2214  -6.207886  39.38627            0       0         0         0
## 2215  -3.720725  32.67925            0       1         0         0
## 2216 -10.096560  34.68139            0       0         0         1
## 2217  -8.603330  35.04272            1       0         1         0
## 2218  -8.302891  32.32756            0       1         1         0
## 2219 -10.920679  39.37978            0       0         1         0
## 2220  -7.731098  35.70030            1       0         0         0
## 2221 -10.362627  40.10336            1       0         0         1
## 2222 -11.133291  38.60670            0       0         0         0
## 2223  -3.376985  36.67632            1       1         0         0
## 2224  -6.948180  39.23120            1       1         0         0
## 2225  -2.763421  33.61448            1       0         0         0
## 2226  -3.516945  32.39224            1       0         1         0
## 2227  -5.968306  39.19658            0       0         0         0
## 2228  -8.774777  33.64481            1       0         0         0
## 2229  -3.372749  36.68573            1       1         1         0
## 2230  -4.363440  29.96320            0       0         1         0
## 2231  -2.109268  33.07542            0       1         1         1
## 2232  -2.415731  31.70042            0       0         0         0
## 2233  -1.507109  33.78726            1       0         1         0
## 2234 -10.859110  39.78019            1       1         1         0
## 2235  -6.797048  39.22951            1       1         0         0
## 2236  -5.350492  39.70171            1       1         1         0
## 2237  -5.010447  39.81179            0       0         0         0
## 2238 -10.692349  39.80029            0       1         0         0
## 2239  -1.778787  34.06960            0       0         1         0
## 2240  -2.533517  33.19509            1       1         1         0
## 2241  -5.935282  37.27536            1       0         0         0
## 2242  -5.130952  38.97426            0       0         0         0
## 2243  -8.231383  35.43057            0       0         1         0
## 2244  -6.897896  39.28340            0       1         1         0
## 2245 -10.286861  40.11686            1       0         0         0
## 2246  -3.347630  37.58006            1       1         1         0
## 2247  -9.933617  39.72449            0       1         0         0
## 2248  -8.391695  38.94911            0       0         0         0
## 2249  -6.185138  39.20795            0       0         1         0
## 2250  -1.341735  34.38516            1       1         0         0
## 2251  -8.411658  38.93983            0       1         1         0
## 2252  -5.716561  38.23595            1       1         0         0
## 2253  -6.885230  39.15550            0       0         0         0
## 2254  -6.143292  39.24144            0       0         1         0
## 2255  -4.208795  35.76789            1       0         0         0
## 2256  -9.847005  38.89747            0       0         0         0
## 2257  -6.192247  39.25564            1       0         1         0
## 2258  -4.361087  37.82408            1       1         1         0
## 2259  -5.934199  37.27861            0       0         0         0
## 2260  -2.546274  32.95749            1       1         1         0
## 2261  -7.600261  36.99795            0       1         0         0
## 2262  -3.863650  32.60694            0       0         1         1
## 2263  -3.349058  36.83625            1       0         0         1
## 2264  -9.336880  34.76610            1       0         1         0
## 2265  -6.137947  39.22995            1       1         0         0
## 2266  -8.131375  30.96871            0       0         1         0
## 2267  -6.849222  39.14526            1       1         1         0
## 2268  -5.076301  32.06909            0       0         0         0
## 2269  -8.128375  30.96699            0       0         0         0
## 2270  -1.783800  34.71444            0       1         0         0
## 2271  -9.165565  33.54238            0       1         0         0
## 2272  -4.900306  38.57287            1       1         1         0
##      mobile_money_classification if_else(Q2 == 1, "Male", "Female")
## 1                              0                             Female
## 2                              3                               Male
## 3                              2                             Female
## 4                              3                               Male
## 5                              3                               Male
## 6                              1                               Male
## 7                              3                             Female
## 8                              3                             Female
## 9                              1                             Female
## 10                             3                             Female
## 11                             3                             Female
## 12                             2                             Female
## 13                             1                               Male
## 14                             0                             Female
## 15                             2                             Female
## 16                             0                             Female
## 17                             2                             Female
## 18                             3                             Female
## 19                             3                               Male
## 20                             3                             Female
## 21                             3                             Female
## 22                             3                             Female
## 23                             3                               Male
## 24                             1                             Female
## 25                             3                               Male
## 26                             3                             Female
## 27                             3                             Female
## 28                             3                             Female
## 29                             3                             Female
## 30                             3                             Female
## 31                             2                             Female
## 32                             3                               Male
## 33                             3                             Female
## 34                             1                               Male
## 35                             2                             Female
## 36                             1                               Male
## 37                             1                               Male
## 38                             3                               Male
## 39                             1                             Female
## 40                             3                               Male
## 41                             1                             Female
## 42                             1                             Female
## 43                             3                             Female
## 44                             2                             Female
## 45                             3                               Male
## 46                             2                             Female
## 47                             1                             Female
## 48                             3                               Male
## 49                             3                             Female
## 50                             2                               Male
## 51                             1                             Female
## 52                             1                             Female
## 53                             1                             Female
## 54                             3                               Male
## 55                             3                               Male
## 56                             1                               Male
## 57                             1                               Male
## 58                             3                             Female
## 59                             0                             Female
## 60                             3                               Male
## 61                             3                               Male
## 62                             3                             Female
## 63                             3                               Male
## 64                             1                             Female
## 65                             0                             Female
## 66                             3                               Male
## 67                             3                             Female
## 68                             3                               Male
## 69                             3                               Male
## 70                             3                             Female
## 71                             1                             Female
## 72                             3                               Male
## 73                             1                               Male
## 74                             3                             Female
## 75                             2                               Male
## 76                             3                               Male
## 77                             1                               Male
## 78                             1                               Male
## 79                             3                               Male
## 80                             0                             Female
## 81                             3                             Female
## 82                             2                             Female
## 83                             0                               Male
## 84                             0                             Female
## 85                             0                             Female
## 86                             1                             Female
## 87                             0                               Male
## 88                             3                               Male
## 89                             3                               Male
## 90                             3                               Male
## 91                             1                               Male
## 92                             3                             Female
## 93                             3                             Female
## 94                             0                               Male
## 95                             0                             Female
## 96                             2                             Female
## 97                             0                               Male
## 98                             1                             Female
## 99                             3                               Male
## 100                            3                               Male
## 101                            3                               Male
## 102                            3                             Female
## 103                            3                             Female
## 104                            3                               Male
## 105                            1                             Female
## 106                            3                               Male
## 107                            1                             Female
## 108                            3                             Female
## 109                            2                               Male
## 110                            2                             Female
## 111                            3                               Male
## 112                            0                             Female
## 113                            0                             Female
## 114                            0                             Female
## 115                            0                               Male
## 116                            2                             Female
## 117                            2                             Female
## 118                            1                               Male
## 119                            0                               Male
## 120                            2                               Male
## 121                            1                             Female
## 122                            0                             Female
## 123                            3                               Male
## 124                            3                             Female
## 125                            1                             Female
## 126                            0                               Male
## 127                            3                               Male
## 128                            1                               Male
## 129                            1                             Female
## 130                            2                             Female
## 131                            3                               Male
## 132                            3                             Female
## 133                            0                             Female
## 134                            0                               Male
## 135                            3                             Female
## 136                            2                             Female
## 137                            1                             Female
## 138                            3                               Male
## 139                            3                               Male
## 140                            2                             Female
## 141                            1                               Male
## 142                            3                               Male
## 143                            2                             Female
## 144                            0                             Female
## 145                            3                               Male
## 146                            2                               Male
## 147                            0                             Female
## 148                            3                             Female
## 149                            0                             Female
## 150                            3                             Female
## 151                            2                               Male
## 152                            1                             Female
## 153                            3                               Male
## 154                            3                               Male
## 155                            0                             Female
## 156                            3                             Female
## 157                            1                             Female
## 158                            2                             Female
## 159                            0                             Female
## 160                            2                               Male
## 161                            2                             Female
## 162                            3                               Male
## 163                            3                               Male
## 164                            0                             Female
## 165                            3                               Male
## 166                            2                               Male
## 167                            2                               Male
## 168                            0                             Female
## 169                            0                             Female
## 170                            1                             Female
## 171                            3                             Female
## 172                            2                             Female
## 173                            1                               Male
## 174                            0                               Male
## 175                            0                             Female
## 176                            3                               Male
## 177                            3                               Male
## 178                            3                             Female
## 179                            3                             Female
## 180                            1                             Female
## 181                            3                             Female
## 182                            3                               Male
## 183                            3                             Female
## 184                            1                               Male
## 185                            1                             Female
## 186                            1                               Male
## 187                            1                               Male
## 188                            0                               Male
## 189                            1                               Male
## 190                            3                               Male
## 191                            0                             Female
## 192                            3                             Female
## 193                            3                               Male
## 194                            1                             Female
## 195                            0                               Male
## 196                            1                             Female
## 197                            3                               Male
## 198                            3                               Male
## 199                            3                               Male
## 200                            0                             Female
## 201                            2                               Male
## 202                            2                             Female
## 203                            2                               Male
## 204                            0                               Male
## 205                            3                               Male
## 206                            1                               Male
## 207                            1                             Female
## 208                            3                               Male
## 209                            0                               Male
## 210                            3                             Female
## 211                            1                             Female
## 212                            3                             Female
## 213                            1                             Female
## 214                            1                             Female
## 215                            3                               Male
## 216                            2                               Male
## 217                            0                             Female
## 218                            1                               Male
## 219                            3                             Female
## 220                            2                             Female
## 221                            1                               Male
## 222                            0                             Female
## 223                            2                             Female
## 224                            1                             Female
## 225                            3                               Male
## 226                            3                               Male
## 227                            1                             Female
## 228                            1                             Female
## 229                            3                               Male
## 230                            1                             Female
## 231                            0                             Female
## 232                            0                               Male
## 233                            1                               Male
## 234                            3                               Male
## 235                            0                             Female
## 236                            1                             Female
## 237                            1                             Female
## 238                            0                               Male
## 239                            3                             Female
## 240                            1                             Female
## 241                            3                               Male
## 242                            3                               Male
## 243                            3                             Female
## 244                            1                               Male
## 245                            3                             Female
## 246                            3                               Male
## 247                            2                             Female
## 248                            2                               Male
## 249                            1                             Female
## 250                            3                             Female
## 251                            1                               Male
## 252                            3                               Male
## 253                            3                               Male
## 254                            0                             Female
## 255                            0                               Male
## 256                            1                             Female
## 257                            0                               Male
## 258                            3                               Male
## 259                            2                               Male
## 260                            3                             Female
## 261                            0                             Female
## 262                            0                             Female
## 263                            3                               Male
## 264                            3                             Female
## 265                            3                               Male
## 266                            3                               Male
## 267                            1                               Male
## 268                            0                             Female
## 269                            0                             Female
## 270                            1                               Male
## 271                            1                             Female
## 272                            1                               Male
## 273                            3                             Female
## 274                            0                             Female
## 275                            2                               Male
## 276                            2                               Male
## 277                            3                               Male
## 278                            0                               Male
## 279                            3                               Male
## 280                            3                             Female
## 281                            3                               Male
## 282                            0                             Female
## 283                            3                               Male
## 284                            2                               Male
## 285                            1                             Female
## 286                            1                               Male
## 287                            1                             Female
## 288                            1                             Female
## 289                            3                               Male
## 290                            3                               Male
## 291                            2                             Female
## 292                            1                             Female
## 293                            2                             Female
## 294                            1                             Female
## 295                            3                             Female
## 296                            0                             Female
## 297                            3                               Male
## 298                            0                             Female
## 299                            1                             Female
## 300                            2                             Female
## 301                            2                             Female
## 302                            2                             Female
## 303                            3                               Male
## 304                            1                             Female
## 305                            1                             Female
## 306                            0                             Female
## 307                            3                             Female
## 308                            1                             Female
## 309                            1                               Male
## 310                            2                             Female
## 311                            3                               Male
## 312                            3                               Male
## 313                            1                             Female
## 314                            3                               Male
## 315                            3                               Male
## 316                            3                             Female
## 317                            1                               Male
## 318                            3                               Male
## 319                            2                               Male
## 320                            0                             Female
## 321                            3                               Male
## 322                            1                             Female
## 323                            1                               Male
## 324                            3                             Female
## 325                            0                               Male
## 326                            1                               Male
## 327                            2                             Female
## 328                            0                             Female
## 329                            3                               Male
## 330                            0                             Female
## 331                            3                             Female
## 332                            0                               Male
## 333                            0                             Female
## 334                            1                               Male
## 335                            3                               Male
## 336                            3                               Male
## 337                            3                               Male
## 338                            1                             Female
## 339                            3                               Male
## 340                            3                             Female
## 341                            2                               Male
## 342                            3                               Male
## 343                            1                               Male
## 344                            0                             Female
## 345                            1                               Male
## 346                            2                             Female
## 347                            0                               Male
## 348                            1                             Female
## 349                            1                             Female
## 350                            1                             Female
## 351                            3                             Female
## 352                            1                             Female
## 353                            3                             Female
## 354                            2                               Male
## 355                            3                               Male
## 356                            3                             Female
## 357                            0                             Female
## 358                            3                             Female
## 359                            3                               Male
## 360                            1                             Female
## 361                            3                             Female
## 362                            0                               Male
## 363                            1                               Male
## 364                            0                             Female
## 365                            1                             Female
## 366                            3                             Female
## 367                            3                               Male
## 368                            0                             Female
## 369                            3                             Female
## 370                            1                             Female
## 371                            1                             Female
## 372                            0                             Female
## 373                            3                             Female
## 374                            1                             Female
## 375                            2                               Male
## 376                            3                             Female
## 377                            3                               Male
## 378                            1                             Female
## 379                            1                             Female
## 380                            1                             Female
## 381                            1                               Male
## 382                            3                             Female
## 383                            3                             Female
## 384                            1                               Male
## 385                            1                             Female
## 386                            1                             Female
## 387                            1                             Female
## 388                            3                             Female
## 389                            1                               Male
## 390                            1                               Male
## 391                            2                               Male
## 392                            3                               Male
## 393                            0                               Male
## 394                            0                               Male
## 395                            3                             Female
## 396                            3                             Female
## 397                            3                             Female
## 398                            3                             Female
## 399                            1                             Female
## 400                            0                             Female
## 401                            3                               Male
## 402                            2                             Female
## 403                            3                               Male
## 404                            3                             Female
## 405                            1                             Female
## 406                            3                             Female
## 407                            3                               Male
## 408                            3                             Female
## 409                            3                             Female
## 410                            0                             Female
## 411                            1                             Female
## 412                            0                               Male
## 413                            3                             Female
## 414                            0                             Female
## 415                            3                             Female
## 416                            0                               Male
## 417                            3                             Female
## 418                            3                               Male
## 419                            3                               Male
## 420                            3                               Male
## 421                            3                             Female
## 422                            3                               Male
## 423                            3                             Female
## 424                            2                             Female
## 425                            3                             Female
## 426                            3                               Male
## 427                            3                             Female
## 428                            2                               Male
## 429                            3                               Male
## 430                            2                             Female
## 431                            3                               Male
## 432                            3                             Female
## 433                            0                             Female
## 434                            0                             Female
## 435                            0                               Male
## 436                            3                               Male
## 437                            0                             Female
## 438                            3                               Male
## 439                            3                               Male
## 440                            1                             Female
## 441                            0                               Male
## 442                            1                             Female
## 443                            1                               Male
## 444                            3                             Female
## 445                            3                               Male
## 446                            1                               Male
## 447                            0                               Male
## 448                            3                             Female
## 449                            3                               Male
## 450                            2                               Male
## 451                            3                             Female
## 452                            0                             Female
## 453                            3                             Female
## 454                            3                               Male
## 455                            1                             Female
## 456                            0                             Female
## 457                            2                               Male
## 458                            3                             Female
## 459                            1                             Female
## 460                            2                             Female
## 461                            3                               Male
## 462                            3                             Female
## 463                            0                               Male
## 464                            0                             Female
## 465                            3                             Female
## 466                            1                               Male
## 467                            1                             Female
## 468                            3                             Female
## 469                            1                             Female
## 470                            2                             Female
## 471                            3                               Male
## 472                            3                             Female
## 473                            2                             Female
## 474                            0                               Male
## 475                            3                             Female
## 476                            0                             Female
## 477                            1                             Female
## 478                            0                             Female
## 479                            0                             Female
## 480                            1                             Female
## 481                            3                               Male
## 482                            3                               Male
## 483                            3                             Female
## 484                            3                               Male
## 485                            1                             Female
## 486                            0                             Female
## 487                            1                             Female
## 488                            0                             Female
## 489                            0                             Female
## 490                            1                             Female
## 491                            3                               Male
## 492                            0                             Female
## 493                            0                               Male
## 494                            3                               Male
## 495                            1                             Female
## 496                            3                               Male
## 497                            2                             Female
## 498                            3                             Female
## 499                            1                               Male
## 500                            0                             Female
## 501                            3                             Female
## 502                            3                               Male
## 503                            3                             Female
## 504                            0                             Female
## 505                            3                               Male
## 506                            1                             Female
## 507                            1                             Female
## 508                            0                             Female
## 509                            3                             Female
## 510                            3                               Male
## 511                            1                             Female
## 512                            2                               Male
## 513                            3                             Female
## 514                            3                             Female
## 515                            1                             Female
## 516                            3                               Male
## 517                            0                             Female
## 518                            2                             Female
## 519                            3                               Male
## 520                            3                               Male
## 521                            3                               Male
## 522                            3                               Male
## 523                            0                             Female
## 524                            3                             Female
## 525                            2                             Female
## 526                            3                               Male
## 527                            3                               Male
## 528                            3                             Female
## 529                            0                             Female
## 530                            3                               Male
## 531                            1                               Male
## 532                            0                             Female
## 533                            3                             Female
## 534                            3                             Female
## 535                            3                             Female
## 536                            3                               Male
## 537                            1                             Female
## 538                            2                               Male
## 539                            1                             Female
## 540                            3                               Male
## 541                            3                             Female
## 542                            3                               Male
## 543                            3                             Female
## 544                            3                               Male
## 545                            3                             Female
## 546                            3                               Male
## 547                            2                               Male
## 548                            1                               Male
## 549                            3                             Female
## 550                            3                             Female
## 551                            1                               Male
## 552                            3                               Male
## 553                            1                             Female
## 554                            2                             Female
## 555                            3                             Female
## 556                            3                               Male
## 557                            3                             Female
## 558                            1                               Male
## 559                            3                               Male
## 560                            1                             Female
## 561                            3                               Male
## 562                            0                             Female
## 563                            3                             Female
## 564                            1                             Female
## 565                            3                             Female
## 566                            3                             Female
## 567                            2                             Female
## 568                            3                               Male
## 569                            0                             Female
## 570                            3                             Female
## 571                            1                             Female
## 572                            0                             Female
## 573                            0                             Female
## 574                            0                             Female
## 575                            0                             Female
## 576                            0                             Female
## 577                            3                               Male
## 578                            1                             Female
## 579                            3                               Male
## 580                            1                               Male
## 581                            1                               Male
## 582                            2                             Female
## 583                            0                             Female
## 584                            1                               Male
## 585                            0                             Female
## 586                            0                               Male
## 587                            0                               Male
## 588                            2                             Female
## 589                            3                             Female
## 590                            1                             Female
## 591                            1                               Male
## 592                            1                             Female
## 593                            3                             Female
## 594                            3                             Female
## 595                            0                             Female
## 596                            2                               Male
## 597                            3                               Male
## 598                            3                               Male
## 599                            1                             Female
## 600                            2                             Female
## 601                            1                             Female
## 602                            0                             Female
## 603                            1                               Male
## 604                            1                             Female
## 605                            1                             Female
## 606                            3                             Female
## 607                            3                             Female
## 608                            2                             Female
## 609                            3                             Female
## 610                            2                               Male
## 611                            3                             Female
## 612                            1                             Female
## 613                            0                               Male
## 614                            3                               Male
## 615                            1                             Female
## 616                            2                               Male
## 617                            3                               Male
## 618                            1                             Female
## 619                            1                             Female
## 620                            1                             Female
## 621                            1                               Male
## 622                            3                             Female
## 623                            3                               Male
## 624                            1                               Male
## 625                            3                             Female
## 626                            3                             Female
## 627                            3                             Female
## 628                            3                               Male
## 629                            2                               Male
## 630                            1                             Female
## 631                            3                               Male
## 632                            2                               Male
## 633                            0                             Female
## 634                            2                               Male
## 635                            1                             Female
## 636                            0                               Male
## 637                            2                             Female
## 638                            2                             Female
## 639                            1                             Female
## 640                            1                               Male
## 641                            3                               Male
## 642                            1                             Female
## 643                            3                               Male
## 644                            1                             Female
## 645                            1                             Female
## 646                            0                             Female
## 647                            2                             Female
## 648                            3                               Male
## 649                            3                             Female
## 650                            3                               Male
## 651                            0                             Female
## 652                            2                               Male
## 653                            2                               Male
## 654                            1                             Female
## 655                            0                             Female
## 656                            1                             Female
## 657                            3                             Female
## 658                            3                               Male
## 659                            1                             Female
## 660                            3                               Male
## 661                            3                             Female
## 662                            0                               Male
## 663                            3                               Male
## 664                            3                               Male
## 665                            3                             Female
## 666                            0                             Female
## 667                            3                               Male
## 668                            1                               Male
## 669                            2                               Male
## 670                            1                             Female
## 671                            3                               Male
## 672                            3                               Male
## 673                            3                             Female
## 674                            3                             Female
## 675                            1                             Female
## 676                            1                             Female
## 677                            0                             Female
## 678                            3                             Female
## 679                            3                               Male
## 680                            0                               Male
## 681                            3                             Female
## 682                            3                               Male
## 683                            2                               Male
## 684                            1                             Female
## 685                            3                             Female
## 686                            2                               Male
## 687                            3                               Male
## 688                            3                             Female
## 689                            1                             Female
## 690                            1                             Female
## 691                            0                             Female
## 692                            3                             Female
## 693                            0                             Female
## 694                            1                             Female
## 695                            0                               Male
## 696                            3                               Male
## 697                            0                             Female
## 698                            0                             Female
## 699                            3                             Female
## 700                            3                               Male
## 701                            3                               Male
## 702                            3                             Female
## 703                            3                             Female
## 704                            1                               Male
## 705                            1                             Female
## 706                            3                               Male
## 707                            3                             Female
## 708                            2                             Female
## 709                            0                               Male
## 710                            3                             Female
## 711                            0                             Female
## 712                            3                             Female
## 713                            1                             Female
## 714                            1                               Male
## 715                            3                               Male
## 716                            2                             Female
## 717                            3                             Female
## 718                            3                               Male
## 719                            0                             Female
## 720                            1                             Female
## 721                            3                               Male
## 722                            0                             Female
## 723                            0                             Female
## 724                            3                             Female
## 725                            3                             Female
## 726                            0                               Male
## 727                            1                               Male
## 728                            3                             Female
## 729                            1                             Female
## 730                            1                             Female
## 731                            3                               Male
## 732                            3                             Female
## 733                            3                               Male
## 734                            0                             Female
## 735                            1                               Male
## 736                            1                             Female
## 737                            3                             Female
## 738                            1                             Female
## 739                            1                             Female
## 740                            3                             Female
## 741                            2                               Male
## 742                            3                             Female
## 743                            0                               Male
## 744                            3                             Female
## 745                            0                             Female
## 746                            1                               Male
## 747                            3                             Female
## 748                            3                               Male
## 749                            0                             Female
## 750                            3                             Female
## 751                            3                               Male
## 752                            1                               Male
## 753                            3                             Female
## 754                            1                             Female
## 755                            0                             Female
## 756                            0                             Female
## 757                            1                             Female
## 758                            3                               Male
## 759                            1                             Female
## 760                            1                             Female
## 761                            1                             Female
## 762                            1                             Female
## 763                            3                             Female
## 764                            3                               Male
## 765                            3                               Male
## 766                            3                             Female
## 767                            2                               Male
## 768                            0                             Female
## 769                            3                             Female
## 770                            3                             Female
## 771                            3                               Male
## 772                            3                             Female
## 773                            0                               Male
## 774                            3                               Male
## 775                            1                               Male
## 776                            3                             Female
## 777                            2                               Male
## 778                            3                             Female
## 779                            3                               Male
## 780                            3                               Male
## 781                            1                             Female
## 782                            3                             Female
## 783                            0                             Female
## 784                            0                               Male
## 785                            0                             Female
## 786                            1                             Female
## 787                            1                               Male
## 788                            2                               Male
## 789                            1                             Female
## 790                            2                               Male
## 791                            1                             Female
## 792                            3                             Female
## 793                            1                               Male
## 794                            3                               Male
## 795                            1                             Female
## 796                            3                             Female
## 797                            3                             Female
## 798                            3                               Male
## 799                            2                             Female
## 800                            3                               Male
## 801                            1                               Male
## 802                            1                               Male
## 803                            2                               Male
## 804                            3                               Male
## 805                            3                               Male
## 806                            3                             Female
## 807                            2                             Female
## 808                            2                             Female
## 809                            3                               Male
## 810                            3                               Male
## 811                            3                             Female
## 812                            1                               Male
## 813                            3                             Female
## 814                            1                               Male
## 815                            0                               Male
## 816                            1                             Female
## 817                            1                               Male
## 818                            0                               Male
## 819                            0                             Female
## 820                            3                               Male
## 821                            2                             Female
## 822                            3                             Female
## 823                            3                               Male
## 824                            1                             Female
## 825                            1                             Female
## 826                            0                             Female
## 827                            2                             Female
## 828                            0                               Male
## 829                            1                               Male
## 830                            3                             Female
## 831                            2                             Female
## 832                            3                               Male
## 833                            0                             Female
## 834                            1                               Male
## 835                            1                             Female
## 836                            3                             Female
## 837                            0                               Male
## 838                            1                             Female
## 839                            2                               Male
## 840                            3                               Male
## 841                            2                             Female
## 842                            3                             Female
## 843                            3                               Male
## 844                            0                             Female
## 845                            0                             Female
## 846                            0                             Female
## 847                            3                               Male
## 848                            0                             Female
## 849                            2                             Female
## 850                            3                             Female
## 851                            1                             Female
## 852                            3                               Male
## 853                            0                             Female
## 854                            0                               Male
## 855                            2                               Male
## 856                            3                             Female
## 857                            0                             Female
## 858                            0                             Female
## 859                            1                               Male
## 860                            0                             Female
## 861                            1                             Female
## 862                            3                             Female
## 863                            1                               Male
## 864                            0                             Female
## 865                            3                               Male
## 866                            0                             Female
## 867                            3                               Male
## 868                            0                             Female
## 869                            1                               Male
## 870                            1                               Male
## 871                            1                             Female
## 872                            2                             Female
## 873                            3                             Female
## 874                            3                               Male
## 875                            3                               Male
## 876                            3                             Female
## 877                            3                               Male
## 878                            3                               Male
## 879                            3                               Male
## 880                            1                               Male
## 881                            3                               Male
## 882                            1                               Male
## 883                            2                               Male
## 884                            3                             Female
## 885                            3                               Male
## 886                            1                               Male
## 887                            1                             Female
## 888                            3                               Male
## 889                            3                             Female
## 890                            1                             Female
## 891                            3                               Male
## 892                            0                             Female
## 893                            3                               Male
## 894                            0                               Male
## 895                            3                               Male
## 896                            3                             Female
## 897                            1                             Female
## 898                            2                             Female
## 899                            3                             Female
## 900                            3                             Female
## 901                            3                               Male
## 902                            3                             Female
## 903                            1                             Female
## 904                            1                             Female
## 905                            0                               Male
## 906                            0                               Male
## 907                            3                             Female
## 908                            3                             Female
## 909                            3                               Male
## 910                            2                               Male
## 911                            0                               Male
## 912                            2                             Female
## 913                            3                             Female
## 914                            2                             Female
## 915                            0                               Male
## 916                            3                               Male
## 917                            3                               Male
## 918                            1                             Female
## 919                            3                             Female
## 920                            1                             Female
## 921                            1                             Female
## 922                            3                             Female
## 923                            3                               Male
## 924                            3                               Male
## 925                            1                             Female
## 926                            1                               Male
## 927                            0                               Male
## 928                            3                             Female
## 929                            1                             Female
## 930                            3                             Female
## 931                            1                             Female
## 932                            3                               Male
## 933                            3                               Male
## 934                            3                               Male
## 935                            3                               Male
## 936                            1                               Male
## 937                            3                               Male
## 938                            0                               Male
## 939                            1                               Male
## 940                            2                               Male
## 941                            0                               Male
## 942                            1                             Female
## 943                            3                               Male
## 944                            2                               Male
## 945                            1                               Male
## 946                            3                             Female
## 947                            3                             Female
## 948                            3                               Male
## 949                            1                               Male
## 950                            1                             Female
## 951                            0                             Female
## 952                            3                               Male
## 953                            0                               Male
## 954                            2                             Female
## 955                            3                             Female
## 956                            1                               Male
## 957                            3                               Male
## 958                            3                             Female
## 959                            2                             Female
## 960                            3                               Male
## 961                            0                             Female
## 962                            3                             Female
## 963                            3                             Female
## 964                            3                               Male
## 965                            0                             Female
## 966                            2                             Female
## 967                            1                             Female
## 968                            3                               Male
## 969                            3                               Male
## 970                            3                               Male
## 971                            3                             Female
## 972                            1                             Female
## 973                            1                             Female
## 974                            0                               Male
## 975                            2                             Female
## 976                            0                             Female
## 977                            1                               Male
## 978                            3                             Female
## 979                            1                             Female
## 980                            3                             Female
## 981                            1                             Female
## 982                            1                               Male
## 983                            1                               Male
## 984                            1                             Female
## 985                            1                             Female
## 986                            1                             Female
## 987                            1                             Female
## 988                            2                             Female
## 989                            1                             Female
## 990                            0                             Female
## 991                            3                             Female
## 992                            3                             Female
## 993                            1                               Male
## 994                            3                             Female
## 995                            2                             Female
## 996                            2                               Male
## 997                            3                             Female
## 998                            1                             Female
## 999                            1                             Female
## 1000                           0                               Male
## 1001                           3                             Female
## 1002                           0                             Female
## 1003                           0                             Female
## 1004                           0                               Male
## 1005                           0                               Male
## 1006                           0                             Female
## 1007                           3                             Female
## 1008                           1                             Female
## 1009                           3                               Male
## 1010                           0                             Female
## 1011                           3                               Male
## 1012                           3                             Female
## 1013                           2                               Male
## 1014                           1                             Female
## 1015                           2                               Male
## 1016                           3                             Female
## 1017                           3                               Male
## 1018                           1                             Female
## 1019                           0                             Female
## 1020                           1                               Male
## 1021                           0                             Female
## 1022                           3                               Male
## 1023                           1                               Male
## 1024                           0                             Female
## 1025                           0                               Male
## 1026                           3                             Female
## 1027                           1                             Female
## 1028                           3                               Male
## 1029                           1                               Male
## 1030                           3                               Male
## 1031                           0                             Female
## 1032                           3                             Female
## 1033                           0                             Female
## 1034                           0                             Female
## 1035                           0                               Male
## 1036                           1                               Male
## 1037                           0                             Female
## 1038                           0                               Male
## 1039                           3                             Female
## 1040                           3                               Male
## 1041                           1                             Female
## 1042                           0                             Female
## 1043                           0                             Female
## 1044                           1                             Female
## 1045                           0                               Male
## 1046                           1                             Female
## 1047                           1                             Female
## 1048                           3                               Male
## 1049                           3                               Male
## 1050                           0                               Male
## 1051                           3                             Female
## 1052                           3                               Male
## 1053                           0                             Female
## 1054                           2                               Male
## 1055                           1                             Female
## 1056                           1                               Male
## 1057                           3                               Male
## 1058                           0                             Female
## 1059                           2                               Male
## 1060                           2                             Female
## 1061                           3                             Female
## 1062                           3                             Female
## 1063                           3                             Female
## 1064                           0                               Male
## 1065                           3                             Female
## 1066                           2                             Female
## 1067                           0                               Male
## 1068                           3                             Female
## 1069                           1                             Female
## 1070                           3                               Male
## 1071                           3                             Female
## 1072                           0                             Female
## 1073                           3                               Male
## 1074                           2                               Male
## 1075                           3                             Female
## 1076                           3                             Female
## 1077                           3                               Male
## 1078                           1                               Male
## 1079                           3                               Male
## 1080                           3                             Female
## 1081                           1                             Female
## 1082                           2                             Female
## 1083                           1                               Male
## 1084                           0                               Male
## 1085                           0                             Female
## 1086                           3                             Female
## 1087                           3                             Female
## 1088                           2                               Male
## 1089                           3                             Female
## 1090                           3                               Male
## 1091                           3                               Male
## 1092                           2                             Female
## 1093                           1                               Male
## 1094                           1                             Female
## 1095                           3                               Male
## 1096                           3                               Male
## 1097                           2                               Male
## 1098                           0                             Female
## 1099                           1                             Female
## 1100                           1                             Female
## 1101                           1                             Female
## 1102                           1                               Male
## 1103                           0                               Male
## 1104                           3                               Male
## 1105                           3                               Male
## 1106                           1                             Female
## 1107                           0                             Female
## 1108                           1                               Male
## 1109                           3                               Male
## 1110                           1                               Male
## 1111                           3                               Male
## 1112                           0                             Female
## 1113                           1                             Female
## 1114                           3                               Male
## 1115                           2                               Male
## 1116                           0                             Female
## 1117                           1                             Female
## 1118                           3                             Female
## 1119                           1                             Female
## 1120                           1                               Male
## 1121                           0                               Male
## 1122                           3                               Male
## 1123                           3                             Female
## 1124                           1                               Male
## 1125                           3                             Female
## 1126                           1                               Male
## 1127                           3                             Female
## 1128                           0                               Male
## 1129                           1                               Male
## 1130                           3                             Female
## 1131                           1                             Female
## 1132                           1                             Female
## 1133                           0                             Female
## 1134                           0                               Male
## 1135                           3                               Male
## 1136                           3                             Female
## 1137                           0                               Male
## 1138                           2                               Male
## 1139                           3                               Male
## 1140                           3                               Male
## 1141                           2                               Male
## 1142                           3                               Male
## 1143                           1                             Female
## 1144                           1                               Male
## 1145                           3                               Male
## 1146                           3                               Male
## 1147                           3                               Male
## 1148                           3                             Female
## 1149                           1                             Female
## 1150                           0                             Female
## 1151                           3                             Female
## 1152                           3                             Female
## 1153                           3                             Female
## 1154                           0                               Male
## 1155                           1                               Male
## 1156                           3                             Female
## 1157                           0                               Male
## 1158                           1                             Female
## 1159                           3                               Male
## 1160                           1                             Female
## 1161                           3                             Female
## 1162                           1                               Male
## 1163                           2                               Male
## 1164                           3                             Female
## 1165                           1                             Female
## 1166                           0                             Female
## 1167                           0                               Male
## 1168                           3                             Female
## 1169                           0                               Male
## 1170                           3                               Male
## 1171                           0                             Female
## 1172                           2                             Female
## 1173                           3                               Male
## 1174                           2                             Female
## 1175                           1                             Female
## 1176                           1                               Male
## 1177                           1                             Female
## 1178                           1                             Female
## 1179                           0                             Female
## 1180                           3                               Male
## 1181                           0                             Female
## 1182                           2                             Female
## 1183                           0                             Female
## 1184                           0                             Female
## 1185                           1                             Female
## 1186                           3                             Female
## 1187                           2                             Female
## 1188                           1                             Female
## 1189                           1                             Female
## 1190                           1                               Male
## 1191                           2                               Male
## 1192                           3                               Male
## 1193                           3                             Female
## 1194                           3                             Female
## 1195                           2                             Female
## 1196                           1                             Female
## 1197                           3                             Female
## 1198                           1                               Male
## 1199                           0                             Female
## 1200                           1                               Male
## 1201                           0                             Female
## 1202                           0                             Female
## 1203                           3                               Male
## 1204                           0                             Female
## 1205                           3                               Male
## 1206                           1                             Female
## 1207                           3                               Male
## 1208                           1                             Female
## 1209                           3                             Female
## 1210                           3                               Male
## 1211                           3                             Female
## 1212                           2                             Female
## 1213                           3                             Female
## 1214                           1                             Female
## 1215                           3                             Female
## 1216                           3                               Male
## 1217                           1                             Female
## 1218                           2                               Male
## 1219                           3                             Female
## 1220                           2                             Female
## 1221                           1                             Female
## 1222                           0                               Male
## 1223                           1                               Male
## 1224                           1                               Male
## 1225                           2                             Female
## 1226                           1                             Female
## 1227                           1                             Female
## 1228                           2                               Male
## 1229                           0                               Male
## 1230                           1                             Female
## 1231                           3                               Male
## 1232                           1                             Female
## 1233                           0                             Female
## 1234                           1                               Male
## 1235                           2                             Female
## 1236                           3                             Female
## 1237                           1                             Female
## 1238                           0                               Male
## 1239                           3                             Female
## 1240                           3                               Male
## 1241                           2                               Male
## 1242                           0                             Female
## 1243                           2                             Female
## 1244                           1                               Male
## 1245                           3                             Female
## 1246                           0                               Male
## 1247                           3                             Female
## 1248                           3                               Male
## 1249                           1                             Female
## 1250                           0                             Female
## 1251                           2                               Male
## 1252                           1                             Female
## 1253                           3                             Female
## 1254                           0                               Male
## 1255                           3                               Male
## 1256                           3                               Male
## 1257                           2                             Female
## 1258                           3                               Male
## 1259                           3                               Male
## 1260                           1                             Female
## 1261                           3                               Male
## 1262                           3                               Male
## 1263                           3                             Female
## 1264                           0                               Male
## 1265                           1                               Male
## 1266                           1                               Male
## 1267                           3                             Female
## 1268                           3                               Male
## 1269                           1                               Male
## 1270                           1                             Female
## 1271                           0                             Female
## 1272                           3                               Male
## 1273                           3                               Male
## 1274                           1                             Female
## 1275                           1                               Male
## 1276                           1                             Female
## 1277                           1                             Female
## 1278                           1                               Male
## 1279                           3                             Female
## 1280                           3                             Female
## 1281                           0                             Female
## 1282                           3                               Male
## 1283                           3                             Female
## 1284                           3                               Male
## 1285                           3                             Female
## 1286                           1                             Female
## 1287                           3                             Female
## 1288                           0                             Female
## 1289                           3                               Male
## 1290                           3                               Male
## 1291                           0                             Female
## 1292                           0                               Male
## 1293                           3                               Male
## 1294                           3                               Male
## 1295                           1                               Male
## 1296                           3                               Male
## 1297                           3                             Female
## 1298                           3                             Female
## 1299                           3                             Female
## 1300                           2                               Male
## 1301                           0                             Female
## 1302                           3                             Female
## 1303                           0                               Male
## 1304                           1                             Female
## 1305                           3                               Male
## 1306                           3                               Male
## 1307                           1                               Male
## 1308                           1                             Female
## 1309                           0                               Male
## 1310                           1                             Female
## 1311                           3                             Female
## 1312                           1                               Male
## 1313                           0                             Female
## 1314                           3                               Male
## 1315                           2                             Female
## 1316                           0                             Female
## 1317                           0                             Female
## 1318                           2                               Male
## 1319                           0                             Female
## 1320                           1                               Male
## 1321                           1                             Female
## 1322                           0                               Male
## 1323                           0                             Female
## 1324                           0                             Female
## 1325                           3                               Male
## 1326                           3                             Female
## 1327                           3                               Male
## 1328                           1                               Male
## 1329                           3                             Female
## 1330                           1                             Female
## 1331                           1                               Male
## 1332                           0                               Male
## 1333                           0                             Female
## 1334                           1                               Male
## 1335                           3                               Male
## 1336                           1                             Female
## 1337                           3                             Female
## 1338                           2                               Male
## 1339                           3                             Female
## 1340                           3                               Male
## 1341                           3                               Male
## 1342                           3                             Female
## 1343                           1                             Female
## 1344                           0                               Male
## 1345                           3                               Male
## 1346                           2                             Female
## 1347                           2                             Female
## 1348                           0                               Male
## 1349                           2                             Female
## 1350                           3                             Female
## 1351                           0                             Female
## 1352                           1                             Female
## 1353                           2                               Male
## 1354                           2                             Female
## 1355                           1                             Female
## 1356                           0                               Male
## 1357                           0                               Male
## 1358                           0                             Female
## 1359                           3                             Female
## 1360                           0                             Female
## 1361                           0                             Female
## 1362                           3                             Female
## 1363                           3                             Female
## 1364                           2                               Male
## 1365                           0                               Male
## 1366                           3                             Female
## 1367                           2                               Male
## 1368                           3                               Male
## 1369                           3                             Female
## 1370                           3                             Female
## 1371                           2                             Female
## 1372                           3                               Male
## 1373                           1                               Male
## 1374                           0                             Female
## 1375                           1                             Female
## 1376                           0                             Female
## 1377                           1                               Male
## 1378                           3                               Male
## 1379                           1                             Female
## 1380                           1                             Female
## 1381                           3                             Female
## 1382                           3                               Male
## 1383                           2                               Male
## 1384                           1                             Female
## 1385                           3                               Male
## 1386                           3                             Female
## 1387                           3                             Female
## 1388                           3                             Female
## 1389                           2                             Female
## 1390                           3                               Male
## 1391                           3                               Male
## 1392                           3                               Male
## 1393                           3                               Male
## 1394                           1                             Female
## 1395                           2                             Female
## 1396                           0                               Male
## 1397                           3                               Male
## 1398                           3                               Male
## 1399                           3                               Male
## 1400                           2                             Female
## 1401                           3                               Male
## 1402                           3                               Male
## 1403                           1                             Female
## 1404                           3                               Male
## 1405                           0                             Female
## 1406                           3                               Male
## 1407                           1                               Male
## 1408                           1                             Female
## 1409                           0                               Male
## 1410                           3                               Male
## 1411                           3                               Male
## 1412                           0                             Female
## 1413                           1                             Female
## 1414                           1                               Male
## 1415                           2                               Male
## 1416                           0                               Male
## 1417                           1                             Female
## 1418                           1                             Female
## 1419                           0                             Female
## 1420                           3                               Male
## 1421                           1                               Male
## 1422                           1                             Female
## 1423                           1                               Male
## 1424                           3                               Male
## 1425                           3                             Female
## 1426                           3                             Female
## 1427                           0                             Female
## 1428                           1                             Female
## 1429                           3                             Female
## 1430                           1                             Female
## 1431                           0                             Female
## 1432                           1                             Female
## 1433                           1                               Male
## 1434                           0                             Female
## 1435                           3                             Female
## 1436                           0                               Male
## 1437                           1                               Male
## 1438                           2                               Male
## 1439                           3                             Female
## 1440                           0                               Male
## 1441                           0                             Female
## 1442                           3                               Male
## 1443                           3                             Female
## 1444                           3                             Female
## 1445                           0                               Male
## 1446                           0                             Female
## 1447                           3                               Male
## 1448                           3                               Male
## 1449                           3                               Male
## 1450                           1                             Female
## 1451                           1                             Female
## 1452                           3                               Male
## 1453                           3                             Female
## 1454                           3                               Male
## 1455                           1                             Female
## 1456                           0                               Male
## 1457                           2                             Female
## 1458                           3                               Male
## 1459                           0                             Female
## 1460                           2                             Female
## 1461                           0                             Female
## 1462                           0                             Female
## 1463                           3                               Male
## 1464                           3                               Male
## 1465                           3                               Male
## 1466                           1                               Male
## 1467                           1                             Female
## 1468                           2                               Male
## 1469                           3                               Male
## 1470                           3                             Female
## 1471                           1                               Male
## 1472                           1                               Male
## 1473                           3                               Male
## 1474                           3                               Male
## 1475                           0                             Female
## 1476                           3                             Female
## 1477                           1                             Female
## 1478                           0                               Male
## 1479                           3                               Male
## 1480                           0                               Male
## 1481                           0                               Male
## 1482                           3                               Male
## 1483                           0                               Male
## 1484                           0                             Female
## 1485                           3                               Male
## 1486                           1                             Female
## 1487                           2                             Female
## 1488                           3                             Female
## 1489                           3                             Female
## 1490                           0                             Female
## 1491                           1                             Female
## 1492                           3                             Female
## 1493                           3                               Male
## 1494                           3                               Male
## 1495                           3                             Female
## 1496                           0                               Male
## 1497                           3                             Female
## 1498                           3                             Female
## 1499                           0                               Male
## 1500                           3                               Male
## 1501                           0                             Female
## 1502                           1                             Female
## 1503                           3                             Female
## 1504                           0                               Male
## 1505                           3                             Female
## 1506                           0                               Male
## 1507                           3                               Male
## 1508                           0                             Female
## 1509                           2                               Male
## 1510                           1                               Male
## 1511                           1                             Female
## 1512                           1                             Female
## 1513                           3                               Male
## 1514                           3                             Female
## 1515                           1                               Male
## 1516                           3                             Female
## 1517                           3                               Male
## 1518                           3                             Female
## 1519                           3                             Female
## 1520                           1                               Male
## 1521                           3                               Male
## 1522                           3                             Female
## 1523                           3                               Male
## 1524                           2                               Male
## 1525                           1                               Male
## 1526                           3                               Male
## 1527                           1                               Male
## 1528                           3                               Male
## 1529                           3                               Male
## 1530                           2                             Female
## 1531                           3                             Female
## 1532                           3                             Female
## 1533                           1                             Female
## 1534                           3                               Male
## 1535                           2                               Male
## 1536                           1                               Male
## 1537                           3                               Male
## 1538                           3                             Female
## 1539                           3                               Male
## 1540                           2                               Male
## 1541                           1                             Female
## 1542                           3                             Female
## 1543                           0                               Male
## 1544                           1                             Female
## 1545                           0                               Male
## 1546                           1                               Male
## 1547                           1                             Female
## 1548                           3                               Male
## 1549                           2                             Female
## 1550                           0                             Female
## 1551                           1                               Male
## 1552                           3                               Male
## 1553                           3                               Male
## 1554                           3                             Female
## 1555                           2                               Male
## 1556                           1                             Female
## 1557                           3                             Female
## 1558                           1                             Female
## 1559                           3                               Male
## 1560                           0                             Female
## 1561                           3                             Female
## 1562                           0                               Male
## 1563                           1                             Female
## 1564                           3                             Female
## 1565                           1                             Female
## 1566                           1                             Female
## 1567                           3                             Female
## 1568                           1                             Female
## 1569                           1                               Male
## 1570                           1                               Male
## 1571                           0                             Female
## 1572                           0                             Female
## 1573                           3                               Male
## 1574                           0                             Female
## 1575                           1                             Female
## 1576                           1                               Male
## 1577                           1                               Male
## 1578                           1                               Male
## 1579                           3                               Male
## 1580                           1                             Female
## 1581                           1                               Male
## 1582                           3                               Male
## 1583                           2                             Female
## 1584                           3                               Male
## 1585                           1                               Male
## 1586                           3                               Male
## 1587                           1                             Female
## 1588                           3                               Male
## 1589                           3                               Male
## 1590                           3                               Male
## 1591                           2                               Male
## 1592                           2                               Male
## 1593                           3                             Female
## 1594                           1                             Female
## 1595                           3                               Male
## 1596                           0                             Female
## 1597                           3                             Female
## 1598                           2                               Male
## 1599                           1                             Female
## 1600                           3                               Male
## 1601                           2                             Female
## 1602                           3                               Male
## 1603                           1                             Female
## 1604                           0                               Male
## 1605                           0                             Female
## 1606                           3                             Female
## 1607                           3                               Male
## 1608                           3                             Female
## 1609                           1                             Female
## 1610                           3                             Female
## 1611                           3                             Female
## 1612                           3                             Female
## 1613                           3                             Female
## 1614                           1                               Male
## 1615                           3                             Female
## 1616                           1                             Female
## 1617                           0                             Female
## 1618                           1                             Female
## 1619                           1                             Female
## 1620                           1                               Male
## 1621                           3                               Male
## 1622                           3                             Female
## 1623                           3                               Male
## 1624                           0                             Female
## 1625                           1                               Male
## 1626                           0                             Female
## 1627                           1                             Female
## 1628                           3                               Male
## 1629                           3                             Female
## 1630                           0                             Female
## 1631                           3                               Male
## 1632                           3                             Female
## 1633                           3                             Female
## 1634                           1                             Female
## 1635                           3                               Male
## 1636                           3                               Male
## 1637                           0                             Female
## 1638                           1                               Male
## 1639                           3                             Female
## 1640                           2                               Male
## 1641                           0                             Female
## 1642                           3                             Female
## 1643                           3                               Male
## 1644                           3                             Female
## 1645                           0                             Female
## 1646                           0                             Female
## 1647                           3                             Female
## 1648                           1                             Female
## 1649                           3                             Female
## 1650                           3                               Male
## 1651                           1                               Male
## 1652                           3                             Female
## 1653                           0                             Female
## 1654                           3                               Male
## 1655                           3                             Female
## 1656                           3                               Male
## 1657                           3                               Male
## 1658                           3                             Female
## 1659                           0                               Male
## 1660                           0                               Male
## 1661                           1                             Female
## 1662                           2                             Female
## 1663                           2                               Male
## 1664                           1                             Female
## 1665                           3                               Male
## 1666                           3                             Female
## 1667                           3                               Male
## 1668                           1                               Male
## 1669                           3                             Female
## 1670                           3                               Male
## 1671                           2                               Male
## 1672                           3                             Female
## 1673                           3                             Female
## 1674                           2                               Male
## 1675                           3                               Male
## 1676                           1                               Male
## 1677                           3                             Female
## 1678                           3                               Male
## 1679                           3                               Male
## 1680                           2                               Male
## 1681                           3                               Male
## 1682                           3                             Female
## 1683                           0                             Female
## 1684                           3                               Male
## 1685                           0                               Male
## 1686                           1                             Female
## 1687                           2                             Female
## 1688                           3                               Male
## 1689                           1                               Male
## 1690                           3                               Male
## 1691                           2                             Female
## 1692                           1                             Female
## 1693                           2                             Female
## 1694                           3                             Female
## 1695                           0                             Female
## 1696                           2                             Female
## 1697                           0                             Female
## 1698                           1                             Female
## 1699                           3                               Male
## 1700                           0                             Female
## 1701                           3                             Female
## 1702                           1                               Male
## 1703                           0                             Female
## 1704                           3                               Male
## 1705                           3                             Female
## 1706                           0                             Female
## 1707                           3                               Male
## 1708                           1                             Female
## 1709                           1                               Male
## 1710                           1                               Male
## 1711                           3                             Female
## 1712                           1                             Female
## 1713                           0                               Male
## 1714                           0                             Female
## 1715                           0                             Female
## 1716                           3                               Male
## 1717                           2                             Female
## 1718                           3                             Female
## 1719                           1                               Male
## 1720                           3                             Female
## 1721                           2                             Female
## 1722                           3                               Male
## 1723                           3                             Female
## 1724                           3                             Female
## 1725                           2                               Male
## 1726                           3                               Male
## 1727                           3                               Male
## 1728                           1                             Female
## 1729                           0                             Female
## 1730                           1                               Male
## 1731                           3                             Female
## 1732                           2                             Female
## 1733                           2                             Female
## 1734                           3                             Female
## 1735                           2                             Female
## 1736                           2                               Male
## 1737                           3                             Female
## 1738                           0                             Female
## 1739                           0                               Male
## 1740                           3                               Male
## 1741                           3                             Female
## 1742                           1                               Male
## 1743                           3                             Female
## 1744                           3                             Female
## 1745                           3                               Male
## 1746                           0                             Female
## 1747                           3                               Male
## 1748                           0                             Female
## 1749                           2                             Female
## 1750                           1                             Female
## 1751                           0                             Female
## 1752                           0                             Female
## 1753                           0                               Male
## 1754                           3                             Female
## 1755                           3                               Male
## 1756                           3                             Female
## 1757                           3                               Male
## 1758                           1                             Female
## 1759                           1                             Female
## 1760                           2                               Male
## 1761                           1                             Female
## 1762                           1                             Female
## 1763                           3                             Female
## 1764                           0                             Female
## 1765                           1                               Male
## 1766                           3                             Female
## 1767                           2                               Male
## 1768                           3                             Female
## 1769                           0                               Male
## 1770                           3                               Male
## 1771                           3                             Female
## 1772                           3                               Male
## 1773                           3                             Female
## 1774                           0                             Female
## 1775                           0                             Female
## 1776                           3                               Male
## 1777                           1                             Female
## 1778                           3                             Female
## 1779                           0                               Male
## 1780                           1                               Male
## 1781                           0                             Female
## 1782                           1                             Female
## 1783                           0                               Male
## 1784                           3                             Female
## 1785                           3                             Female
## 1786                           0                             Female
## 1787                           1                             Female
## 1788                           3                             Female
## 1789                           0                             Female
## 1790                           2                             Female
## 1791                           3                               Male
## 1792                           3                             Female
## 1793                           2                             Female
## 1794                           0                             Female
## 1795                           2                             Female
## 1796                           3                               Male
## 1797                           1                               Male
## 1798                           1                             Female
## 1799                           3                               Male
## 1800                           1                             Female
## 1801                           0                             Female
## 1802                           2                               Male
## 1803                           1                             Female
## 1804                           1                               Male
## 1805                           3                               Male
## 1806                           3                               Male
## 1807                           3                             Female
## 1808                           1                               Male
## 1809                           0                             Female
## 1810                           3                             Female
## 1811                           2                               Male
## 1812                           3                             Female
## 1813                           2                               Male
## 1814                           0                             Female
## 1815                           1                             Female
## 1816                           1                               Male
## 1817                           1                             Female
## 1818                           2                             Female
## 1819                           3                               Male
## 1820                           3                             Female
## 1821                           3                               Male
## 1822                           1                             Female
## 1823                           1                               Male
## 1824                           1                               Male
## 1825                           1                             Female
## 1826                           2                             Female
## 1827                           3                               Male
## 1828                           3                             Female
## 1829                           3                               Male
## 1830                           3                               Male
## 1831                           0                             Female
## 1832                           1                             Female
## 1833                           2                             Female
## 1834                           0                             Female
## 1835                           3                               Male
## 1836                           3                               Male
## 1837                           3                               Male
## 1838                           0                             Female
## 1839                           0                             Female
## 1840                           1                               Male
## 1841                           3                               Male
## 1842                           1                               Male
## 1843                           2                             Female
## 1844                           3                               Male
## 1845                           1                             Female
## 1846                           3                             Female
## 1847                           2                             Female
## 1848                           3                               Male
## 1849                           3                               Male
## 1850                           3                             Female
## 1851                           0                             Female
## 1852                           3                               Male
## 1853                           1                               Male
## 1854                           3                               Male
## 1855                           2                             Female
## 1856                           1                             Female
## 1857                           3                               Male
## 1858                           3                               Male
## 1859                           3                             Female
## 1860                           1                             Female
## 1861                           2                             Female
## 1862                           0                             Female
## 1863                           2                             Female
## 1864                           3                               Male
## 1865                           3                             Female
## 1866                           3                               Male
## 1867                           3                             Female
## 1868                           1                             Female
## 1869                           1                             Female
## 1870                           3                               Male
## 1871                           3                               Male
## 1872                           1                             Female
## 1873                           1                               Male
## 1874                           1                             Female
## 1875                           3                             Female
## 1876                           3                               Male
## 1877                           3                               Male
## 1878                           3                             Female
## 1879                           2                             Female
## 1880                           0                               Male
## 1881                           1                               Male
## 1882                           2                             Female
## 1883                           3                             Female
## 1884                           1                             Female
## 1885                           3                               Male
## 1886                           3                             Female
## 1887                           3                               Male
## 1888                           3                             Female
## 1889                           2                             Female
## 1890                           0                             Female
## 1891                           0                             Female
## 1892                           3                               Male
## 1893                           3                             Female
## 1894                           0                               Male
## 1895                           3                               Male
## 1896                           3                               Male
## 1897                           3                               Male
## 1898                           2                               Male
## 1899                           0                             Female
## 1900                           2                             Female
## 1901                           1                             Female
## 1902                           3                             Female
## 1903                           3                             Female
## 1904                           1                             Female
## 1905                           3                               Male
## 1906                           3                             Female
## 1907                           2                             Female
## 1908                           3                             Female
## 1909                           1                             Female
## 1910                           3                             Female
## 1911                           2                             Female
## 1912                           3                               Male
## 1913                           0                               Male
## 1914                           3                               Male
## 1915                           2                             Female
## 1916                           3                             Female
## 1917                           1                             Female
## 1918                           3                             Female
## 1919                           3                               Male
## 1920                           3                             Female
## 1921                           3                               Male
## 1922                           3                               Male
## 1923                           0                             Female
## 1924                           0                             Female
## 1925                           2                             Female
## 1926                           0                             Female
## 1927                           1                               Male
## 1928                           1                               Male
## 1929                           0                             Female
## 1930                           0                               Male
## 1931                           1                               Male
## 1932                           3                               Male
## 1933                           3                               Male
## 1934                           1                             Female
## 1935                           2                               Male
## 1936                           3                             Female
## 1937                           3                             Female
## 1938                           1                             Female
## 1939                           2                               Male
## 1940                           1                               Male
## 1941                           1                             Female
## 1942                           1                               Male
## 1943                           0                             Female
## 1944                           1                             Female
## 1945                           3                               Male
## 1946                           3                               Male
## 1947                           3                             Female
## 1948                           0                               Male
## 1949                           3                             Female
## 1950                           0                             Female
## 1951                           1                               Male
## 1952                           3                               Male
## 1953                           0                             Female
## 1954                           3                             Female
## 1955                           0                             Female
## 1956                           3                             Female
## 1957                           3                             Female
## 1958                           2                             Female
## 1959                           0                             Female
## 1960                           3                             Female
## 1961                           1                             Female
## 1962                           3                             Female
## 1963                           3                               Male
## 1964                           3                             Female
## 1965                           0                             Female
## 1966                           1                               Male
## 1967                           3                             Female
## 1968                           3                             Female
## 1969                           3                               Male
## 1970                           0                               Male
## 1971                           3                             Female
## 1972                           2                               Male
## 1973                           3                             Female
## 1974                           1                             Female
## 1975                           1                             Female
## 1976                           2                             Female
## 1977                           2                               Male
## 1978                           0                               Male
## 1979                           2                               Male
## 1980                           0                             Female
## 1981                           3                               Male
## 1982                           1                               Male
## 1983                           1                               Male
## 1984                           0                               Male
## 1985                           0                             Female
## 1986                           1                             Female
## 1987                           3                               Male
## 1988                           1                               Male
## 1989                           0                               Male
## 1990                           2                               Male
## 1991                           2                             Female
## 1992                           2                             Female
## 1993                           0                               Male
## 1994                           3                               Male
## 1995                           3                               Male
## 1996                           3                               Male
## 1997                           1                             Female
## 1998                           2                             Female
## 1999                           1                               Male
## 2000                           2                             Female
## 2001                           1                               Male
## 2002                           3                             Female
## 2003                           1                               Male
## 2004                           3                             Female
## 2005                           1                               Male
## 2006                           3                             Female
## 2007                           3                             Female
## 2008                           3                               Male
## 2009                           0                             Female
## 2010                           3                               Male
## 2011                           3                             Female
## 2012                           2                             Female
## 2013                           3                             Female
## 2014                           1                             Female
## 2015                           1                               Male
## 2016                           3                             Female
## 2017                           2                               Male
## 2018                           3                               Male
## 2019                           3                             Female
## 2020                           1                               Male
## 2021                           0                               Male
## 2022                           3                             Female
## 2023                           3                             Female
## 2024                           3                               Male
## 2025                           1                             Female
## 2026                           1                             Female
## 2027                           1                               Male
## 2028                           0                             Female
## 2029                           0                               Male
## 2030                           3                             Female
## 2031                           3                               Male
## 2032                           1                             Female
## 2033                           3                             Female
## 2034                           1                               Male
## 2035                           0                             Female
## 2036                           3                               Male
## 2037                           2                             Female
## 2038                           3                               Male
## 2039                           3                               Male
## 2040                           3                             Female
## 2041                           0                             Female
## 2042                           3                             Female
## 2043                           0                               Male
## 2044                           0                             Female
## 2045                           2                             Female
## 2046                           3                               Male
## 2047                           0                             Female
## 2048                           3                             Female
## 2049                           2                             Female
## 2050                           3                             Female
## 2051                           3                               Male
## 2052                           2                               Male
## 2053                           1                             Female
## 2054                           2                               Male
## 2055                           3                               Male
## 2056                           3                             Female
## 2057                           2                             Female
## 2058                           3                             Female
## 2059                           1                             Female
## 2060                           3                               Male
## 2061                           1                               Male
## 2062                           0                               Male
## 2063                           3                               Male
## 2064                           3                               Male
## 2065                           3                             Female
## 2066                           3                             Female
## 2067                           0                             Female
## 2068                           1                               Male
## 2069                           3                             Female
## 2070                           0                             Female
## 2071                           3                             Female
## 2072                           3                               Male
## 2073                           2                               Male
## 2074                           3                             Female
## 2075                           3                               Male
## 2076                           0                               Male
## 2077                           3                             Female
## 2078                           3                               Male
## 2079                           3                               Male
## 2080                           3                             Female
## 2081                           1                             Female
## 2082                           0                             Female
## 2083                           0                               Male
## 2084                           0                             Female
## 2085                           1                               Male
## 2086                           0                               Male
## 2087                           1                             Female
## 2088                           0                             Female
## 2089                           2                             Female
## 2090                           1                             Female
## 2091                           3                             Female
## 2092                           3                               Male
## 2093                           3                               Male
## 2094                           3                               Male
## 2095                           1                             Female
## 2096                           0                               Male
## 2097                           3                               Male
## 2098                           3                               Male
## 2099                           1                               Male
## 2100                           1                             Female
## 2101                           3                               Male
## 2102                           3                               Male
## 2103                           3                               Male
## 2104                           3                               Male
## 2105                           3                               Male
## 2106                           3                               Male
## 2107                           3                             Female
## 2108                           1                               Male
## 2109                           3                               Male
## 2110                           3                             Female
## 2111                           1                               Male
## 2112                           3                               Male
## 2113                           1                             Female
## 2114                           0                             Female
## 2115                           3                               Male
## 2116                           0                               Male
## 2117                           2                               Male
## 2118                           0                             Female
## 2119                           3                             Female
## 2120                           3                               Male
## 2121                           1                               Male
## 2122                           3                             Female
## 2123                           2                             Female
## 2124                           0                             Female
## 2125                           3                             Female
## 2126                           1                             Female
## 2127                           1                               Male
## 2128                           1                             Female
## 2129                           3                             Female
## 2130                           1                             Female
## 2131                           3                             Female
## 2132                           1                             Female
## 2133                           1                             Female
## 2134                           1                             Female
## 2135                           1                               Male
## 2136                           1                               Male
## 2137                           1                             Female
## 2138                           3                             Female
## 2139                           3                               Male
## 2140                           3                               Male
## 2141                           3                             Female
## 2142                           3                             Female
## 2143                           3                               Male
## 2144                           3                             Female
## 2145                           3                             Female
## 2146                           3                               Male
## 2147                           3                               Male
## 2148                           3                               Male
## 2149                           2                               Male
## 2150                           2                             Female
## 2151                           3                               Male
## 2152                           3                             Female
## 2153                           3                             Female
## 2154                           1                             Female
## 2155                           3                             Female
## 2156                           3                             Female
## 2157                           0                             Female
## 2158                           3                               Male
## 2159                           1                             Female
## 2160                           1                               Male
## 2161                           2                               Male
## 2162                           2                               Male
## 2163                           2                               Male
## 2164                           3                             Female
## 2165                           1                             Female
## 2166                           0                               Male
## 2167                           3                             Female
## 2168                           3                             Female
## 2169                           1                               Male
## 2170                           0                             Female
## 2171                           3                             Female
## 2172                           2                               Male
## 2173                           3                               Male
## 2174                           1                             Female
## 2175                           0                               Male
## 2176                           3                               Male
## 2177                           3                               Male
## 2178                           1                             Female
## 2179                           0                               Male
## 2180                           3                               Male
## 2181                           0                             Female
## 2182                           2                             Female
## 2183                           3                               Male
## 2184                           3                             Female
## 2185                           0                               Male
## 2186                           3                             Female
## 2187                           3                               Male
## 2188                           3                               Male
## 2189                           3                             Female
## 2190                           0                               Male
## 2191                           3                               Male
## 2192                           3                             Female
## 2193                           1                               Male
## 2194                           0                             Female
## 2195                           1                               Male
## 2196                           1                             Female
## 2197                           3                               Male
## 2198                           3                             Female
## 2199                           1                               Male
## 2200                           3                               Male
## 2201                           0                             Female
## 2202                           3                             Female
## 2203                           1                             Female
## 2204                           0                               Male
## 2205                           3                             Female
## 2206                           0                             Female
## 2207                           1                             Female
## 2208                           1                             Female
## 2209                           1                               Male
## 2210                           1                             Female
## 2211                           3                               Male
## 2212                           1                             Female
## 2213                           3                               Male
## 2214                           0                             Female
## 2215                           1                               Male
## 2216                           1                               Male
## 2217                           3                             Female
## 2218                           1                               Male
## 2219                           1                               Male
## 2220                           2                               Male
## 2221                           3                               Male
## 2222                           0                             Female
## 2223                           3                               Male
## 2224                           3                             Female
## 2225                           2                             Female
## 2226                           3                               Male
## 2227                           0                               Male
## 2228                           2                             Female
## 2229                           3                               Male
## 2230                           1                               Male
## 2231                           1                               Male
## 2232                           0                               Male
## 2233                           3                             Female
## 2234                           3                               Male
## 2235                           3                             Female
## 2236                           3                               Male
## 2237                           0                             Female
## 2238                           1                             Female
## 2239                           1                               Male
## 2240                           3                               Male
## 2241                           2                             Female
## 2242                           0                             Female
## 2243                           1                               Male
## 2244                           1                             Female
## 2245                           2                             Female
## 2246                           3                             Female
## 2247                           1                             Female
## 2248                           0                               Male
## 2249                           1                             Female
## 2250                           3                             Female
## 2251                           1                             Female
## 2252                           3                               Male
## 2253                           0                             Female
## 2254                           1                             Female
## 2255                           2                               Male
## 2256                           0                             Female
## 2257                           3                               Male
## 2258                           3                             Female
## 2259                           0                             Female
## 2260                           3                             Female
## 2261                           1                               Male
## 2262                           1                               Male
## 2263                           3                               Male
## 2264                           3                             Female
## 2265                           3                             Female
## 2266                           1                             Female
## 2267                           3                               Male
## 2268                           0                             Female
## 2269                           0                             Female
## 2270                           1                               Male
## 2271                           1                             Female
## 2272                           3                             Female
##      if_else(Q3 == 1, "Married", "Divorced")
## 1                                   Divorced
## 2                                    Married
## 3                                   Divorced
## 4                                    Married
## 5                                    Married
## 6                                    Married
## 7                                    Married
## 8                                   Divorced
## 9                                   Divorced
## 10                                   Married
## 11                                  Divorced
## 12                                   Married
## 13                                   Married
## 14                                   Married
## 15                                  Divorced
## 16                                   Married
## 17                                  Divorced
## 18                                  Divorced
## 19                                  Divorced
## 20                                  Divorced
## 21                                   Married
## 22                                   Married
## 23                                   Married
## 24                                   Married
## 25                                  Divorced
## 26                                   Married
## 27                                  Divorced
## 28                                  Divorced
## 29                                  Divorced
## 30                                  Divorced
## 31                                  Divorced
## 32                                   Married
## 33                                  Divorced
## 34                                  Divorced
## 35                                   Married
## 36                                   Married
## 37                                  Divorced
## 38                                  Divorced
## 39                                   Married
## 40                                   Married
## 41                                   Married
## 42                                   Married
## 43                                   Married
## 44                                   Married
## 45                                  Divorced
## 46                                  Divorced
## 47                                   Married
## 48                                   Married
## 49                                  Divorced
## 50                                   Married
## 51                                   Married
## 52                                   Married
## 53                                   Married
## 54                                   Married
## 55                                  Divorced
## 56                                   Married
## 57                                   Married
## 58                                  Divorced
## 59                                   Married
## 60                                   Married
## 61                                  Divorced
## 62                                  Divorced
## 63                                   Married
## 64                                   Married
## 65                                   Married
## 66                                  Divorced
## 67                                   Married
## 68                                   Married
## 69                                  Divorced
## 70                                   Married
## 71                                   Married
## 72                                   Married
## 73                                   Married
## 74                                   Married
## 75                                   Married
## 76                                  Divorced
## 77                                  Divorced
## 78                                  Divorced
## 79                                  Divorced
## 80                                   Married
## 81                                   Married
## 82                                  Divorced
## 83                                   Married
## 84                                   Married
## 85                                   Married
## 86                                   Married
## 87                                  Divorced
## 88                                   Married
## 89                                   Married
## 90                                   Married
## 91                                   Married
## 92                                   Married
## 93                                  Divorced
## 94                                  Divorced
## 95                                  Divorced
## 96                                  Divorced
## 97                                   Married
## 98                                   Married
## 99                                   Married
## 100                                 Divorced
## 101                                  Married
## 102                                 Divorced
## 103                                  Married
## 104                                  Married
## 105                                  Married
## 106                                  Married
## 107                                 Divorced
## 108                                 Divorced
## 109                                 Divorced
## 110                                  Married
## 111                                  Married
## 112                                  Married
## 113                                 Divorced
## 114                                 Divorced
## 115                                  Married
## 116                                 Divorced
## 117                                 Divorced
## 118                                  Married
## 119                                 Divorced
## 120                                 Divorced
## 121                                  Married
## 122                                 Divorced
## 123                                  Married
## 124                                 Divorced
## 125                                 Divorced
## 126                                 Divorced
## 127                                 Divorced
## 128                                  Married
## 129                                  Married
## 130                                  Married
## 131                                  Married
## 132                                  Married
## 133                                 Divorced
## 134                                 Divorced
## 135                                  Married
## 136                                  Married
## 137                                  Married
## 138                                  Married
## 139                                  Married
## 140                                  Married
## 141                                  Married
## 142                                  Married
## 143                                  Married
## 144                                  Married
## 145                                 Divorced
## 146                                  Married
## 147                                  Married
## 148                                  Married
## 149                                  Married
## 150                                 Divorced
## 151                                  Married
## 152                                 Divorced
## 153                                 Divorced
## 154                                  Married
## 155                                  Married
## 156                                  Married
## 157                                  Married
## 158                                 Divorced
## 159                                 Divorced
## 160                                  Married
## 161                                 Divorced
## 162                                  Married
## 163                                  Married
## 164                                  Married
## 165                                 Divorced
## 166                                  Married
## 167                                 Divorced
## 168                                 Divorced
## 169                                 Divorced
## 170                                  Married
## 171                                  Married
## 172                                  Married
## 173                                  Married
## 174                                 Divorced
## 175                                  Married
## 176                                  Married
## 177                                 Divorced
## 178                                  Married
## 179                                  Married
## 180                                 Divorced
## 181                                 Divorced
## 182                                  Married
## 183                                 Divorced
## 184                                  Married
## 185                                  Married
## 186                                  Married
## 187                                  Married
## 188                                  Married
## 189                                  Married
## 190                                  Married
## 191                                  Married
## 192                                  Married
## 193                                  Married
## 194                                 Divorced
## 195                                 Divorced
## 196                                  Married
## 197                                  Married
## 198                                  Married
## 199                                  Married
## 200                                 Divorced
## 201                                  Married
## 202                                  Married
## 203                                  Married
## 204                                 Divorced
## 205                                 Divorced
## 206                                  Married
## 207                                  Married
## 208                                 Divorced
## 209                                 Divorced
## 210                                  Married
## 211                                  Married
## 212                                  Married
## 213                                  Married
## 214                                 Divorced
## 215                                 Divorced
## 216                                  Married
## 217                                 Divorced
## 218                                  Married
## 219                                  Married
## 220                                  Married
## 221                                  Married
## 222                                  Married
## 223                                  Married
## 224                                 Divorced
## 225                                  Married
## 226                                 Divorced
## 227                                 Divorced
## 228                                  Married
## 229                                 Divorced
## 230                                  Married
## 231                                 Divorced
## 232                                 Divorced
## 233                                  Married
## 234                                 Divorced
## 235                                 Divorced
## 236                                  Married
## 237                                  Married
## 238                                  Married
## 239                                  Married
## 240                                  Married
## 241                                 Divorced
## 242                                 Divorced
## 243                                  Married
## 244                                  Married
## 245                                 Divorced
## 246                                  Married
## 247                                  Married
## 248                                  Married
## 249                                 Divorced
## 250                                 Divorced
## 251                                  Married
## 252                                  Married
## 253                                  Married
## 254                                 Divorced
## 255                                 Divorced
## 256                                  Married
## 257                                  Married
## 258                                 Divorced
## 259                                 Divorced
## 260                                  Married
## 261                                  Married
## 262                                 Divorced
## 263                                 Divorced
## 264                                 Divorced
## 265                                  Married
## 266                                 Divorced
## 267                                 Divorced
## 268                                  Married
## 269                                  Married
## 270                                  Married
## 271                                  Married
## 272                                 Divorced
## 273                                 Divorced
## 274                                 Divorced
## 275                                 Divorced
## 276                                  Married
## 277                                  Married
## 278                                 Divorced
## 279                                  Married
## 280                                  Married
## 281                                  Married
## 282                                  Married
## 283                                  Married
## 284                                  Married
## 285                                  Married
## 286                                  Married
## 287                                  Married
## 288                                 Divorced
## 289                                  Married
## 290                                  Married
## 291                                  Married
## 292                                 Divorced
## 293                                 Divorced
## 294                                 Divorced
## 295                                 Divorced
## 296                                 Divorced
## 297                                 Divorced
## 298                                 Divorced
## 299                                 Divorced
## 300                                 Divorced
## 301                                  Married
## 302                                  Married
## 303                                  Married
## 304                                 Divorced
## 305                                  Married
## 306                                 Divorced
## 307                                  Married
## 308                                 Divorced
## 309                                  Married
## 310                                  Married
## 311                                  Married
## 312                                  Married
## 313                                  Married
## 314                                  Married
## 315                                  Married
## 316                                  Married
## 317                                  Married
## 318                                  Married
## 319                                 Divorced
## 320                                 Divorced
## 321                                  Married
## 322                                  Married
## 323                                  Married
## 324                                  Married
## 325                                 Divorced
## 326                                  Married
## 327                                 Divorced
## 328                                 Divorced
## 329                                  Married
## 330                                  Married
## 331                                  Married
## 332                                 Divorced
## 333                                  Married
## 334                                  Married
## 335                                  Married
## 336                                  Married
## 337                                  Married
## 338                                  Married
## 339                                  Married
## 340                                  Married
## 341                                  Married
## 342                                  Married
## 343                                  Married
## 344                                  Married
## 345                                  Married
## 346                                 Divorced
## 347                                 Divorced
## 348                                 Divorced
## 349                                 Divorced
## 350                                 Divorced
## 351                                 Divorced
## 352                                  Married
## 353                                 Divorced
## 354                                  Married
## 355                                 Divorced
## 356                                  Married
## 357                                 Divorced
## 358                                  Married
## 359                                  Married
## 360                                  Married
## 361                                 Divorced
## 362                                 Divorced
## 363                                 Divorced
## 364                                 Divorced
## 365                                 Divorced
## 366                                  Married
## 367                                  Married
## 368                                  Married
## 369                                  Married
## 370                                  Married
## 371                                  Married
## 372                                  Married
## 373                                  Married
## 374                                 Divorced
## 375                                 Divorced
## 376                                  Married
## 377                                  Married
## 378                                  Married
## 379                                  Married
## 380                                  Married
## 381                                  Married
## 382                                  Married
## 383                                  Married
## 384                                 Divorced
## 385                                  Married
## 386                                 Divorced
## 387                                 Divorced
## 388                                 Divorced
## 389                                  Married
## 390                                 Divorced
## 391                                  Married
## 392                                  Married
## 393                                 Divorced
## 394                                  Married
## 395                                  Married
## 396                                 Divorced
## 397                                 Divorced
## 398                                  Married
## 399                                  Married
## 400                                  Married
## 401                                  Married
## 402                                 Divorced
## 403                                  Married
## 404                                  Married
## 405                                  Married
## 406                                 Divorced
## 407                                  Married
## 408                                  Married
## 409                                 Divorced
## 410                                  Married
## 411                                 Divorced
## 412                                 Divorced
## 413                                  Married
## 414                                  Married
## 415                                  Married
## 416                                 Divorced
## 417                                 Divorced
## 418                                  Married
## 419                                  Married
## 420                                  Married
## 421                                  Married
## 422                                  Married
## 423                                  Married
## 424                                  Married
## 425                                 Divorced
## 426                                  Married
## 427                                 Divorced
## 428                                  Married
## 429                                  Married
## 430                                  Married
## 431                                  Married
## 432                                 Divorced
## 433                                  Married
## 434                                 Divorced
## 435                                 Divorced
## 436                                  Married
## 437                                  Married
## 438                                  Married
## 439                                 Divorced
## 440                                  Married
## 441                                 Divorced
## 442                                 Divorced
## 443                                  Married
## 444                                 Divorced
## 445                                 Divorced
## 446                                  Married
## 447                                  Married
## 448                                 Divorced
## 449                                 Divorced
## 450                                  Married
## 451                                  Married
## 452                                 Divorced
## 453                                  Married
## 454                                  Married
## 455                                  Married
## 456                                  Married
## 457                                 Divorced
## 458                                 Divorced
## 459                                  Married
## 460                                 Divorced
## 461                                  Married
## 462                                  Married
## 463                                  Married
## 464                                  Married
## 465                                  Married
## 466                                 Divorced
## 467                                  Married
## 468                                 Divorced
## 469                                  Married
## 470                                 Divorced
## 471                                  Married
## 472                                 Divorced
## 473                                  Married
## 474                                 Divorced
## 475                                  Married
## 476                                 Divorced
## 477                                  Married
## 478                                  Married
## 479                                 Divorced
## 480                                  Married
## 481                                  Married
## 482                                  Married
## 483                                  Married
## 484                                 Divorced
## 485                                  Married
## 486                                  Married
## 487                                  Married
## 488                                  Married
## 489                                 Divorced
## 490                                  Married
## 491                                  Married
## 492                                  Married
## 493                                  Married
## 494                                 Divorced
## 495                                 Divorced
## 496                                  Married
## 497                                 Divorced
## 498                                 Divorced
## 499                                 Divorced
## 500                                 Divorced
## 501                                 Divorced
## 502                                 Divorced
## 503                                  Married
## 504                                  Married
## 505                                  Married
## 506                                 Divorced
## 507                                  Married
## 508                                  Married
## 509                                  Married
## 510                                  Married
## 511                                  Married
## 512                                 Divorced
## 513                                 Divorced
## 514                                  Married
## 515                                 Divorced
## 516                                  Married
## 517                                  Married
## 518                                  Married
## 519                                  Married
## 520                                  Married
## 521                                  Married
## 522                                  Married
## 523                                  Married
## 524                                  Married
## 525                                 Divorced
## 526                                  Married
## 527                                  Married
## 528                                  Married
## 529                                 Divorced
## 530                                  Married
## 531                                 Divorced
## 532                                 Divorced
## 533                                  Married
## 534                                  Married
## 535                                  Married
## 536                                  Married
## 537                                  Married
## 538                                  Married
## 539                                  Married
## 540                                  Married
## 541                                  Married
## 542                                  Married
## 543                                  Married
## 544                                 Divorced
## 545                                  Married
## 546                                 Divorced
## 547                                 Divorced
## 548                                  Married
## 549                                  Married
## 550                                  Married
## 551                                  Married
## 552                                  Married
## 553                                 Divorced
## 554                                 Divorced
## 555                                 Divorced
## 556                                  Married
## 557                                  Married
## 558                                 Divorced
## 559                                  Married
## 560                                  Married
## 561                                  Married
## 562                                  Married
## 563                                 Divorced
## 564                                  Married
## 565                                  Married
## 566                                 Divorced
## 567                                 Divorced
## 568                                 Divorced
## 569                                 Divorced
## 570                                 Divorced
## 571                                  Married
## 572                                 Divorced
## 573                                 Divorced
## 574                                  Married
## 575                                 Divorced
## 576                                 Divorced
## 577                                  Married
## 578                                  Married
## 579                                  Married
## 580                                  Married
## 581                                  Married
## 582                                  Married
## 583                                  Married
## 584                                  Married
## 585                                  Married
## 586                                  Married
## 587                                  Married
## 588                                  Married
## 589                                  Married
## 590                                  Married
## 591                                  Married
## 592                                 Divorced
## 593                                  Married
## 594                                 Divorced
## 595                                  Married
## 596                                 Divorced
## 597                                  Married
## 598                                  Married
## 599                                  Married
## 600                                 Divorced
## 601                                 Divorced
## 602                                 Divorced
## 603                                  Married
## 604                                  Married
## 605                                  Married
## 606                                  Married
## 607                                  Married
## 608                                  Married
## 609                                  Married
## 610                                 Divorced
## 611                                  Married
## 612                                  Married
## 613                                  Married
## 614                                  Married
## 615                                  Married
## 616                                  Married
## 617                                  Married
## 618                                 Divorced
## 619                                 Divorced
## 620                                  Married
## 621                                  Married
## 622                                  Married
## 623                                  Married
## 624                                 Divorced
## 625                                  Married
## 626                                  Married
## 627                                 Divorced
## 628                                  Married
## 629                                  Married
## 630                                 Divorced
## 631                                  Married
## 632                                  Married
## 633                                  Married
## 634                                  Married
## 635                                  Married
## 636                                 Divorced
## 637                                  Married
## 638                                  Married
## 639                                 Divorced
## 640                                  Married
## 641                                  Married
## 642                                  Married
## 643                                  Married
## 644                                  Married
## 645                                  Married
## 646                                 Divorced
## 647                                  Married
## 648                                  Married
## 649                                  Married
## 650                                  Married
## 651                                 Divorced
## 652                                 Divorced
## 653                                 Divorced
## 654                                  Married
## 655                                 Divorced
## 656                                 Divorced
## 657                                  Married
## 658                                  Married
## 659                                 Divorced
## 660                                  Married
## 661                                  Married
## 662                                 Divorced
## 663                                  Married
## 664                                 Divorced
## 665                                  Married
## 666                                 Divorced
## 667                                 Divorced
## 668                                  Married
## 669                                  Married
## 670                                 Divorced
## 671                                  Married
## 672                                 Divorced
## 673                                  Married
## 674                                 Divorced
## 675                                  Married
## 676                                  Married
## 677                                  Married
## 678                                  Married
## 679                                 Divorced
## 680                                 Divorced
## 681                                  Married
## 682                                  Married
## 683                                  Married
## 684                                 Divorced
## 685                                 Divorced
## 686                                  Married
## 687                                 Divorced
## 688                                 Divorced
## 689                                 Divorced
## 690                                 Divorced
## 691                                  Married
## 692                                  Married
## 693                                  Married
## 694                                 Divorced
## 695                                 Divorced
## 696                                  Married
## 697                                  Married
## 698                                 Divorced
## 699                                 Divorced
## 700                                  Married
## 701                                  Married
## 702                                  Married
## 703                                 Divorced
## 704                                  Married
## 705                                  Married
## 706                                  Married
## 707                                  Married
## 708                                  Married
## 709                                  Married
## 710                                 Divorced
## 711                                  Married
## 712                                  Married
## 713                                 Divorced
## 714                                  Married
## 715                                 Divorced
## 716                                  Married
## 717                                  Married
## 718                                  Married
## 719                                  Married
## 720                                 Divorced
## 721                                  Married
## 722                                  Married
## 723                                 Divorced
## 724                                 Divorced
## 725                                  Married
## 726                                  Married
## 727                                  Married
## 728                                  Married
## 729                                  Married
## 730                                  Married
## 731                                 Divorced
## 732                                 Divorced
## 733                                  Married
## 734                                 Divorced
## 735                                 Divorced
## 736                                  Married
## 737                                 Divorced
## 738                                  Married
## 739                                  Married
## 740                                 Divorced
## 741                                 Divorced
## 742                                  Married
## 743                                  Married
## 744                                 Divorced
## 745                                 Divorced
## 746                                 Divorced
## 747                                 Divorced
## 748                                  Married
## 749                                  Married
## 750                                  Married
## 751                                 Divorced
## 752                                  Married
## 753                                  Married
## 754                                  Married
## 755                                  Married
## 756                                  Married
## 757                                  Married
## 758                                  Married
## 759                                  Married
## 760                                  Married
## 761                                  Married
## 762                                  Married
## 763                                  Married
## 764                                  Married
## 765                                  Married
## 766                                  Married
## 767                                  Married
## 768                                  Married
## 769                                 Divorced
## 770                                  Married
## 771                                  Married
## 772                                  Married
## 773                                  Married
## 774                                  Married
## 775                                  Married
## 776                                 Divorced
## 777                                  Married
## 778                                 Divorced
## 779                                  Married
## 780                                  Married
## 781                                  Married
## 782                                 Divorced
## 783                                 Divorced
## 784                                  Married
## 785                                 Divorced
## 786                                  Married
## 787                                  Married
## 788                                  Married
## 789                                  Married
## 790                                 Divorced
## 791                                  Married
## 792                                  Married
## 793                                  Married
## 794                                  Married
## 795                                 Divorced
## 796                                 Divorced
## 797                                  Married
## 798                                 Divorced
## 799                                 Divorced
## 800                                  Married
## 801                                  Married
## 802                                  Married
## 803                                  Married
## 804                                 Divorced
## 805                                 Divorced
## 806                                  Married
## 807                                 Divorced
## 808                                 Divorced
## 809                                 Divorced
## 810                                  Married
## 811                                 Divorced
## 812                                  Married
## 813                                  Married
## 814                                  Married
## 815                                  Married
## 816                                  Married
## 817                                  Married
## 818                                 Divorced
## 819                                  Married
## 820                                  Married
## 821                                 Divorced
## 822                                 Divorced
## 823                                  Married
## 824                                  Married
## 825                                 Divorced
## 826                                 Divorced
## 827                                 Divorced
## 828                                  Married
## 829                                  Married
## 830                                  Married
## 831                                 Divorced
## 832                                  Married
## 833                                 Divorced
## 834                                  Married
## 835                                  Married
## 836                                  Married
## 837                                 Divorced
## 838                                  Married
## 839                                 Divorced
## 840                                  Married
## 841                                 Divorced
## 842                                 Divorced
## 843                                  Married
## 844                                 Divorced
## 845                                 Divorced
## 846                                  Married
## 847                                  Married
## 848                                  Married
## 849                                 Divorced
## 850                                  Married
## 851                                  Married
## 852                                 Divorced
## 853                                  Married
## 854                                 Divorced
## 855                                 Divorced
## 856                                  Married
## 857                                 Divorced
## 858                                 Divorced
## 859                                 Divorced
## 860                                 Divorced
## 861                                 Divorced
## 862                                 Divorced
## 863                                  Married
## 864                                  Married
## 865                                  Married
## 866                                 Divorced
## 867                                  Married
## 868                                 Divorced
## 869                                  Married
## 870                                  Married
## 871                                 Divorced
## 872                                  Married
## 873                                  Married
## 874                                  Married
## 875                                  Married
## 876                                  Married
## 877                                  Married
## 878                                 Divorced
## 879                                  Married
## 880                                 Divorced
## 881                                  Married
## 882                                  Married
## 883                                  Married
## 884                                  Married
## 885                                 Divorced
## 886                                  Married
## 887                                  Married
## 888                                 Divorced
## 889                                  Married
## 890                                 Divorced
## 891                                 Divorced
## 892                                 Divorced
## 893                                  Married
## 894                                  Married
## 895                                 Divorced
## 896                                 Divorced
## 897                                  Married
## 898                                  Married
## 899                                 Divorced
## 900                                 Divorced
## 901                                  Married
## 902                                  Married
## 903                                  Married
## 904                                  Married
## 905                                  Married
## 906                                 Divorced
## 907                                  Married
## 908                                 Divorced
## 909                                  Married
## 910                                  Married
## 911                                 Divorced
## 912                                 Divorced
## 913                                 Divorced
## 914                                  Married
## 915                                  Married
## 916                                  Married
## 917                                  Married
## 918                                  Married
## 919                                 Divorced
## 920                                  Married
## 921                                  Married
## 922                                  Married
## 923                                 Divorced
## 924                                  Married
## 925                                 Divorced
## 926                                  Married
## 927                                  Married
## 928                                 Divorced
## 929                                  Married
## 930                                 Divorced
## 931                                  Married
## 932                                  Married
## 933                                  Married
## 934                                  Married
## 935                                  Married
## 936                                  Married
## 937                                  Married
## 938                                  Married
## 939                                  Married
## 940                                 Divorced
## 941                                  Married
## 942                                  Married
## 943                                  Married
## 944                                 Divorced
## 945                                  Married
## 946                                 Divorced
## 947                                  Married
## 948                                  Married
## 949                                  Married
## 950                                  Married
## 951                                  Married
## 952                                 Divorced
## 953                                 Divorced
## 954                                  Married
## 955                                  Married
## 956                                 Divorced
## 957                                  Married
## 958                                  Married
## 959                                 Divorced
## 960                                  Married
## 961                                 Divorced
## 962                                 Divorced
## 963                                  Married
## 964                                 Divorced
## 965                                 Divorced
## 966                                 Divorced
## 967                                  Married
## 968                                  Married
## 969                                  Married
## 970                                  Married
## 971                                  Married
## 972                                  Married
## 973                                 Divorced
## 974                                  Married
## 975                                  Married
## 976                                  Married
## 977                                  Married
## 978                                 Divorced
## 979                                  Married
## 980                                  Married
## 981                                  Married
## 982                                  Married
## 983                                  Married
## 984                                 Divorced
## 985                                  Married
## 986                                 Divorced
## 987                                  Married
## 988                                  Married
## 989                                  Married
## 990                                 Divorced
## 991                                 Divorced
## 992                                 Divorced
## 993                                  Married
## 994                                 Divorced
## 995                                  Married
## 996                                  Married
## 997                                  Married
## 998                                  Married
## 999                                 Divorced
## 1000                                Divorced
## 1001                                 Married
## 1002                                Divorced
## 1003                                 Married
## 1004                                Divorced
## 1005                                Divorced
## 1006                                 Married
## 1007                                 Married
## 1008                                 Married
## 1009                                Divorced
## 1010                                 Married
## 1011                                Divorced
## 1012                                 Married
## 1013                                Divorced
## 1014                                 Married
## 1015                                 Married
## 1016                                Divorced
## 1017                                Divorced
## 1018                                 Married
## 1019                                Divorced
## 1020                                 Married
## 1021                                Divorced
## 1022                                Divorced
## 1023                                Divorced
## 1024                                 Married
## 1025                                Divorced
## 1026                                 Married
## 1027                                 Married
## 1028                                Divorced
## 1029                                 Married
## 1030                                Divorced
## 1031                                 Married
## 1032                                 Married
## 1033                                 Married
## 1034                                 Married
## 1035                                 Married
## 1036                                 Married
## 1037                                Divorced
## 1038                                 Married
## 1039                                 Married
## 1040                                 Married
## 1041                                 Married
## 1042                                 Married
## 1043                                Divorced
## 1044                                 Married
## 1045                                 Married
## 1046                                Divorced
## 1047                                 Married
## 1048                                Divorced
## 1049                                 Married
## 1050                                 Married
## 1051                                 Married
## 1052                                 Married
## 1053                                Divorced
## 1054                                Divorced
## 1055                                Divorced
## 1056                                 Married
## 1057                                 Married
## 1058                                 Married
## 1059                                Divorced
## 1060                                Divorced
## 1061                                 Married
## 1062                                Divorced
## 1063                                Divorced
## 1064                                 Married
## 1065                                Divorced
## 1066                                Divorced
## 1067                                 Married
## 1068                                 Married
## 1069                                Divorced
## 1070                                 Married
## 1071                                 Married
## 1072                                Divorced
## 1073                                 Married
## 1074                                Divorced
## 1075                                 Married
## 1076                                Divorced
## 1077                                Divorced
## 1078                                Divorced
## 1079                                 Married
## 1080                                 Married
## 1081                                Divorced
## 1082                                 Married
## 1083                                Divorced
## 1084                                 Married
## 1085                                 Married
## 1086                                Divorced
## 1087                                 Married
## 1088                                Divorced
## 1089                                Divorced
## 1090                                 Married
## 1091                                 Married
## 1092                                Divorced
## 1093                                Divorced
## 1094                                Divorced
## 1095                                 Married
## 1096                                Divorced
## 1097                                 Married
## 1098                                 Married
## 1099                                Divorced
## 1100                                Divorced
## 1101                                Divorced
## 1102                                 Married
## 1103                                Divorced
## 1104                                 Married
## 1105                                Divorced
## 1106                                Divorced
## 1107                                 Married
## 1108                                 Married
## 1109                                 Married
## 1110                                Divorced
## 1111                                 Married
## 1112                                 Married
## 1113                                 Married
## 1114                                Divorced
## 1115                                 Married
## 1116                                 Married
## 1117                                 Married
## 1118                                Divorced
## 1119                                 Married
## 1120                                Divorced
## 1121                                 Married
## 1122                                 Married
## 1123                                 Married
## 1124                                 Married
## 1125                                Divorced
## 1126                                 Married
## 1127                                 Married
## 1128                                Divorced
## 1129                                 Married
## 1130                                Divorced
## 1131                                Divorced
## 1132                                Divorced
## 1133                                Divorced
## 1134                                Divorced
## 1135                                 Married
## 1136                                Divorced
## 1137                                Divorced
## 1138                                Divorced
## 1139                                 Married
## 1140                                 Married
## 1141                                 Married
## 1142                                 Married
## 1143                                 Married
## 1144                                 Married
## 1145                                 Married
## 1146                                 Married
## 1147                                 Married
## 1148                                 Married
## 1149                                 Married
## 1150                                 Married
## 1151                                Divorced
## 1152                                 Married
## 1153                                 Married
## 1154                                 Married
## 1155                                 Married
## 1156                                 Married
## 1157                                Divorced
## 1158                                 Married
## 1159                                Divorced
## 1160                                 Married
## 1161                                Divorced
## 1162                                 Married
## 1163                                 Married
## 1164                                 Married
## 1165                                 Married
## 1166                                 Married
## 1167                                Divorced
## 1168                                Divorced
## 1169                                Divorced
## 1170                                 Married
## 1171                                 Married
## 1172                                Divorced
## 1173                                 Married
## 1174                                 Married
## 1175                                 Married
## 1176                                 Married
## 1177                                 Married
## 1178                                Divorced
## 1179                                 Married
## 1180                                Divorced
## 1181                                Divorced
## 1182                                 Married
## 1183                                 Married
## 1184                                 Married
## 1185                                Divorced
## 1186                                 Married
## 1187                                Divorced
## 1188                                 Married
## 1189                                Divorced
## 1190                                 Married
## 1191                                Divorced
## 1192                                Divorced
## 1193                                 Married
## 1194                                Divorced
## 1195                                 Married
## 1196                                Divorced
## 1197                                 Married
## 1198                                 Married
## 1199                                Divorced
## 1200                                Divorced
## 1201                                 Married
## 1202                                 Married
## 1203                                 Married
## 1204                                 Married
## 1205                                Divorced
## 1206                                 Married
## 1207                                 Married
## 1208                                 Married
## 1209                                 Married
## 1210                                 Married
## 1211                                 Married
## 1212                                 Married
## 1213                                Divorced
## 1214                                 Married
## 1215                                 Married
## 1216                                 Married
## 1217                                Divorced
## 1218                                 Married
## 1219                                 Married
## 1220                                 Married
## 1221                                 Married
## 1222                                Divorced
## 1223                                 Married
## 1224                                 Married
## 1225                                 Married
## 1226                                 Married
## 1227                                 Married
## 1228                                 Married
## 1229                                Divorced
## 1230                                 Married
## 1231                                 Married
## 1232                                 Married
## 1233                                 Married
## 1234                                 Married
## 1235                                Divorced
## 1236                                 Married
## 1237                                 Married
## 1238                                 Married
## 1239                                 Married
## 1240                                Divorced
## 1241                                 Married
## 1242                                 Married
## 1243                                 Married
## 1244                                 Married
## 1245                                 Married
## 1246                                Divorced
## 1247                                 Married
## 1248                                 Married
## 1249                                Divorced
## 1250                                 Married
## 1251                                 Married
## 1252                                Divorced
## 1253                                Divorced
## 1254                                 Married
## 1255                                 Married
## 1256                                Divorced
## 1257                                 Married
## 1258                                 Married
## 1259                                 Married
## 1260                                 Married
## 1261                                 Married
## 1262                                 Married
## 1263                                Divorced
## 1264                                 Married
## 1265                                Divorced
## 1266                                 Married
## 1267                                 Married
## 1268                                 Married
## 1269                                Divorced
## 1270                                 Married
## 1271                                 Married
## 1272                                 Married
## 1273                                 Married
## 1274                                Divorced
## 1275                                 Married
## 1276                                 Married
## 1277                                Divorced
## 1278                                 Married
## 1279                                 Married
## 1280                                 Married
## 1281                                 Married
## 1282                                 Married
## 1283                                 Married
## 1284                                 Married
## 1285                                 Married
## 1286                                Divorced
## 1287                                 Married
## 1288                                 Married
## 1289                                 Married
## 1290                                 Married
## 1291                                Divorced
## 1292                                Divorced
## 1293                                 Married
## 1294                                 Married
## 1295                                Divorced
## 1296                                 Married
## 1297                                Divorced
## 1298                                 Married
## 1299                                Divorced
## 1300                                Divorced
## 1301                                Divorced
## 1302                                 Married
## 1303                                 Married
## 1304                                Divorced
## 1305                                 Married
## 1306                                 Married
## 1307                                Divorced
## 1308                                Divorced
## 1309                                Divorced
## 1310                                Divorced
## 1311                                Divorced
## 1312                                 Married
## 1313                                 Married
## 1314                                Divorced
## 1315                                Divorced
## 1316                                 Married
## 1317                                 Married
## 1318                                Divorced
## 1319                                Divorced
## 1320                                 Married
## 1321                                Divorced
## 1322                                Divorced
## 1323                                 Married
## 1324                                Divorced
## 1325                                Divorced
## 1326                                Divorced
## 1327                                 Married
## 1328                                 Married
## 1329                                 Married
## 1330                                Divorced
## 1331                                 Married
## 1332                                 Married
## 1333                                 Married
## 1334                                 Married
## 1335                                 Married
## 1336                                 Married
## 1337                                 Married
## 1338                                Divorced
## 1339                                 Married
## 1340                                 Married
## 1341                                 Married
## 1342                                 Married
## 1343                                 Married
## 1344                                 Married
## 1345                                 Married
## 1346                                Divorced
## 1347                                 Married
## 1348                                 Married
## 1349                                 Married
## 1350                                Divorced
## 1351                                Divorced
## 1352                                Divorced
## 1353                                 Married
## 1354                                Divorced
## 1355                                 Married
## 1356                                Divorced
## 1357                                Divorced
## 1358                                 Married
## 1359                                Divorced
## 1360                                Divorced
## 1361                                 Married
## 1362                                Divorced
## 1363                                Divorced
## 1364                                 Married
## 1365                                Divorced
## 1366                                Divorced
## 1367                                Divorced
## 1368                                 Married
## 1369                                 Married
## 1370                                 Married
## 1371                                Divorced
## 1372                                 Married
## 1373                                Divorced
## 1374                                 Married
## 1375                                Divorced
## 1376                                Divorced
## 1377                                 Married
## 1378                                 Married
## 1379                                 Married
## 1380                                 Married
## 1381                                 Married
## 1382                                 Married
## 1383                                Divorced
## 1384                                 Married
## 1385                                Divorced
## 1386                                 Married
## 1387                                Divorced
## 1388                                 Married
## 1389                                Divorced
## 1390                                Divorced
## 1391                                 Married
## 1392                                 Married
## 1393                                Divorced
## 1394                                Divorced
## 1395                                Divorced
## 1396                                Divorced
## 1397                                 Married
## 1398                                 Married
## 1399                                 Married
## 1400                                 Married
## 1401                                 Married
## 1402                                 Married
## 1403                                 Married
## 1404                                 Married
## 1405                                Divorced
## 1406                                 Married
## 1407                                 Married
## 1408                                 Married
## 1409                                 Married
## 1410                                 Married
## 1411                                 Married
## 1412                                 Married
## 1413                                 Married
## 1414                                Divorced
## 1415                                 Married
## 1416                                 Married
## 1417                                 Married
## 1418                                 Married
## 1419                                Divorced
## 1420                                 Married
## 1421                                 Married
## 1422                                Divorced
## 1423                                 Married
## 1424                                 Married
## 1425                                Divorced
## 1426                                 Married
## 1427                                 Married
## 1428                                 Married
## 1429                                 Married
## 1430                                Divorced
## 1431                                 Married
## 1432                                Divorced
## 1433                                 Married
## 1434                                Divorced
## 1435                                Divorced
## 1436                                Divorced
## 1437                                 Married
## 1438                                 Married
## 1439                                Divorced
## 1440                                Divorced
## 1441                                 Married
## 1442                                Divorced
## 1443                                Divorced
## 1444                                Divorced
## 1445                                 Married
## 1446                                 Married
## 1447                                 Married
## 1448                                 Married
## 1449                                 Married
## 1450                                 Married
## 1451                                 Married
## 1452                                 Married
## 1453                                 Married
## 1454                                 Married
## 1455                                 Married
## 1456                                 Married
## 1457                                 Married
## 1458                                 Married
## 1459                                 Married
## 1460                                Divorced
## 1461                                Divorced
## 1462                                 Married
## 1463                                 Married
## 1464                                 Married
## 1465                                Divorced
## 1466                                 Married
## 1467                                 Married
## 1468                                Divorced
## 1469                                 Married
## 1470                                Divorced
## 1471                                 Married
## 1472                                 Married
## 1473                                 Married
## 1474                                Divorced
## 1475                                 Married
## 1476                                Divorced
## 1477                                Divorced
## 1478                                 Married
## 1479                                Divorced
## 1480                                 Married
## 1481                                Divorced
## 1482                                 Married
## 1483                                Divorced
## 1484                                 Married
## 1485                                 Married
## 1486                                Divorced
## 1487                                Divorced
## 1488                                 Married
## 1489                                Divorced
## 1490                                Divorced
## 1491                                 Married
## 1492                                 Married
## 1493                                 Married
## 1494                                 Married
## 1495                                 Married
## 1496                                Divorced
## 1497                                Divorced
## 1498                                Divorced
## 1499                                 Married
## 1500                                 Married
## 1501                                 Married
## 1502                                Divorced
## 1503                                Divorced
## 1504                                Divorced
## 1505                                Divorced
## 1506                                 Married
## 1507                                 Married
## 1508                                 Married
## 1509                                Divorced
## 1510                                 Married
## 1511                                 Married
## 1512                                Divorced
## 1513                                Divorced
## 1514                                Divorced
## 1515                                 Married
## 1516                                 Married
## 1517                                 Married
## 1518                                 Married
## 1519                                Divorced
## 1520                                 Married
## 1521                                 Married
## 1522                                 Married
## 1523                                 Married
## 1524                                 Married
## 1525                                 Married
## 1526                                 Married
## 1527                                 Married
## 1528                                 Married
## 1529                                Divorced
## 1530                                 Married
## 1531                                Divorced
## 1532                                Divorced
## 1533                                 Married
## 1534                                Divorced
## 1535                                 Married
## 1536                                 Married
## 1537                                 Married
## 1538                                 Married
## 1539                                 Married
## 1540                                Divorced
## 1541                                 Married
## 1542                                 Married
## 1543                                Divorced
## 1544                                 Married
## 1545                                Divorced
## 1546                                 Married
## 1547                                 Married
## 1548                                Divorced
## 1549                                Divorced
## 1550                                Divorced
## 1551                                Divorced
## 1552                                Divorced
## 1553                                Divorced
## 1554                                Divorced
## 1555                                Divorced
## 1556                                 Married
## 1557                                Divorced
## 1558                                 Married
## 1559                                 Married
## 1560                                Divorced
## 1561                                Divorced
## 1562                                 Married
## 1563                                Divorced
## 1564                                 Married
## 1565                                 Married
## 1566                                 Married
## 1567                                 Married
## 1568                                Divorced
## 1569                                 Married
## 1570                                 Married
## 1571                                 Married
## 1572                                 Married
## 1573                                 Married
## 1574                                Divorced
## 1575                                 Married
## 1576                                 Married
## 1577                                Divorced
## 1578                                Divorced
## 1579                                Divorced
## 1580                                Divorced
## 1581                                 Married
## 1582                                 Married
## 1583                                 Married
## 1584                                 Married
## 1585                                 Married
## 1586                                 Married
## 1587                                 Married
## 1588                                 Married
## 1589                                 Married
## 1590                                Divorced
## 1591                                 Married
## 1592                                 Married
## 1593                                 Married
## 1594                                 Married
## 1595                                 Married
## 1596                                 Married
## 1597                                Divorced
## 1598                                Divorced
## 1599                                 Married
## 1600                                 Married
## 1601                                 Married
## 1602                                 Married
## 1603                                 Married
## 1604                                Divorced
## 1605                                 Married
## 1606                                 Married
## 1607                                 Married
## 1608                                Divorced
## 1609                                 Married
## 1610                                Divorced
## 1611                                Divorced
## 1612                                Divorced
## 1613                                 Married
## 1614                                 Married
## 1615                                 Married
## 1616                                Divorced
## 1617                                Divorced
## 1618                                Divorced
## 1619                                 Married
## 1620                                 Married
## 1621                                 Married
## 1622                                Divorced
## 1623                                 Married
## 1624                                 Married
## 1625                                 Married
## 1626                                 Married
## 1627                                Divorced
## 1628                                Divorced
## 1629                                 Married
## 1630                                 Married
## 1631                                 Married
## 1632                                 Married
## 1633                                 Married
## 1634                                 Married
## 1635                                 Married
## 1636                                 Married
## 1637                                 Married
## 1638                                 Married
## 1639                                 Married
## 1640                                 Married
## 1641                                 Married
## 1642                                 Married
## 1643                                 Married
## 1644                                Divorced
## 1645                                Divorced
## 1646                                Divorced
## 1647                                 Married
## 1648                                 Married
## 1649                                 Married
## 1650                                 Married
## 1651                                 Married
## 1652                                 Married
## 1653                                Divorced
## 1654                                 Married
## 1655                                Divorced
## 1656                                 Married
## 1657                                 Married
## 1658                                 Married
## 1659                                 Married
## 1660                                 Married
## 1661                                 Married
## 1662                                Divorced
## 1663                                 Married
## 1664                                 Married
## 1665                                Divorced
## 1666                                 Married
## 1667                                 Married
## 1668                                Divorced
## 1669                                 Married
## 1670                                 Married
## 1671                                Divorced
## 1672                                Divorced
## 1673                                Divorced
## 1674                                 Married
## 1675                                 Married
## 1676                                 Married
## 1677                                 Married
## 1678                                Divorced
## 1679                                Divorced
## 1680                                 Married
## 1681                                 Married
## 1682                                Divorced
## 1683                                 Married
## 1684                                 Married
## 1685                                 Married
## 1686                                 Married
## 1687                                 Married
## 1688                                 Married
## 1689                                 Married
## 1690                                 Married
## 1691                                 Married
## 1692                                Divorced
## 1693                                 Married
## 1694                                 Married
## 1695                                Divorced
## 1696                                 Married
## 1697                                Divorced
## 1698                                Divorced
## 1699                                 Married
## 1700                                 Married
## 1701                                Divorced
## 1702                                 Married
## 1703                                 Married
## 1704                                 Married
## 1705                                 Married
## 1706                                 Married
## 1707                                 Married
## 1708                                 Married
## 1709                                 Married
## 1710                                 Married
## 1711                                Divorced
## 1712                                 Married
## 1713                                 Married
## 1714                                Divorced
## 1715                                 Married
## 1716                                 Married
## 1717                                Divorced
## 1718                                Divorced
## 1719                                 Married
## 1720                                Divorced
## 1721                                 Married
## 1722                                Divorced
## 1723                                 Married
## 1724                                Divorced
## 1725                                 Married
## 1726                                 Married
## 1727                                 Married
## 1728                                 Married
## 1729                                Divorced
## 1730                                 Married
## 1731                                Divorced
## 1732                                Divorced
## 1733                                 Married
## 1734                                 Married
## 1735                                 Married
## 1736                                Divorced
## 1737                                 Married
## 1738                                Divorced
## 1739                                 Married
## 1740                                Divorced
## 1741                                 Married
## 1742                                Divorced
## 1743                                 Married
## 1744                                Divorced
## 1745                                 Married
## 1746                                Divorced
## 1747                                 Married
## 1748                                Divorced
## 1749                                 Married
## 1750                                 Married
## 1751                                 Married
## 1752                                 Married
## 1753                                Divorced
## 1754                                 Married
## 1755                                 Married
## 1756                                Divorced
## 1757                                 Married
## 1758                                Divorced
## 1759                                Divorced
## 1760                                 Married
## 1761                                Divorced
## 1762                                 Married
## 1763                                Divorced
## 1764                                 Married
## 1765                                 Married
## 1766                                Divorced
## 1767                                Divorced
## 1768                                 Married
## 1769                                Divorced
## 1770                                 Married
## 1771                                 Married
## 1772                                Divorced
## 1773                                 Married
## 1774                                 Married
## 1775                                 Married
## 1776                                 Married
## 1777                                 Married
## 1778                                 Married
## 1779                                 Married
## 1780                                 Married
## 1781                                 Married
## 1782                                Divorced
## 1783                                Divorced
## 1784                                 Married
## 1785                                Divorced
## 1786                                Divorced
## 1787                                 Married
## 1788                                 Married
## 1789                                 Married
## 1790                                Divorced
## 1791                                 Married
## 1792                                Divorced
## 1793                                Divorced
## 1794                                 Married
## 1795                                 Married
## 1796                                Divorced
## 1797                                 Married
## 1798                                 Married
## 1799                                 Married
## 1800                                 Married
## 1801                                Divorced
## 1802                                Divorced
## 1803                                Divorced
## 1804                                Divorced
## 1805                                 Married
## 1806                                Divorced
## 1807                                 Married
## 1808                                 Married
## 1809                                 Married
## 1810                                Divorced
## 1811                                Divorced
## 1812                                 Married
## 1813                                 Married
## 1814                                 Married
## 1815                                Divorced
## 1816                                 Married
## 1817                                 Married
## 1818                                Divorced
## 1819                                 Married
## 1820                                 Married
## 1821                                 Married
## 1822                                 Married
## 1823                                Divorced
## 1824                                Divorced
## 1825                                Divorced
## 1826                                 Married
## 1827                                Divorced
## 1828                                Divorced
## 1829                                 Married
## 1830                                 Married
## 1831                                 Married
## 1832                                Divorced
## 1833                                Divorced
## 1834                                 Married
## 1835                                 Married
## 1836                                 Married
## 1837                                Divorced
## 1838                                 Married
## 1839                                 Married
## 1840                                 Married
## 1841                                 Married
## 1842                                 Married
## 1843                                Divorced
## 1844                                Divorced
## 1845                                 Married
## 1846                                 Married
## 1847                                 Married
## 1848                                 Married
## 1849                                 Married
## 1850                                 Married
## 1851                                Divorced
## 1852                                 Married
## 1853                                 Married
## 1854                                 Married
## 1855                                Divorced
## 1856                                 Married
## 1857                                 Married
## 1858                                 Married
## 1859                                 Married
## 1860                                 Married
## 1861                                 Married
## 1862                                Divorced
## 1863                                Divorced
## 1864                                 Married
## 1865                                 Married
## 1866                                 Married
## 1867                                Divorced
## 1868                                 Married
## 1869                                 Married
## 1870                                Divorced
## 1871                                Divorced
## 1872                                 Married
## 1873                                 Married
## 1874                                 Married
## 1875                                Divorced
## 1876                                Divorced
## 1877                                 Married
## 1878                                Divorced
## 1879                                 Married
## 1880                                Divorced
## 1881                                 Married
## 1882                                 Married
## 1883                                 Married
## 1884                                 Married
## 1885                                 Married
## 1886                                 Married
## 1887                                 Married
## 1888                                Divorced
## 1889                                 Married
## 1890                                 Married
## 1891                                Divorced
## 1892                                 Married
## 1893                                Divorced
## 1894                                 Married
## 1895                                 Married
## 1896                                 Married
## 1897                                 Married
## 1898                                 Married
## 1899                                Divorced
## 1900                                 Married
## 1901                                 Married
## 1902                                 Married
## 1903                                 Married
## 1904                                Divorced
## 1905                                Divorced
## 1906                                Divorced
## 1907                                Divorced
## 1908                                Divorced
## 1909                                Divorced
## 1910                                Divorced
## 1911                                 Married
## 1912                                 Married
## 1913                                Divorced
## 1914                                Divorced
## 1915                                 Married
## 1916                                 Married
## 1917                                 Married
## 1918                                Divorced
## 1919                                 Married
## 1920                                 Married
## 1921                                Divorced
## 1922                                 Married
## 1923                                 Married
## 1924                                 Married
## 1925                                 Married
## 1926                                Divorced
## 1927                                Divorced
## 1928                                 Married
## 1929                                Divorced
## 1930                                 Married
## 1931                                 Married
## 1932                                 Married
## 1933                                 Married
## 1934                                 Married
## 1935                                 Married
## 1936                                Divorced
## 1937                                 Married
## 1938                                Divorced
## 1939                                 Married
## 1940                                Divorced
## 1941                                Divorced
## 1942                                 Married
## 1943                                Divorced
## 1944                                 Married
## 1945                                 Married
## 1946                                 Married
## 1947                                 Married
## 1948                                 Married
## 1949                                 Married
## 1950                                 Married
## 1951                                Divorced
## 1952                                Divorced
## 1953                                Divorced
## 1954                                 Married
## 1955                                Divorced
## 1956                                 Married
## 1957                                 Married
## 1958                                Divorced
## 1959                                Divorced
## 1960                                 Married
## 1961                                 Married
## 1962                                Divorced
## 1963                                 Married
## 1964                                 Married
## 1965                                Divorced
## 1966                                Divorced
## 1967                                Divorced
## 1968                                 Married
## 1969                                Divorced
## 1970                                Divorced
## 1971                                Divorced
## 1972                                Divorced
## 1973                                 Married
## 1974                                Divorced
## 1975                                 Married
## 1976                                 Married
## 1977                                 Married
## 1978                                Divorced
## 1979                                 Married
## 1980                                 Married
## 1981                                 Married
## 1982                                 Married
## 1983                                 Married
## 1984                                 Married
## 1985                                Divorced
## 1986                                 Married
## 1987                                 Married
## 1988                                 Married
## 1989                                 Married
## 1990                                 Married
## 1991                                 Married
## 1992                                Divorced
## 1993                                 Married
## 1994                                Divorced
## 1995                                 Married
## 1996                                 Married
## 1997                                Divorced
## 1998                                 Married
## 1999                                 Married
## 2000                                 Married
## 2001                                 Married
## 2002                                Divorced
## 2003                                 Married
## 2004                                 Married
## 2005                                 Married
## 2006                                Divorced
## 2007                                Divorced
## 2008                                 Married
## 2009                                 Married
## 2010                                 Married
## 2011                                 Married
## 2012                                Divorced
## 2013                                 Married
## 2014                                 Married
## 2015                                 Married
## 2016                                Divorced
## 2017                                 Married
## 2018                                 Married
## 2019                                Divorced
## 2020                                Divorced
## 2021                                 Married
## 2022                                 Married
## 2023                                 Married
## 2024                                 Married
## 2025                                 Married
## 2026                                 Married
## 2027                                 Married
## 2028                                 Married
## 2029                                Divorced
## 2030                                 Married
## 2031                                 Married
## 2032                                Divorced
## 2033                                 Married
## 2034                                 Married
## 2035                                Divorced
## 2036                                 Married
## 2037                                 Married
## 2038                                 Married
## 2039                                 Married
## 2040                                 Married
## 2041                                 Married
## 2042                                 Married
## 2043                                 Married
## 2044                                 Married
## 2045                                Divorced
## 2046                                 Married
## 2047                                 Married
## 2048                                Divorced
## 2049                                Divorced
## 2050                                Divorced
## 2051                                 Married
## 2052                                Divorced
## 2053                                Divorced
## 2054                                Divorced
## 2055                                 Married
## 2056                                Divorced
## 2057                                 Married
## 2058                                 Married
## 2059                                Divorced
## 2060                                 Married
## 2061                                 Married
## 2062                                Divorced
## 2063                                 Married
## 2064                                 Married
## 2065                                 Married
## 2066                                Divorced
## 2067                                Divorced
## 2068                                Divorced
## 2069                                Divorced
## 2070                                 Married
## 2071                                 Married
## 2072                                Divorced
## 2073                                Divorced
## 2074                                Divorced
## 2075                                 Married
## 2076                                Divorced
## 2077                                 Married
## 2078                                 Married
## 2079                                 Married
## 2080                                Divorced
## 2081                                Divorced
## 2082                                 Married
## 2083                                Divorced
## 2084                                 Married
## 2085                                 Married
## 2086                                 Married
## 2087                                 Married
## 2088                                Divorced
## 2089                                Divorced
## 2090                                 Married
## 2091                                Divorced
## 2092                                 Married
## 2093                                 Married
## 2094                                 Married
## 2095                                 Married
## 2096                                Divorced
## 2097                                 Married
## 2098                                 Married
## 2099                                Divorced
## 2100                                Divorced
## 2101                                 Married
## 2102                                 Married
## 2103                                 Married
## 2104                                 Married
## 2105                                 Married
## 2106                                 Married
## 2107                                Divorced
## 2108                                 Married
## 2109                                 Married
## 2110                                Divorced
## 2111                                 Married
## 2112                                 Married
## 2113                                Divorced
## 2114                                 Married
## 2115                                 Married
## 2116                                 Married
## 2117                                 Married
## 2118                                 Married
## 2119                                 Married
## 2120                                Divorced
## 2121                                 Married
## 2122                                Divorced
## 2123                                Divorced
## 2124                                Divorced
## 2125                                Divorced
## 2126                                Divorced
## 2127                                 Married
## 2128                                 Married
## 2129                                 Married
## 2130                                Divorced
## 2131                                Divorced
## 2132                                 Married
## 2133                                 Married
## 2134                                 Married
## 2135                                 Married
## 2136                                Divorced
## 2137                                Divorced
## 2138                                 Married
## 2139                                 Married
## 2140                                 Married
## 2141                                 Married
## 2142                                 Married
## 2143                                 Married
## 2144                                 Married
## 2145                                Divorced
## 2146                                Divorced
## 2147                                Divorced
## 2148                                Divorced
## 2149                                Divorced
## 2150                                 Married
## 2151                                 Married
## 2152                                 Married
## 2153                                Divorced
## 2154                                 Married
## 2155                                 Married
## 2156                                 Married
## 2157                                 Married
## 2158                                 Married
## 2159                                Divorced
## 2160                                 Married
## 2161                                 Married
## 2162                                Divorced
## 2163                                Divorced
## 2164                                 Married
## 2165                                 Married
## 2166                                 Married
## 2167                                Divorced
## 2168                                Divorced
## 2169                                 Married
## 2170                                 Married
## 2171                                Divorced
## 2172                                 Married
## 2173                                Divorced
## 2174                                 Married
## 2175                                 Married
## 2176                                Divorced
## 2177                                Divorced
## 2178                                 Married
## 2179                                 Married
## 2180                                 Married
## 2181                                Divorced
## 2182                                Divorced
## 2183                                 Married
## 2184                                 Married
## 2185                                Divorced
## 2186                                 Married
## 2187                                 Married
## 2188                                 Married
## 2189                                 Married
## 2190                                Divorced
## 2191                                Divorced
## 2192                                Divorced
## 2193                                Divorced
## 2194                                 Married
## 2195                                Divorced
## 2196                                 Married
## 2197                                 Married
## 2198                                Divorced
## 2199                                Divorced
## 2200                                 Married
## 2201                                Divorced
## 2202                                Divorced
## 2203                                Divorced
## 2204                                Divorced
## 2205                                 Married
## 2206                                 Married
## 2207                                 Married
## 2208                                 Married
## 2209                                 Married
## 2210                                Divorced
## 2211                                 Married
## 2212                                Divorced
## 2213                                 Married
## 2214                                Divorced
## 2215                                Divorced
## 2216                                 Married
## 2217                                 Married
## 2218                                 Married
## 2219                                Divorced
## 2220                                 Married
## 2221                                 Married
## 2222                                 Married
## 2223                                Divorced
## 2224                                 Married
## 2225                                 Married
## 2226                                 Married
## 2227                                 Married
## 2228                                Divorced
## 2229                                Divorced
## 2230                                 Married
## 2231                                 Married
## 2232                                Divorced
## 2233                                 Married
## 2234                                 Married
## 2235                                Divorced
## 2236                                Divorced
## 2237                                Divorced
## 2238                                Divorced
## 2239                                Divorced
## 2240                                 Married
## 2241                                Divorced
## 2242                                 Married
## 2243                                 Married
## 2244                                 Married
## 2245                                Divorced
## 2246                                Divorced
## 2247                                 Married
## 2248                                Divorced
## 2249                                Divorced
## 2250                                 Married
## 2251                                 Married
## 2252                                Divorced
## 2253                                Divorced
## 2254                                Divorced
## 2255                                 Married
## 2256                                 Married
## 2257                                 Married
## 2258                                Divorced
## 2259                                Divorced
## 2260                                Divorced
## 2261                                 Married
## 2262                                 Married
## 2263                                 Married
## 2264                                Divorced
## 2265                                Divorced
## 2266                                 Married
## 2267                                 Married
## 2268                                Divorced
## 2269                                Divorced
## 2270                                 Married
## 2271                                Divorced
## 2272                                Divorced
##      if_else(Q3 == 3, "Widowed", "Single")
## 1                                  Widowed
## 2                                   Single
## 3                                   Single
## 4                                   Single
## 5                                   Single
## 6                                   Single
## 7                                   Single
## 8                                   Single
## 9                                  Widowed
## 10                                  Single
## 11                                  Single
## 12                                  Single
## 13                                  Single
## 14                                  Single
## 15                                  Single
## 16                                  Single
## 17                                  Single
## 18                                  Single
## 19                                  Single
## 20                                 Widowed
## 21                                  Single
## 22                                  Single
## 23                                  Single
## 24                                  Single
## 25                                  Single
## 26                                  Single
## 27                                  Single
## 28                                  Single
## 29                                  Single
## 30                                  Single
## 31                                  Single
## 32                                  Single
## 33                                  Single
## 34                                  Single
## 35                                  Single
## 36                                  Single
## 37                                  Single
## 38                                  Single
## 39                                  Single
## 40                                  Single
## 41                                  Single
## 42                                  Single
## 43                                  Single
## 44                                  Single
## 45                                  Single
## 46                                  Single
## 47                                  Single
## 48                                  Single
## 49                                  Single
## 50                                  Single
## 51                                  Single
## 52                                  Single
## 53                                  Single
## 54                                  Single
## 55                                  Single
## 56                                  Single
## 57                                  Single
## 58                                  Single
## 59                                  Single
## 60                                  Single
## 61                                  Single
## 62                                  Single
## 63                                  Single
## 64                                  Single
## 65                                  Single
## 66                                  Single
## 67                                  Single
## 68                                  Single
## 69                                  Single
## 70                                  Single
## 71                                  Single
## 72                                  Single
## 73                                  Single
## 74                                  Single
## 75                                  Single
## 76                                  Single
## 77                                  Single
## 78                                  Single
## 79                                  Single
## 80                                  Single
## 81                                  Single
## 82                                  Single
## 83                                  Single
## 84                                  Single
## 85                                  Single
## 86                                  Single
## 87                                  Single
## 88                                  Single
## 89                                  Single
## 90                                  Single
## 91                                  Single
## 92                                  Single
## 93                                  Single
## 94                                  Single
## 95                                  Single
## 96                                  Single
## 97                                  Single
## 98                                  Single
## 99                                  Single
## 100                                 Single
## 101                                 Single
## 102                                Widowed
## 103                                 Single
## 104                                 Single
## 105                                 Single
## 106                                 Single
## 107                                 Single
## 108                                 Single
## 109                                 Single
## 110                                 Single
## 111                                 Single
## 112                                 Single
## 113                                Widowed
## 114                                Widowed
## 115                                 Single
## 116                                Widowed
## 117                                 Single
## 118                                 Single
## 119                                 Single
## 120                                 Single
## 121                                 Single
## 122                                 Single
## 123                                 Single
## 124                                 Single
## 125                                 Single
## 126                                 Single
## 127                                 Single
## 128                                 Single
## 129                                 Single
## 130                                 Single
## 131                                 Single
## 132                                 Single
## 133                                Widowed
## 134                                Widowed
## 135                                 Single
## 136                                 Single
## 137                                 Single
## 138                                 Single
## 139                                 Single
## 140                                 Single
## 141                                 Single
## 142                                 Single
## 143                                 Single
## 144                                 Single
## 145                                 Single
## 146                                 Single
## 147                                 Single
## 148                                 Single
## 149                                 Single
## 150                                Widowed
## 151                                 Single
## 152                                 Single
## 153                                 Single
## 154                                 Single
## 155                                 Single
## 156                                 Single
## 157                                 Single
## 158                                 Single
## 159                                 Single
## 160                                 Single
## 161                                 Single
## 162                                 Single
## 163                                 Single
## 164                                 Single
## 165                                 Single
## 166                                 Single
## 167                                 Single
## 168                                 Single
## 169                                 Single
## 170                                 Single
## 171                                 Single
## 172                                 Single
## 173                                 Single
## 174                                 Single
## 175                                 Single
## 176                                 Single
## 177                                 Single
## 178                                 Single
## 179                                 Single
## 180                                 Single
## 181                                 Single
## 182                                 Single
## 183                                 Single
## 184                                 Single
## 185                                 Single
## 186                                 Single
## 187                                 Single
## 188                                 Single
## 189                                 Single
## 190                                 Single
## 191                                 Single
## 192                                 Single
## 193                                 Single
## 194                                 Single
## 195                                 Single
## 196                                 Single
## 197                                 Single
## 198                                 Single
## 199                                 Single
## 200                                Widowed
## 201                                 Single
## 202                                 Single
## 203                                 Single
## 204                                 Single
## 205                                Widowed
## 206                                 Single
## 207                                 Single
## 208                                 Single
## 209                                 Single
## 210                                 Single
## 211                                 Single
## 212                                 Single
## 213                                 Single
## 214                                 Single
## 215                                 Single
## 216                                 Single
## 217                                 Single
## 218                                 Single
## 219                                 Single
## 220                                 Single
## 221                                 Single
## 222                                 Single
## 223                                 Single
## 224                                Widowed
## 225                                 Single
## 226                                 Single
## 227                                 Single
## 228                                 Single
## 229                                 Single
## 230                                 Single
## 231                                 Single
## 232                                Widowed
## 233                                 Single
## 234                                 Single
## 235                                Widowed
## 236                                 Single
## 237                                 Single
## 238                                 Single
## 239                                 Single
## 240                                 Single
## 241                                 Single
## 242                                 Single
## 243                                 Single
## 244                                 Single
## 245                                 Single
## 246                                 Single
## 247                                 Single
## 248                                 Single
## 249                                Widowed
## 250                                Widowed
## 251                                 Single
## 252                                 Single
## 253                                 Single
## 254                                Widowed
## 255                                 Single
## 256                                 Single
## 257                                 Single
## 258                                 Single
## 259                                 Single
## 260                                 Single
## 261                                 Single
## 262                                 Single
## 263                                 Single
## 264                                 Single
## 265                                 Single
## 266                                 Single
## 267                                 Single
## 268                                 Single
## 269                                 Single
## 270                                 Single
## 271                                 Single
## 272                                 Single
## 273                                 Single
## 274                                Widowed
## 275                                 Single
## 276                                 Single
## 277                                 Single
## 278                                Widowed
## 279                                 Single
## 280                                 Single
## 281                                 Single
## 282                                 Single
## 283                                 Single
## 284                                 Single
## 285                                 Single
## 286                                 Single
## 287                                 Single
## 288                                 Single
## 289                                 Single
## 290                                 Single
## 291                                 Single
## 292                                 Single
## 293                                 Single
## 294                                 Single
## 295                                Widowed
## 296                                 Single
## 297                                 Single
## 298                                 Single
## 299                                 Single
## 300                                 Single
## 301                                 Single
## 302                                 Single
## 303                                 Single
## 304                                Widowed
## 305                                 Single
## 306                                 Single
## 307                                 Single
## 308                                Widowed
## 309                                 Single
## 310                                 Single
## 311                                 Single
## 312                                 Single
## 313                                 Single
## 314                                 Single
## 315                                 Single
## 316                                 Single
## 317                                 Single
## 318                                 Single
## 319                                 Single
## 320                                 Single
## 321                                 Single
## 322                                 Single
## 323                                 Single
## 324                                 Single
## 325                                 Single
## 326                                 Single
## 327                                 Single
## 328                                Widowed
## 329                                 Single
## 330                                 Single
## 331                                 Single
## 332                                 Single
## 333                                 Single
## 334                                 Single
## 335                                 Single
## 336                                 Single
## 337                                 Single
## 338                                 Single
## 339                                 Single
## 340                                 Single
## 341                                 Single
## 342                                 Single
## 343                                 Single
## 344                                 Single
## 345                                 Single
## 346                                 Single
## 347                                Widowed
## 348                                Widowed
## 349                                 Single
## 350                                Widowed
## 351                                 Single
## 352                                 Single
## 353                                 Single
## 354                                 Single
## 355                                 Single
## 356                                 Single
## 357                                Widowed
## 358                                 Single
## 359                                 Single
## 360                                 Single
## 361                                 Single
## 362                                 Single
## 363                                 Single
## 364                                Widowed
## 365                                 Single
## 366                                 Single
## 367                                 Single
## 368                                 Single
## 369                                 Single
## 370                                 Single
## 371                                 Single
## 372                                 Single
## 373                                 Single
## 374                                 Single
## 375                                 Single
## 376                                 Single
## 377                                 Single
## 378                                 Single
## 379                                 Single
## 380                                 Single
## 381                                 Single
## 382                                 Single
## 383                                 Single
## 384                                 Single
## 385                                 Single
## 386                                 Single
## 387                                 Single
## 388                                 Single
## 389                                 Single
## 390                                 Single
## 391                                 Single
## 392                                 Single
## 393                                 Single
## 394                                 Single
## 395                                 Single
## 396                                 Single
## 397                                 Single
## 398                                 Single
## 399                                 Single
## 400                                 Single
## 401                                 Single
## 402                                 Single
## 403                                 Single
## 404                                 Single
## 405                                 Single
## 406                                 Single
## 407                                 Single
## 408                                 Single
## 409                                 Single
## 410                                 Single
## 411                                Widowed
## 412                                Widowed
## 413                                 Single
## 414                                 Single
## 415                                 Single
## 416                                 Single
## 417                                Widowed
## 418                                 Single
## 419                                 Single
## 420                                 Single
## 421                                 Single
## 422                                 Single
## 423                                 Single
## 424                                 Single
## 425                                 Single
## 426                                 Single
## 427                                Widowed
## 428                                 Single
## 429                                 Single
## 430                                 Single
## 431                                 Single
## 432                                 Single
## 433                                 Single
## 434                                Widowed
## 435                                 Single
## 436                                 Single
## 437                                 Single
## 438                                 Single
## 439                                 Single
## 440                                 Single
## 441                                 Single
## 442                                 Single
## 443                                 Single
## 444                                Widowed
## 445                                 Single
## 446                                 Single
## 447                                 Single
## 448                                 Single
## 449                                 Single
## 450                                 Single
## 451                                 Single
## 452                                 Single
## 453                                 Single
## 454                                 Single
## 455                                 Single
## 456                                 Single
## 457                                 Single
## 458                                Widowed
## 459                                 Single
## 460                                Widowed
## 461                                 Single
## 462                                 Single
## 463                                 Single
## 464                                 Single
## 465                                 Single
## 466                                 Single
## 467                                 Single
## 468                                 Single
## 469                                 Single
## 470                                 Single
## 471                                 Single
## 472                                Widowed
## 473                                 Single
## 474                                 Single
## 475                                 Single
## 476                                 Single
## 477                                 Single
## 478                                 Single
## 479                                 Single
## 480                                 Single
## 481                                 Single
## 482                                 Single
## 483                                 Single
## 484                                 Single
## 485                                 Single
## 486                                 Single
## 487                                 Single
## 488                                 Single
## 489                                Widowed
## 490                                 Single
## 491                                 Single
## 492                                 Single
## 493                                 Single
## 494                                 Single
## 495                                 Single
## 496                                 Single
## 497                                Widowed
## 498                                Widowed
## 499                                 Single
## 500                                 Single
## 501                                 Single
## 502                                 Single
## 503                                 Single
## 504                                 Single
## 505                                 Single
## 506                                 Single
## 507                                 Single
## 508                                 Single
## 509                                 Single
## 510                                 Single
## 511                                 Single
## 512                                 Single
## 513                                 Single
## 514                                 Single
## 515                                 Single
## 516                                 Single
## 517                                 Single
## 518                                 Single
## 519                                 Single
## 520                                 Single
## 521                                 Single
## 522                                 Single
## 523                                 Single
## 524                                 Single
## 525                                 Single
## 526                                 Single
## 527                                 Single
## 528                                 Single
## 529                                Widowed
## 530                                 Single
## 531                                 Single
## 532                                Widowed
## 533                                 Single
## 534                                 Single
## 535                                 Single
## 536                                 Single
## 537                                 Single
## 538                                 Single
## 539                                 Single
## 540                                 Single
## 541                                 Single
## 542                                 Single
## 543                                 Single
## 544                                 Single
## 545                                 Single
## 546                                 Single
## 547                                 Single
## 548                                 Single
## 549                                 Single
## 550                                 Single
## 551                                 Single
## 552                                 Single
## 553                                 Single
## 554                                Widowed
## 555                                 Single
## 556                                 Single
## 557                                 Single
## 558                                Widowed
## 559                                 Single
## 560                                 Single
## 561                                 Single
## 562                                 Single
## 563                                Widowed
## 564                                 Single
## 565                                 Single
## 566                                Widowed
## 567                                Widowed
## 568                                 Single
## 569                                Widowed
## 570                                 Single
## 571                                 Single
## 572                                Widowed
## 573                                Widowed
## 574                                 Single
## 575                                Widowed
## 576                                 Single
## 577                                 Single
## 578                                 Single
## 579                                 Single
## 580                                 Single
## 581                                 Single
## 582                                 Single
## 583                                 Single
## 584                                 Single
## 585                                 Single
## 586                                 Single
## 587                                 Single
## 588                                 Single
## 589                                 Single
## 590                                 Single
## 591                                 Single
## 592                                 Single
## 593                                 Single
## 594                                 Single
## 595                                 Single
## 596                                 Single
## 597                                 Single
## 598                                 Single
## 599                                 Single
## 600                                 Single
## 601                                Widowed
## 602                                Widowed
## 603                                 Single
## 604                                 Single
## 605                                 Single
## 606                                 Single
## 607                                 Single
## 608                                 Single
## 609                                 Single
## 610                                 Single
## 611                                 Single
## 612                                 Single
## 613                                 Single
## 614                                 Single
## 615                                 Single
## 616                                 Single
## 617                                 Single
## 618                                Widowed
## 619                                 Single
## 620                                 Single
## 621                                 Single
## 622                                 Single
## 623                                 Single
## 624                                Widowed
## 625                                 Single
## 626                                 Single
## 627                                Widowed
## 628                                 Single
## 629                                 Single
## 630                                 Single
## 631                                 Single
## 632                                 Single
## 633                                 Single
## 634                                 Single
## 635                                 Single
## 636                                 Single
## 637                                 Single
## 638                                 Single
## 639                                 Single
## 640                                 Single
## 641                                 Single
## 642                                 Single
## 643                                 Single
## 644                                 Single
## 645                                 Single
## 646                                 Single
## 647                                 Single
## 648                                 Single
## 649                                 Single
## 650                                 Single
## 651                                 Single
## 652                                 Single
## 653                                 Single
## 654                                 Single
## 655                                Widowed
## 656                                Widowed
## 657                                 Single
## 658                                 Single
## 659                                Widowed
## 660                                 Single
## 661                                 Single
## 662                                 Single
## 663                                 Single
## 664                                 Single
## 665                                 Single
## 666                                 Single
## 667                                 Single
## 668                                 Single
## 669                                 Single
## 670                                 Single
## 671                                 Single
## 672                                 Single
## 673                                 Single
## 674                                 Single
## 675                                 Single
## 676                                 Single
## 677                                 Single
## 678                                 Single
## 679                                 Single
## 680                                Widowed
## 681                                 Single
## 682                                 Single
## 683                                 Single
## 684                                Widowed
## 685                                 Single
## 686                                 Single
## 687                                Widowed
## 688                                 Single
## 689                                Widowed
## 690                                 Single
## 691                                 Single
## 692                                 Single
## 693                                 Single
## 694                                 Single
## 695                                 Single
## 696                                 Single
## 697                                 Single
## 698                                 Single
## 699                                Widowed
## 700                                 Single
## 701                                 Single
## 702                                 Single
## 703                                 Single
## 704                                 Single
## 705                                 Single
## 706                                 Single
## 707                                 Single
## 708                                 Single
## 709                                 Single
## 710                                 Single
## 711                                 Single
## 712                                 Single
## 713                                Widowed
## 714                                 Single
## 715                                 Single
## 716                                 Single
## 717                                 Single
## 718                                 Single
## 719                                 Single
## 720                                 Single
## 721                                 Single
## 722                                 Single
## 723                                 Single
## 724                                 Single
## 725                                 Single
## 726                                 Single
## 727                                 Single
## 728                                 Single
## 729                                 Single
## 730                                 Single
## 731                                 Single
## 732                                 Single
## 733                                 Single
## 734                                 Single
## 735                                Widowed
## 736                                 Single
## 737                                 Single
## 738                                 Single
## 739                                 Single
## 740                                Widowed
## 741                                 Single
## 742                                 Single
## 743                                 Single
## 744                                 Single
## 745                                 Single
## 746                                Widowed
## 747                                 Single
## 748                                 Single
## 749                                 Single
## 750                                 Single
## 751                                 Single
## 752                                 Single
## 753                                 Single
## 754                                 Single
## 755                                 Single
## 756                                 Single
## 757                                 Single
## 758                                 Single
## 759                                 Single
## 760                                 Single
## 761                                 Single
## 762                                 Single
## 763                                 Single
## 764                                 Single
## 765                                 Single
## 766                                 Single
## 767                                 Single
## 768                                 Single
## 769                                 Single
## 770                                 Single
## 771                                 Single
## 772                                 Single
## 773                                 Single
## 774                                 Single
## 775                                 Single
## 776                                Widowed
## 777                                 Single
## 778                                 Single
## 779                                 Single
## 780                                 Single
## 781                                 Single
## 782                                 Single
## 783                                 Single
## 784                                 Single
## 785                                 Single
## 786                                 Single
## 787                                 Single
## 788                                 Single
## 789                                 Single
## 790                                 Single
## 791                                 Single
## 792                                 Single
## 793                                 Single
## 794                                 Single
## 795                                 Single
## 796                                 Single
## 797                                 Single
## 798                                 Single
## 799                                 Single
## 800                                 Single
## 801                                 Single
## 802                                 Single
## 803                                 Single
## 804                                 Single
## 805                                 Single
## 806                                 Single
## 807                                Widowed
## 808                                 Single
## 809                                 Single
## 810                                 Single
## 811                                 Single
## 812                                 Single
## 813                                 Single
## 814                                 Single
## 815                                 Single
## 816                                 Single
## 817                                 Single
## 818                                Widowed
## 819                                 Single
## 820                                 Single
## 821                                 Single
## 822                                 Single
## 823                                 Single
## 824                                 Single
## 825                                Widowed
## 826                                Widowed
## 827                                 Single
## 828                                 Single
## 829                                 Single
## 830                                 Single
## 831                                 Single
## 832                                 Single
## 833                                Widowed
## 834                                 Single
## 835                                 Single
## 836                                 Single
## 837                                 Single
## 838                                 Single
## 839                                 Single
## 840                                 Single
## 841                                Widowed
## 842                                 Single
## 843                                 Single
## 844                                 Single
## 845                                Widowed
## 846                                 Single
## 847                                 Single
## 848                                 Single
## 849                                 Single
## 850                                 Single
## 851                                 Single
## 852                                 Single
## 853                                 Single
## 854                                 Single
## 855                                 Single
## 856                                 Single
## 857                                 Single
## 858                                Widowed
## 859                                 Single
## 860                                Widowed
## 861                                 Single
## 862                                Widowed
## 863                                 Single
## 864                                 Single
## 865                                 Single
## 866                                 Single
## 867                                 Single
## 868                                 Single
## 869                                 Single
## 870                                 Single
## 871                                 Single
## 872                                 Single
## 873                                 Single
## 874                                 Single
## 875                                 Single
## 876                                 Single
## 877                                 Single
## 878                                 Single
## 879                                 Single
## 880                                 Single
## 881                                 Single
## 882                                 Single
## 883                                 Single
## 884                                 Single
## 885                                Widowed
## 886                                 Single
## 887                                 Single
## 888                                 Single
## 889                                 Single
## 890                                 Single
## 891                                 Single
## 892                                 Single
## 893                                 Single
## 894                                 Single
## 895                                Widowed
## 896                                 Single
## 897                                 Single
## 898                                 Single
## 899                                 Single
## 900                                 Single
## 901                                 Single
## 902                                 Single
## 903                                 Single
## 904                                 Single
## 905                                 Single
## 906                                 Single
## 907                                 Single
## 908                                 Single
## 909                                 Single
## 910                                 Single
## 911                                 Single
## 912                                 Single
## 913                                 Single
## 914                                 Single
## 915                                 Single
## 916                                 Single
## 917                                 Single
## 918                                 Single
## 919                                 Single
## 920                                 Single
## 921                                 Single
## 922                                 Single
## 923                                Widowed
## 924                                 Single
## 925                                 Single
## 926                                 Single
## 927                                 Single
## 928                                 Single
## 929                                 Single
## 930                                 Single
## 931                                 Single
## 932                                 Single
## 933                                 Single
## 934                                 Single
## 935                                 Single
## 936                                 Single
## 937                                 Single
## 938                                 Single
## 939                                 Single
## 940                                 Single
## 941                                 Single
## 942                                 Single
## 943                                 Single
## 944                                 Single
## 945                                 Single
## 946                                Widowed
## 947                                 Single
## 948                                 Single
## 949                                 Single
## 950                                 Single
## 951                                 Single
## 952                                 Single
## 953                                Widowed
## 954                                 Single
## 955                                 Single
## 956                                 Single
## 957                                 Single
## 958                                 Single
## 959                                Widowed
## 960                                 Single
## 961                                Widowed
## 962                                Widowed
## 963                                 Single
## 964                                 Single
## 965                                Widowed
## 966                                 Single
## 967                                 Single
## 968                                 Single
## 969                                 Single
## 970                                 Single
## 971                                 Single
## 972                                 Single
## 973                                Widowed
## 974                                 Single
## 975                                 Single
## 976                                 Single
## 977                                 Single
## 978                                 Single
## 979                                 Single
## 980                                 Single
## 981                                 Single
## 982                                 Single
## 983                                 Single
## 984                                Widowed
## 985                                 Single
## 986                                 Single
## 987                                 Single
## 988                                 Single
## 989                                 Single
## 990                                Widowed
## 991                                 Single
## 992                                 Single
## 993                                 Single
## 994                                 Single
## 995                                 Single
## 996                                 Single
## 997                                 Single
## 998                                 Single
## 999                                 Single
## 1000                                Single
## 1001                                Single
## 1002                                Single
## 1003                                Single
## 1004                                Single
## 1005                                Single
## 1006                                Single
## 1007                                Single
## 1008                                Single
## 1009                                Single
## 1010                                Single
## 1011                                Single
## 1012                                Single
## 1013                                Single
## 1014                                Single
## 1015                                Single
## 1016                               Widowed
## 1017                                Single
## 1018                                Single
## 1019                                Single
## 1020                                Single
## 1021                               Widowed
## 1022                                Single
## 1023                                Single
## 1024                                Single
## 1025                                Single
## 1026                                Single
## 1027                                Single
## 1028                                Single
## 1029                                Single
## 1030                                Single
## 1031                                Single
## 1032                                Single
## 1033                                Single
## 1034                                Single
## 1035                                Single
## 1036                                Single
## 1037                               Widowed
## 1038                                Single
## 1039                                Single
## 1040                                Single
## 1041                                Single
## 1042                                Single
## 1043                               Widowed
## 1044                                Single
## 1045                                Single
## 1046                                Single
## 1047                                Single
## 1048                                Single
## 1049                                Single
## 1050                                Single
## 1051                                Single
## 1052                                Single
## 1053                               Widowed
## 1054                               Widowed
## 1055                               Widowed
## 1056                                Single
## 1057                                Single
## 1058                                Single
## 1059                                Single
## 1060                               Widowed
## 1061                                Single
## 1062                                Single
## 1063                                Single
## 1064                                Single
## 1065                                Single
## 1066                               Widowed
## 1067                                Single
## 1068                                Single
## 1069                                Single
## 1070                                Single
## 1071                                Single
## 1072                               Widowed
## 1073                                Single
## 1074                                Single
## 1075                                Single
## 1076                                Single
## 1077                                Single
## 1078                                Single
## 1079                                Single
## 1080                                Single
## 1081                               Widowed
## 1082                                Single
## 1083                                Single
## 1084                                Single
## 1085                                Single
## 1086                                Single
## 1087                                Single
## 1088                                Single
## 1089                                Single
## 1090                                Single
## 1091                                Single
## 1092                               Widowed
## 1093                               Widowed
## 1094                               Widowed
## 1095                                Single
## 1096                                Single
## 1097                                Single
## 1098                                Single
## 1099                               Widowed
## 1100                                Single
## 1101                               Widowed
## 1102                                Single
## 1103                                Single
## 1104                                Single
## 1105                                Single
## 1106                               Widowed
## 1107                                Single
## 1108                                Single
## 1109                                Single
## 1110                                Single
## 1111                                Single
## 1112                                Single
## 1113                                Single
## 1114                                Single
## 1115                                Single
## 1116                                Single
## 1117                                Single
## 1118                               Widowed
## 1119                                Single
## 1120                                Single
## 1121                                Single
## 1122                                Single
## 1123                                Single
## 1124                                Single
## 1125                               Widowed
## 1126                                Single
## 1127                                Single
## 1128                                Single
## 1129                                Single
## 1130                                Single
## 1131                                Single
## 1132                               Widowed
## 1133                               Widowed
## 1134                                Single
## 1135                                Single
## 1136                                Single
## 1137                               Widowed
## 1138                                Single
## 1139                                Single
## 1140                                Single
## 1141                                Single
## 1142                                Single
## 1143                                Single
## 1144                                Single
## 1145                                Single
## 1146                                Single
## 1147                                Single
## 1148                                Single
## 1149                                Single
## 1150                                Single
## 1151                                Single
## 1152                                Single
## 1153                                Single
## 1154                                Single
## 1155                                Single
## 1156                                Single
## 1157                                Single
## 1158                                Single
## 1159                                Single
## 1160                                Single
## 1161                                Single
## 1162                                Single
## 1163                                Single
## 1164                                Single
## 1165                                Single
## 1166                                Single
## 1167                                Single
## 1168                                Single
## 1169                                Single
## 1170                                Single
## 1171                                Single
## 1172                               Widowed
## 1173                                Single
## 1174                                Single
## 1175                                Single
## 1176                                Single
## 1177                                Single
## 1178                               Widowed
## 1179                                Single
## 1180                                Single
## 1181                               Widowed
## 1182                                Single
## 1183                                Single
## 1184                                Single
## 1185                                Single
## 1186                                Single
## 1187                                Single
## 1188                                Single
## 1189                               Widowed
## 1190                                Single
## 1191                               Widowed
## 1192                                Single
## 1193                                Single
## 1194                                Single
## 1195                                Single
## 1196                                Single
## 1197                                Single
## 1198                                Single
## 1199                               Widowed
## 1200                                Single
## 1201                                Single
## 1202                                Single
## 1203                                Single
## 1204                                Single
## 1205                                Single
## 1206                                Single
## 1207                                Single
## 1208                                Single
## 1209                                Single
## 1210                                Single
## 1211                                Single
## 1212                                Single
## 1213                               Widowed
## 1214                                Single
## 1215                                Single
## 1216                                Single
## 1217                               Widowed
## 1218                                Single
## 1219                                Single
## 1220                                Single
## 1221                                Single
## 1222                                Single
## 1223                                Single
## 1224                                Single
## 1225                                Single
## 1226                                Single
## 1227                                Single
## 1228                                Single
## 1229                                Single
## 1230                                Single
## 1231                                Single
## 1232                                Single
## 1233                                Single
## 1234                                Single
## 1235                                Single
## 1236                                Single
## 1237                                Single
## 1238                                Single
## 1239                                Single
## 1240                                Single
## 1241                                Single
## 1242                                Single
## 1243                                Single
## 1244                                Single
## 1245                                Single
## 1246                                Single
## 1247                                Single
## 1248                                Single
## 1249                                Single
## 1250                                Single
## 1251                                Single
## 1252                                Single
## 1253                                Single
## 1254                                Single
## 1255                                Single
## 1256                                Single
## 1257                                Single
## 1258                                Single
## 1259                                Single
## 1260                                Single
## 1261                                Single
## 1262                                Single
## 1263                               Widowed
## 1264                                Single
## 1265                                Single
## 1266                                Single
## 1267                                Single
## 1268                                Single
## 1269                                Single
## 1270                                Single
## 1271                                Single
## 1272                                Single
## 1273                                Single
## 1274                               Widowed
## 1275                                Single
## 1276                                Single
## 1277                                Single
## 1278                                Single
## 1279                                Single
## 1280                                Single
## 1281                                Single
## 1282                                Single
## 1283                                Single
## 1284                                Single
## 1285                                Single
## 1286                               Widowed
## 1287                                Single
## 1288                                Single
## 1289                                Single
## 1290                                Single
## 1291                               Widowed
## 1292                                Single
## 1293                                Single
## 1294                                Single
## 1295                                Single
## 1296                                Single
## 1297                               Widowed
## 1298                                Single
## 1299                               Widowed
## 1300                                Single
## 1301                               Widowed
## 1302                                Single
## 1303                                Single
## 1304                                Single
## 1305                                Single
## 1306                                Single
## 1307                                Single
## 1308                               Widowed
## 1309                                Single
## 1310                                Single
## 1311                                Single
## 1312                                Single
## 1313                                Single
## 1314                                Single
## 1315                                Single
## 1316                                Single
## 1317                                Single
## 1318                                Single
## 1319                                Single
## 1320                                Single
## 1321                                Single
## 1322                                Single
## 1323                                Single
## 1324                                Single
## 1325                                Single
## 1326                                Single
## 1327                                Single
## 1328                                Single
## 1329                                Single
## 1330                                Single
## 1331                                Single
## 1332                                Single
## 1333                                Single
## 1334                                Single
## 1335                                Single
## 1336                                Single
## 1337                                Single
## 1338                                Single
## 1339                                Single
## 1340                                Single
## 1341                                Single
## 1342                                Single
## 1343                                Single
## 1344                                Single
## 1345                                Single
## 1346                                Single
## 1347                                Single
## 1348                                Single
## 1349                                Single
## 1350                                Single
## 1351                                Single
## 1352                               Widowed
## 1353                                Single
## 1354                               Widowed
## 1355                                Single
## 1356                                Single
## 1357                                Single
## 1358                                Single
## 1359                                Single
## 1360                               Widowed
## 1361                                Single
## 1362                                Single
## 1363                                Single
## 1364                                Single
## 1365                                Single
## 1366                               Widowed
## 1367                                Single
## 1368                                Single
## 1369                                Single
## 1370                                Single
## 1371                                Single
## 1372                                Single
## 1373                                Single
## 1374                                Single
## 1375                               Widowed
## 1376                                Single
## 1377                                Single
## 1378                                Single
## 1379                                Single
## 1380                                Single
## 1381                                Single
## 1382                                Single
## 1383                                Single
## 1384                                Single
## 1385                                Single
## 1386                                Single
## 1387                                Single
## 1388                                Single
## 1389                               Widowed
## 1390                                Single
## 1391                                Single
## 1392                                Single
## 1393                                Single
## 1394                                Single
## 1395                                Single
## 1396                                Single
## 1397                                Single
## 1398                                Single
## 1399                                Single
## 1400                                Single
## 1401                                Single
## 1402                                Single
## 1403                                Single
## 1404                                Single
## 1405                               Widowed
## 1406                                Single
## 1407                                Single
## 1408                                Single
## 1409                                Single
## 1410                                Single
## 1411                                Single
## 1412                                Single
## 1413                                Single
## 1414                                Single
## 1415                                Single
## 1416                                Single
## 1417                                Single
## 1418                                Single
## 1419                                Single
## 1420                                Single
## 1421                                Single
## 1422                               Widowed
## 1423                                Single
## 1424                                Single
## 1425                                Single
## 1426                                Single
## 1427                                Single
## 1428                                Single
## 1429                                Single
## 1430                                Single
## 1431                                Single
## 1432                                Single
## 1433                                Single
## 1434                                Single
## 1435                                Single
## 1436                                Single
## 1437                                Single
## 1438                                Single
## 1439                                Single
## 1440                               Widowed
## 1441                                Single
## 1442                                Single
## 1443                                Single
## 1444                                Single
## 1445                                Single
## 1446                                Single
## 1447                                Single
## 1448                                Single
## 1449                                Single
## 1450                                Single
## 1451                                Single
## 1452                                Single
## 1453                                Single
## 1454                                Single
## 1455                                Single
## 1456                                Single
## 1457                                Single
## 1458                                Single
## 1459                                Single
## 1460                                Single
## 1461                               Widowed
## 1462                                Single
## 1463                                Single
## 1464                                Single
## 1465                                Single
## 1466                                Single
## 1467                                Single
## 1468                                Single
## 1469                                Single
## 1470                               Widowed
## 1471                                Single
## 1472                                Single
## 1473                                Single
## 1474                                Single
## 1475                                Single
## 1476                                Single
## 1477                                Single
## 1478                                Single
## 1479                                Single
## 1480                                Single
## 1481                                Single
## 1482                                Single
## 1483                                Single
## 1484                                Single
## 1485                                Single
## 1486                               Widowed
## 1487                                Single
## 1488                                Single
## 1489                                Single
## 1490                               Widowed
## 1491                                Single
## 1492                                Single
## 1493                                Single
## 1494                                Single
## 1495                                Single
## 1496                               Widowed
## 1497                                Single
## 1498                                Single
## 1499                                Single
## 1500                                Single
## 1501                                Single
## 1502                               Widowed
## 1503                                Single
## 1504                               Widowed
## 1505                                Single
## 1506                                Single
## 1507                                Single
## 1508                                Single
## 1509                                Single
## 1510                                Single
## 1511                                Single
## 1512                               Widowed
## 1513                                Single
## 1514                                Single
## 1515                                Single
## 1516                                Single
## 1517                                Single
## 1518                                Single
## 1519                               Widowed
## 1520                                Single
## 1521                                Single
## 1522                                Single
## 1523                                Single
## 1524                                Single
## 1525                                Single
## 1526                                Single
## 1527                                Single
## 1528                                Single
## 1529                                Single
## 1530                                Single
## 1531                                Single
## 1532                                Single
## 1533                                Single
## 1534                                Single
## 1535                                Single
## 1536                                Single
## 1537                                Single
## 1538                                Single
## 1539                                Single
## 1540                                Single
## 1541                                Single
## 1542                                Single
## 1543                                Single
## 1544                                Single
## 1545                                Single
## 1546                                Single
## 1547                                Single
## 1548                                Single
## 1549                               Widowed
## 1550                                Single
## 1551                                Single
## 1552                                Single
## 1553                                Single
## 1554                                Single
## 1555                                Single
## 1556                                Single
## 1557                                Single
## 1558                                Single
## 1559                                Single
## 1560                               Widowed
## 1561                               Widowed
## 1562                                Single
## 1563                               Widowed
## 1564                                Single
## 1565                                Single
## 1566                                Single
## 1567                                Single
## 1568                               Widowed
## 1569                                Single
## 1570                                Single
## 1571                                Single
## 1572                                Single
## 1573                                Single
## 1574                                Single
## 1575                                Single
## 1576                                Single
## 1577                                Single
## 1578                                Single
## 1579                                Single
## 1580                                Single
## 1581                                Single
## 1582                                Single
## 1583                                Single
## 1584                                Single
## 1585                                Single
## 1586                                Single
## 1587                                Single
## 1588                                Single
## 1589                                Single
## 1590                               Widowed
## 1591                                Single
## 1592                                Single
## 1593                                Single
## 1594                                Single
## 1595                                Single
## 1596                                Single
## 1597                               Widowed
## 1598                                Single
## 1599                                Single
## 1600                                Single
## 1601                                Single
## 1602                                Single
## 1603                                Single
## 1604                                Single
## 1605                                Single
## 1606                                Single
## 1607                                Single
## 1608                               Widowed
## 1609                                Single
## 1610                                Single
## 1611                                Single
## 1612                                Single
## 1613                                Single
## 1614                                Single
## 1615                                Single
## 1616                                Single
## 1617                                Single
## 1618                                Single
## 1619                                Single
## 1620                                Single
## 1621                                Single
## 1622                               Widowed
## 1623                                Single
## 1624                                Single
## 1625                                Single
## 1626                                Single
## 1627                               Widowed
## 1628                                Single
## 1629                                Single
## 1630                                Single
## 1631                                Single
## 1632                                Single
## 1633                                Single
## 1634                                Single
## 1635                                Single
## 1636                                Single
## 1637                                Single
## 1638                                Single
## 1639                                Single
## 1640                                Single
## 1641                                Single
## 1642                                Single
## 1643                                Single
## 1644                                Single
## 1645                                Single
## 1646                               Widowed
## 1647                                Single
## 1648                                Single
## 1649                                Single
## 1650                                Single
## 1651                                Single
## 1652                                Single
## 1653                               Widowed
## 1654                                Single
## 1655                                Single
## 1656                                Single
## 1657                                Single
## 1658                                Single
## 1659                                Single
## 1660                                Single
## 1661                                Single
## 1662                                Single
## 1663                                Single
## 1664                                Single
## 1665                                Single
## 1666                                Single
## 1667                                Single
## 1668                                Single
## 1669                                Single
## 1670                                Single
## 1671                                Single
## 1672                                Single
## 1673                                Single
## 1674                                Single
## 1675                                Single
## 1676                                Single
## 1677                                Single
## 1678                                Single
## 1679                                Single
## 1680                                Single
## 1681                                Single
## 1682                                Single
## 1683                                Single
## 1684                                Single
## 1685                                Single
## 1686                                Single
## 1687                                Single
## 1688                                Single
## 1689                                Single
## 1690                                Single
## 1691                                Single
## 1692                               Widowed
## 1693                                Single
## 1694                                Single
## 1695                                Single
## 1696                                Single
## 1697                               Widowed
## 1698                               Widowed
## 1699                                Single
## 1700                                Single
## 1701                               Widowed
## 1702                                Single
## 1703                                Single
## 1704                                Single
## 1705                                Single
## 1706                                Single
## 1707                                Single
## 1708                                Single
## 1709                                Single
## 1710                                Single
## 1711                                Single
## 1712                                Single
## 1713                                Single
## 1714                                Single
## 1715                                Single
## 1716                                Single
## 1717                                Single
## 1718                                Single
## 1719                                Single
## 1720                                Single
## 1721                                Single
## 1722                               Widowed
## 1723                                Single
## 1724                                Single
## 1725                                Single
## 1726                                Single
## 1727                                Single
## 1728                                Single
## 1729                               Widowed
## 1730                                Single
## 1731                                Single
## 1732                                Single
## 1733                                Single
## 1734                                Single
## 1735                                Single
## 1736                                Single
## 1737                                Single
## 1738                                Single
## 1739                                Single
## 1740                                Single
## 1741                                Single
## 1742                               Widowed
## 1743                                Single
## 1744                                Single
## 1745                                Single
## 1746                                Single
## 1747                                Single
## 1748                               Widowed
## 1749                                Single
## 1750                                Single
## 1751                                Single
## 1752                                Single
## 1753                                Single
## 1754                                Single
## 1755                                Single
## 1756                                Single
## 1757                                Single
## 1758                               Widowed
## 1759                                Single
## 1760                                Single
## 1761                               Widowed
## 1762                                Single
## 1763                                Single
## 1764                                Single
## 1765                                Single
## 1766                                Single
## 1767                               Widowed
## 1768                                Single
## 1769                                Single
## 1770                                Single
## 1771                                Single
## 1772                                Single
## 1773                                Single
## 1774                                Single
## 1775                                Single
## 1776                                Single
## 1777                                Single
## 1778                                Single
## 1779                                Single
## 1780                                Single
## 1781                                Single
## 1782                               Widowed
## 1783                                Single
## 1784                                Single
## 1785                               Widowed
## 1786                                Single
## 1787                                Single
## 1788                                Single
## 1789                                Single
## 1790                               Widowed
## 1791                                Single
## 1792                                Single
## 1793                               Widowed
## 1794                                Single
## 1795                                Single
## 1796                                Single
## 1797                                Single
## 1798                                Single
## 1799                                Single
## 1800                                Single
## 1801                               Widowed
## 1802                               Widowed
## 1803                               Widowed
## 1804                                Single
## 1805                                Single
## 1806                                Single
## 1807                                Single
## 1808                                Single
## 1809                                Single
## 1810                                Single
## 1811                                Single
## 1812                                Single
## 1813                                Single
## 1814                                Single
## 1815                                Single
## 1816                                Single
## 1817                                Single
## 1818                                Single
## 1819                                Single
## 1820                                Single
## 1821                                Single
## 1822                                Single
## 1823                                Single
## 1824                                Single
## 1825                               Widowed
## 1826                                Single
## 1827                                Single
## 1828                                Single
## 1829                                Single
## 1830                                Single
## 1831                                Single
## 1832                               Widowed
## 1833                                Single
## 1834                                Single
## 1835                                Single
## 1836                                Single
## 1837                                Single
## 1838                                Single
## 1839                                Single
## 1840                                Single
## 1841                                Single
## 1842                                Single
## 1843                                Single
## 1844                                Single
## 1845                                Single
## 1846                                Single
## 1847                                Single
## 1848                                Single
## 1849                                Single
## 1850                                Single
## 1851                                Single
## 1852                                Single
## 1853                                Single
## 1854                                Single
## 1855                                Single
## 1856                                Single
## 1857                                Single
## 1858                                Single
## 1859                                Single
## 1860                                Single
## 1861                                Single
## 1862                               Widowed
## 1863                                Single
## 1864                                Single
## 1865                                Single
## 1866                                Single
## 1867                               Widowed
## 1868                                Single
## 1869                                Single
## 1870                                Single
## 1871                                Single
## 1872                                Single
## 1873                                Single
## 1874                                Single
## 1875                                Single
## 1876                                Single
## 1877                                Single
## 1878                               Widowed
## 1879                                Single
## 1880                                Single
## 1881                                Single
## 1882                                Single
## 1883                                Single
## 1884                                Single
## 1885                                Single
## 1886                                Single
## 1887                                Single
## 1888                                Single
## 1889                                Single
## 1890                                Single
## 1891                               Widowed
## 1892                                Single
## 1893                                Single
## 1894                                Single
## 1895                                Single
## 1896                                Single
## 1897                                Single
## 1898                                Single
## 1899                                Single
## 1900                                Single
## 1901                                Single
## 1902                                Single
## 1903                                Single
## 1904                                Single
## 1905                                Single
## 1906                               Widowed
## 1907                                Single
## 1908                                Single
## 1909                                Single
## 1910                                Single
## 1911                                Single
## 1912                                Single
## 1913                                Single
## 1914                                Single
## 1915                                Single
## 1916                                Single
## 1917                                Single
## 1918                               Widowed
## 1919                                Single
## 1920                                Single
## 1921                                Single
## 1922                                Single
## 1923                                Single
## 1924                                Single
## 1925                                Single
## 1926                               Widowed
## 1927                               Widowed
## 1928                                Single
## 1929                               Widowed
## 1930                                Single
## 1931                                Single
## 1932                                Single
## 1933                                Single
## 1934                                Single
## 1935                                Single
## 1936                                Single
## 1937                                Single
## 1938                                Single
## 1939                                Single
## 1940                                Single
## 1941                               Widowed
## 1942                                Single
## 1943                               Widowed
## 1944                                Single
## 1945                                Single
## 1946                                Single
## 1947                                Single
## 1948                                Single
## 1949                                Single
## 1950                                Single
## 1951                                Single
## 1952                                Single
## 1953                               Widowed
## 1954                                Single
## 1955                               Widowed
## 1956                                Single
## 1957                                Single
## 1958                                Single
## 1959                               Widowed
## 1960                                Single
## 1961                                Single
## 1962                                Single
## 1963                                Single
## 1964                                Single
## 1965                                Single
## 1966                                Single
## 1967                                Single
## 1968                                Single
## 1969                                Single
## 1970                                Single
## 1971                                Single
## 1972                                Single
## 1973                                Single
## 1974                                Single
## 1975                                Single
## 1976                                Single
## 1977                                Single
## 1978                                Single
## 1979                                Single
## 1980                                Single
## 1981                                Single
## 1982                                Single
## 1983                                Single
## 1984                                Single
## 1985                                Single
## 1986                                Single
## 1987                                Single
## 1988                                Single
## 1989                                Single
## 1990                                Single
## 1991                                Single
## 1992                                Single
## 1993                                Single
## 1994                                Single
## 1995                                Single
## 1996                                Single
## 1997                               Widowed
## 1998                                Single
## 1999                                Single
## 2000                                Single
## 2001                                Single
## 2002                               Widowed
## 2003                                Single
## 2004                                Single
## 2005                                Single
## 2006                                Single
## 2007                               Widowed
## 2008                                Single
## 2009                                Single
## 2010                                Single
## 2011                                Single
## 2012                               Widowed
## 2013                                Single
## 2014                                Single
## 2015                                Single
## 2016                                Single
## 2017                                Single
## 2018                                Single
## 2019                                Single
## 2020                                Single
## 2021                                Single
## 2022                                Single
## 2023                                Single
## 2024                                Single
## 2025                                Single
## 2026                                Single
## 2027                                Single
## 2028                                Single
## 2029                                Single
## 2030                                Single
## 2031                                Single
## 2032                                Single
## 2033                                Single
## 2034                                Single
## 2035                                Single
## 2036                                Single
## 2037                                Single
## 2038                                Single
## 2039                                Single
## 2040                                Single
## 2041                                Single
## 2042                                Single
## 2043                                Single
## 2044                                Single
## 2045                                Single
## 2046                                Single
## 2047                                Single
## 2048                                Single
## 2049                               Widowed
## 2050                                Single
## 2051                                Single
## 2052                               Widowed
## 2053                               Widowed
## 2054                                Single
## 2055                                Single
## 2056                                Single
## 2057                                Single
## 2058                                Single
## 2059                               Widowed
## 2060                                Single
## 2061                                Single
## 2062                                Single
## 2063                                Single
## 2064                                Single
## 2065                                Single
## 2066                                Single
## 2067                               Widowed
## 2068                                Single
## 2069                                Single
## 2070                                Single
## 2071                                Single
## 2072                                Single
## 2073                                Single
## 2074                                Single
## 2075                                Single
## 2076                               Widowed
## 2077                                Single
## 2078                                Single
## 2079                                Single
## 2080                                Single
## 2081                                Single
## 2082                                Single
## 2083                                Single
## 2084                                Single
## 2085                                Single
## 2086                                Single
## 2087                                Single
## 2088                                Single
## 2089                                Single
## 2090                                Single
## 2091                                Single
## 2092                                Single
## 2093                                Single
## 2094                                Single
## 2095                                Single
## 2096                                Single
## 2097                                Single
## 2098                                Single
## 2099                                Single
## 2100                               Widowed
## 2101                                Single
## 2102                                Single
## 2103                                Single
## 2104                                Single
## 2105                                Single
## 2106                                Single
## 2107                               Widowed
## 2108                                Single
## 2109                                Single
## 2110                               Widowed
## 2111                                Single
## 2112                                Single
## 2113                               Widowed
## 2114                                Single
## 2115                                Single
## 2116                                Single
## 2117                                Single
## 2118                                Single
## 2119                                Single
## 2120                                Single
## 2121                                Single
## 2122                               Widowed
## 2123                                Single
## 2124                                Single
## 2125                               Widowed
## 2126                                Single
## 2127                                Single
## 2128                                Single
## 2129                                Single
## 2130                               Widowed
## 2131                                Single
## 2132                                Single
## 2133                                Single
## 2134                                Single
## 2135                                Single
## 2136                                Single
## 2137                                Single
## 2138                                Single
## 2139                                Single
## 2140                                Single
## 2141                                Single
## 2142                                Single
## 2143                                Single
## 2144                                Single
## 2145                               Widowed
## 2146                                Single
## 2147                                Single
## 2148                                Single
## 2149                                Single
## 2150                                Single
## 2151                                Single
## 2152                                Single
## 2153                                Single
## 2154                                Single
## 2155                                Single
## 2156                                Single
## 2157                                Single
## 2158                                Single
## 2159                               Widowed
## 2160                                Single
## 2161                                Single
## 2162                                Single
## 2163                                Single
## 2164                                Single
## 2165                                Single
## 2166                                Single
## 2167                                Single
## 2168                                Single
## 2169                                Single
## 2170                                Single
## 2171                                Single
## 2172                                Single
## 2173                                Single
## 2174                                Single
## 2175                                Single
## 2176                                Single
## 2177                               Widowed
## 2178                                Single
## 2179                                Single
## 2180                                Single
## 2181                               Widowed
## 2182                                Single
## 2183                                Single
## 2184                                Single
## 2185                               Widowed
## 2186                                Single
## 2187                                Single
## 2188                                Single
## 2189                                Single
## 2190                                Single
## 2191                                Single
## 2192                                Single
## 2193                               Widowed
## 2194                                Single
## 2195                                Single
## 2196                                Single
## 2197                                Single
## 2198                               Widowed
## 2199                                Single
## 2200                                Single
## 2201                                Single
## 2202                                Single
## 2203                               Widowed
## 2204                                Single
## 2205                                Single
## 2206                                Single
## 2207                                Single
## 2208                                Single
## 2209                                Single
## 2210                                Single
## 2211                                Single
## 2212                                Single
## 2213                                Single
## 2214                                Single
## 2215                                Single
## 2216                                Single
## 2217                                Single
## 2218                                Single
## 2219                                Single
## 2220                                Single
## 2221                                Single
## 2222                                Single
## 2223                                Single
## 2224                                Single
## 2225                                Single
## 2226                                Single
## 2227                                Single
## 2228                                Single
## 2229                                Single
## 2230                                Single
## 2231                                Single
## 2232                                Single
## 2233                                Single
## 2234                                Single
## 2235                                Single
## 2236                                Single
## 2237                                Single
## 2238                               Widowed
## 2239                                Single
## 2240                                Single
## 2241                               Widowed
## 2242                                Single
## 2243                                Single
## 2244                                Single
## 2245                                Single
## 2246                               Widowed
## 2247                                Single
## 2248                                Single
## 2249                               Widowed
## 2250                                Single
## 2251                                Single
## 2252                                Single
## 2253                                Single
## 2254                               Widowed
## 2255                                Single
## 2256                                Single
## 2257                                Single
## 2258                                Single
## 2259                                Single
## 2260                                Single
## 2261                                Single
## 2262                                Single
## 2263                                Single
## 2264                                Single
## 2265                               Widowed
## 2266                                Single
## 2267                                Single
## 2268                                Single
## 2269                                Single
## 2270                                Single
## 2271                               Widowed
## 2272                                Single
##      if_else(Q4 == 1, "No formal education", "Some primary")
## 1                                        No formal education
## 2                                               Some primary
## 3                                               Some primary
## 4                                               Some primary
## 5                                        No formal education
## 6                                               Some primary
## 7                                               Some primary
## 8                                               Some primary
## 9                                               Some primary
## 10                                              Some primary
## 11                                              Some primary
## 12                                              Some primary
## 13                                              Some primary
## 14                                              Some primary
## 15                                              Some primary
## 16                                              Some primary
## 17                                              Some primary
## 18                                              Some primary
## 19                                              Some primary
## 20                                              Some primary
## 21                                              Some primary
## 22                                              Some primary
## 23                                       No formal education
## 24                                       No formal education
## 25                                              Some primary
## 26                                              Some primary
## 27                                              Some primary
## 28                                              Some primary
## 29                                              Some primary
## 30                                              Some primary
## 31                                       No formal education
## 32                                              Some primary
## 33                                              Some primary
## 34                                              Some primary
## 35                                       No formal education
## 36                                       No formal education
## 37                                              Some primary
## 38                                              Some primary
## 39                                              Some primary
## 40                                              Some primary
## 41                                              Some primary
## 42                                       No formal education
## 43                                              Some primary
## 44                                       No formal education
## 45                                              Some primary
## 46                                              Some primary
## 47                                              Some primary
## 48                                              Some primary
## 49                                              Some primary
## 50                                              Some primary
## 51                                       No formal education
## 52                                              Some primary
## 53                                              Some primary
## 54                                              Some primary
## 55                                              Some primary
## 56                                              Some primary
## 57                                       No formal education
## 58                                       No formal education
## 59                                              Some primary
## 60                                              Some primary
## 61                                              Some primary
## 62                                              Some primary
## 63                                              Some primary
## 64                                              Some primary
## 65                                       No formal education
## 66                                              Some primary
## 67                                              Some primary
## 68                                              Some primary
## 69                                              Some primary
## 70                                              Some primary
## 71                                       No formal education
## 72                                              Some primary
## 73                                              Some primary
## 74                                              Some primary
## 75                                              Some primary
## 76                                              Some primary
## 77                                              Some primary
## 78                                       No formal education
## 79                                              Some primary
## 80                                              Some primary
## 81                                              Some primary
## 82                                              Some primary
## 83                                              Some primary
## 84                                              Some primary
## 85                                              Some primary
## 86                                              Some primary
## 87                                              Some primary
## 88                                              Some primary
## 89                                              Some primary
## 90                                              Some primary
## 91                                              Some primary
## 92                                              Some primary
## 93                                              Some primary
## 94                                              Some primary
## 95                                              Some primary
## 96                                              Some primary
## 97                                       No formal education
## 98                                              Some primary
## 99                                              Some primary
## 100                                             Some primary
## 101                                             Some primary
## 102                                             Some primary
## 103                                             Some primary
## 104                                             Some primary
## 105                                             Some primary
## 106                                      No formal education
## 107                                             Some primary
## 108                                             Some primary
## 109                                             Some primary
## 110                                             Some primary
## 111                                             Some primary
## 112                                             Some primary
## 113                                             Some primary
## 114                                      No formal education
## 115                                             Some primary
## 116                                             Some primary
## 117                                             Some primary
## 118                                             Some primary
## 119                                             Some primary
## 120                                             Some primary
## 121                                             Some primary
## 122                                             Some primary
## 123                                             Some primary
## 124                                             Some primary
## 125                                             Some primary
## 126                                             Some primary
## 127                                             Some primary
## 128                                             Some primary
## 129                                             Some primary
## 130                                             Some primary
## 131                                             Some primary
## 132                                             Some primary
## 133                                             Some primary
## 134                                             Some primary
## 135                                             Some primary
## 136                                             Some primary
## 137                                      No formal education
## 138                                             Some primary
## 139                                             Some primary
## 140                                      No formal education
## 141                                             Some primary
## 142                                             Some primary
## 143                                             Some primary
## 144                                      No formal education
## 145                                             Some primary
## 146                                             Some primary
## 147                                             Some primary
## 148                                             Some primary
## 149                                             Some primary
## 150                                      No formal education
## 151                                             Some primary
## 152                                      No formal education
## 153                                             Some primary
## 154                                             Some primary
## 155                                             Some primary
## 156                                             Some primary
## 157                                      No formal education
## 158                                             Some primary
## 159                                             Some primary
## 160                                             Some primary
## 161                                             Some primary
## 162                                             Some primary
## 163                                             Some primary
## 164                                      No formal education
## 165                                             Some primary
## 166                                             Some primary
## 167                                             Some primary
## 168                                      No formal education
## 169                                             Some primary
## 170                                             Some primary
## 171                                             Some primary
## 172                                             Some primary
## 173                                             Some primary
## 174                                             Some primary
## 175                                             Some primary
## 176                                             Some primary
## 177                                             Some primary
## 178                                             Some primary
## 179                                             Some primary
## 180                                             Some primary
## 181                                             Some primary
## 182                                             Some primary
## 183                                             Some primary
## 184                                             Some primary
## 185                                      No formal education
## 186                                      No formal education
## 187                                             Some primary
## 188                                      No formal education
## 189                                             Some primary
## 190                                             Some primary
## 191                                             Some primary
## 192                                             Some primary
## 193                                             Some primary
## 194                                             Some primary
## 195                                      No formal education
## 196                                             Some primary
## 197                                             Some primary
## 198                                             Some primary
## 199                                             Some primary
## 200                                             Some primary
## 201                                             Some primary
## 202                                             Some primary
## 203                                             Some primary
## 204                                             Some primary
## 205                                             Some primary
## 206                                             Some primary
## 207                                      No formal education
## 208                                             Some primary
## 209                                             Some primary
## 210                                      No formal education
## 211                                             Some primary
## 212                                             Some primary
## 213                                             Some primary
## 214                                      No formal education
## 215                                             Some primary
## 216                                             Some primary
## 217                                             Some primary
## 218                                      No formal education
## 219                                             Some primary
## 220                                             Some primary
## 221                                             Some primary
## 222                                             Some primary
## 223                                             Some primary
## 224                                             Some primary
## 225                                             Some primary
## 226                                             Some primary
## 227                                      No formal education
## 228                                      No formal education
## 229                                             Some primary
## 230                                      No formal education
## 231                                             Some primary
## 232                                             Some primary
## 233                                             Some primary
## 234                                             Some primary
## 235                                             Some primary
## 236                                             Some primary
## 237                                             Some primary
## 238                                             Some primary
## 239                                             Some primary
## 240                                             Some primary
## 241                                             Some primary
## 242                                             Some primary
## 243                                             Some primary
## 244                                             Some primary
## 245                                             Some primary
## 246                                             Some primary
## 247                                             Some primary
## 248                                             Some primary
## 249                                      No formal education
## 250                                             Some primary
## 251                                             Some primary
## 252                                             Some primary
## 253                                             Some primary
## 254                                      No formal education
## 255                                             Some primary
## 256                                             Some primary
## 257                                      No formal education
## 258                                             Some primary
## 259                                             Some primary
## 260                                             Some primary
## 261                                             Some primary
## 262                                             Some primary
## 263                                             Some primary
## 264                                             Some primary
## 265                                             Some primary
## 266                                             Some primary
## 267                                             Some primary
## 268                                             Some primary
## 269                                             Some primary
## 270                                             Some primary
## 271                                      No formal education
## 272                                             Some primary
## 273                                             Some primary
## 274                                      No formal education
## 275                                             Some primary
## 276                                             Some primary
## 277                                             Some primary
## 278                                             Some primary
## 279                                             Some primary
## 280                                             Some primary
## 281                                             Some primary
## 282                                             Some primary
## 283                                      No formal education
## 284                                      No formal education
## 285                                             Some primary
## 286                                      No formal education
## 287                                             Some primary
## 288                                      No formal education
## 289                                      No formal education
## 290                                             Some primary
## 291                                             Some primary
## 292                                             Some primary
## 293                                      No formal education
## 294                                             Some primary
## 295                                      No formal education
## 296                                             Some primary
## 297                                             Some primary
## 298                                      No formal education
## 299                                             Some primary
## 300                                             Some primary
## 301                                             Some primary
## 302                                             Some primary
## 303                                             Some primary
## 304                                             Some primary
## 305                                      No formal education
## 306                                             Some primary
## 307                                             Some primary
## 308                                      No formal education
## 309                                             Some primary
## 310                                             Some primary
## 311                                             Some primary
## 312                                             Some primary
## 313                                             Some primary
## 314                                             Some primary
## 315                                             Some primary
## 316                                             Some primary
## 317                                      No formal education
## 318                                             Some primary
## 319                                             Some primary
## 320                                             Some primary
## 321                                             Some primary
## 322                                             Some primary
## 323                                             Some primary
## 324                                             Some primary
## 325                                             Some primary
## 326                                             Some primary
## 327                                             Some primary
## 328                                             Some primary
## 329                                             Some primary
## 330                                      No formal education
## 331                                             Some primary
## 332                                             Some primary
## 333                                             Some primary
## 334                                             Some primary
## 335                                             Some primary
## 336                                             Some primary
## 337                                             Some primary
## 338                                             Some primary
## 339                                             Some primary
## 340                                             Some primary
## 341                                             Some primary
## 342                                             Some primary
## 343                                             Some primary
## 344                                             Some primary
## 345                                             Some primary
## 346                                             Some primary
## 347                                             Some primary
## 348                                      No formal education
## 349                                             Some primary
## 350                                      No formal education
## 351                                             Some primary
## 352                                             Some primary
## 353                                             Some primary
## 354                                             Some primary
## 355                                      No formal education
## 356                                             Some primary
## 357                                      No formal education
## 358                                      No formal education
## 359                                             Some primary
## 360                                             Some primary
## 361                                             Some primary
## 362                                             Some primary
## 363                                             Some primary
## 364                                      No formal education
## 365                                             Some primary
## 366                                             Some primary
## 367                                             Some primary
## 368                                             Some primary
## 369                                             Some primary
## 370                                             Some primary
## 371                                             Some primary
## 372                                             Some primary
## 373                                      No formal education
## 374                                             Some primary
## 375                                             Some primary
## 376                                             Some primary
## 377                                             Some primary
## 378                                             Some primary
## 379                                             Some primary
## 380                                             Some primary
## 381                                      No formal education
## 382                                             Some primary
## 383                                             Some primary
## 384                                             Some primary
## 385                                             Some primary
## 386                                             Some primary
## 387                                      No formal education
## 388                                             Some primary
## 389                                             Some primary
## 390                                             Some primary
## 391                                             Some primary
## 392                                             Some primary
## 393                                      No formal education
## 394                                             Some primary
## 395                                      No formal education
## 396                                             Some primary
## 397                                      No formal education
## 398                                             Some primary
## 399                                             Some primary
## 400                                             Some primary
## 401                                             Some primary
## 402                                             Some primary
## 403                                             Some primary
## 404                                      No formal education
## 405                                             Some primary
## 406                                             Some primary
## 407                                             Some primary
## 408                                             Some primary
## 409                                             Some primary
## 410                                      No formal education
## 411                                             Some primary
## 412                                             Some primary
## 413                                             Some primary
## 414                                             Some primary
## 415                                             Some primary
## 416                                             Some primary
## 417                                      No formal education
## 418                                             Some primary
## 419                                             Some primary
## 420                                             Some primary
## 421                                             Some primary
## 422                                             Some primary
## 423                                             Some primary
## 424                                      No formal education
## 425                                             Some primary
## 426                                             Some primary
## 427                                             Some primary
## 428                                      No formal education
## 429                                             Some primary
## 430                                             Some primary
## 431                                             Some primary
## 432                                             Some primary
## 433                                             Some primary
## 434                                      No formal education
## 435                                             Some primary
## 436                                             Some primary
## 437                                             Some primary
## 438                                             Some primary
## 439                                             Some primary
## 440                                             Some primary
## 441                                             Some primary
## 442                                             Some primary
## 443                                             Some primary
## 444                                             Some primary
## 445                                      No formal education
## 446                                             Some primary
## 447                                             Some primary
## 448                                             Some primary
## 449                                             Some primary
## 450                                             Some primary
## 451                                             Some primary
## 452                                      No formal education
## 453                                             Some primary
## 454                                             Some primary
## 455                                             Some primary
## 456                                             Some primary
## 457                                             Some primary
## 458                                             Some primary
## 459                                             Some primary
## 460                                             Some primary
## 461                                             Some primary
## 462                                             Some primary
## 463                                             Some primary
## 464                                      No formal education
## 465                                             Some primary
## 466                                             Some primary
## 467                                      No formal education
## 468                                             Some primary
## 469                                             Some primary
## 470                                             Some primary
## 471                                             Some primary
## 472                                             Some primary
## 473                                             Some primary
## 474                                             Some primary
## 475                                             Some primary
## 476                                             Some primary
## 477                                      No formal education
## 478                                             Some primary
## 479                                             Some primary
## 480                                      No formal education
## 481                                             Some primary
## 482                                             Some primary
## 483                                             Some primary
## 484                                             Some primary
## 485                                             Some primary
## 486                                      No formal education
## 487                                      No formal education
## 488                                      No formal education
## 489                                             Some primary
## 490                                             Some primary
## 491                                             Some primary
## 492                                      No formal education
## 493                                             Some primary
## 494                                             Some primary
## 495                                      No formal education
## 496                                             Some primary
## 497                                             Some primary
## 498                                             Some primary
## 499                                             Some primary
## 500                                      No formal education
## 501                                             Some primary
## 502                                             Some primary
## 503                                             Some primary
## 504                                             Some primary
## 505                                             Some primary
## 506                                             Some primary
## 507                                             Some primary
## 508                                             Some primary
## 509                                      No formal education
## 510                                             Some primary
## 511                                      No formal education
## 512                                             Some primary
## 513                                             Some primary
## 514                                             Some primary
## 515                                             Some primary
## 516                                             Some primary
## 517                                             Some primary
## 518                                             Some primary
## 519                                             Some primary
## 520                                             Some primary
## 521                                             Some primary
## 522                                             Some primary
## 523                                             Some primary
## 524                                             Some primary
## 525                                             Some primary
## 526                                             Some primary
## 527                                             Some primary
## 528                                             Some primary
## 529                                      No formal education
## 530                                             Some primary
## 531                                      No formal education
## 532                                      No formal education
## 533                                             Some primary
## 534                                             Some primary
## 535                                             Some primary
## 536                                             Some primary
## 537                                      No formal education
## 538                                             Some primary
## 539                                             Some primary
## 540                                             Some primary
## 541                                             Some primary
## 542                                             Some primary
## 543                                             Some primary
## 544                                             Some primary
## 545                                             Some primary
## 546                                             Some primary
## 547                                             Some primary
## 548                                             Some primary
## 549                                             Some primary
## 550                                      No formal education
## 551                                             Some primary
## 552                                             Some primary
## 553                                             Some primary
## 554                                             Some primary
## 555                                             Some primary
## 556                                             Some primary
## 557                                             Some primary
## 558                                             Some primary
## 559                                      No formal education
## 560                                      No formal education
## 561                                             Some primary
## 562                                             Some primary
## 563                                      No formal education
## 564                                             Some primary
## 565                                             Some primary
## 566                                             Some primary
## 567                                      No formal education
## 568                                             Some primary
## 569                                      No formal education
## 570                                             Some primary
## 571                                             Some primary
## 572                                      No formal education
## 573                                      No formal education
## 574                                             Some primary
## 575                                             Some primary
## 576                                             Some primary
## 577                                             Some primary
## 578                                             Some primary
## 579                                             Some primary
## 580                                             Some primary
## 581                                             Some primary
## 582                                             Some primary
## 583                                             Some primary
## 584                                      No formal education
## 585                                      No formal education
## 586                                             Some primary
## 587                                             Some primary
## 588                                             Some primary
## 589                                             Some primary
## 590                                             Some primary
## 591                                             Some primary
## 592                                             Some primary
## 593                                             Some primary
## 594                                             Some primary
## 595                                             Some primary
## 596                                             Some primary
## 597                                             Some primary
## 598                                             Some primary
## 599                                             Some primary
## 600                                             Some primary
## 601                                             Some primary
## 602                                      No formal education
## 603                                             Some primary
## 604                                             Some primary
## 605                                             Some primary
## 606                                             Some primary
## 607                                             Some primary
## 608                                             Some primary
## 609                                             Some primary
## 610                                             Some primary
## 611                                             Some primary
## 612                                             Some primary
## 613                                             Some primary
## 614                                             Some primary
## 615                                             Some primary
## 616                                             Some primary
## 617                                             Some primary
## 618                                             Some primary
## 619                                             Some primary
## 620                                             Some primary
## 621                                      No formal education
## 622                                             Some primary
## 623                                             Some primary
## 624                                      No formal education
## 625                                             Some primary
## 626                                             Some primary
## 627                                      No formal education
## 628                                             Some primary
## 629                                             Some primary
## 630                                             Some primary
## 631                                             Some primary
## 632                                             Some primary
## 633                                      No formal education
## 634                                             Some primary
## 635                                      No formal education
## 636                                             Some primary
## 637                                             Some primary
## 638                                             Some primary
## 639                                             Some primary
## 640                                      No formal education
## 641                                             Some primary
## 642                                             Some primary
## 643                                             Some primary
## 644                                             Some primary
## 645                                             Some primary
## 646                                             Some primary
## 647                                             Some primary
## 648                                             Some primary
## 649                                             Some primary
## 650                                             Some primary
## 651                                             Some primary
## 652                                             Some primary
## 653                                             Some primary
## 654                                             Some primary
## 655                                             Some primary
## 656                                             Some primary
## 657                                             Some primary
## 658                                             Some primary
## 659                                             Some primary
## 660                                             Some primary
## 661                                             Some primary
## 662                                             Some primary
## 663                                             Some primary
## 664                                             Some primary
## 665                                      No formal education
## 666                                             Some primary
## 667                                             Some primary
## 668                                             Some primary
## 669                                      No formal education
## 670                                             Some primary
## 671                                             Some primary
## 672                                             Some primary
## 673                                             Some primary
## 674                                             Some primary
## 675                                             Some primary
## 676                                             Some primary
## 677                                             Some primary
## 678                                      No formal education
## 679                                             Some primary
## 680                                      No formal education
## 681                                             Some primary
## 682                                             Some primary
## 683                                             Some primary
## 684                                             Some primary
## 685                                             Some primary
## 686                                             Some primary
## 687                                             Some primary
## 688                                             Some primary
## 689                                             Some primary
## 690                                             Some primary
## 691                                             Some primary
## 692                                             Some primary
## 693                                      No formal education
## 694                                      No formal education
## 695                                             Some primary
## 696                                             Some primary
## 697                                      No formal education
## 698                                             Some primary
## 699                                      No formal education
## 700                                             Some primary
## 701                                             Some primary
## 702                                             Some primary
## 703                                             Some primary
## 704                                             Some primary
## 705                                             Some primary
## 706                                             Some primary
## 707                                      No formal education
## 708                                             Some primary
## 709                                             Some primary
## 710                                             Some primary
## 711                                             Some primary
## 712                                             Some primary
## 713                                             Some primary
## 714                                      No formal education
## 715                                             Some primary
## 716                                             Some primary
## 717                                             Some primary
## 718                                             Some primary
## 719                                             Some primary
## 720                                             Some primary
## 721                                             Some primary
## 722                                             Some primary
## 723                                             Some primary
## 724                                             Some primary
## 725                                             Some primary
## 726                                             Some primary
## 727                                             Some primary
## 728                                             Some primary
## 729                                             Some primary
## 730                                      No formal education
## 731                                             Some primary
## 732                                             Some primary
## 733                                             Some primary
## 734                                             Some primary
## 735                                             Some primary
## 736                                             Some primary
## 737                                             Some primary
## 738                                      No formal education
## 739                                             Some primary
## 740                                             Some primary
## 741                                             Some primary
## 742                                             Some primary
## 743                                             Some primary
## 744                                             Some primary
## 745                                      No formal education
## 746                                             Some primary
## 747                                             Some primary
## 748                                             Some primary
## 749                                      No formal education
## 750                                             Some primary
## 751                                             Some primary
## 752                                      No formal education
## 753                                      No formal education
## 754                                      No formal education
## 755                                             Some primary
## 756                                             Some primary
## 757                                             Some primary
## 758                                             Some primary
## 759                                             Some primary
## 760                                      No formal education
## 761                                             Some primary
## 762                                      No formal education
## 763                                             Some primary
## 764                                             Some primary
## 765                                             Some primary
## 766                                             Some primary
## 767                                             Some primary
## 768                                             Some primary
## 769                                             Some primary
## 770                                      No formal education
## 771                                             Some primary
## 772                                             Some primary
## 773                                      No formal education
## 774                                             Some primary
## 775                                             Some primary
## 776                                      No formal education
## 777                                             Some primary
## 778                                             Some primary
## 779                                             Some primary
## 780                                             Some primary
## 781                                             Some primary
## 782                                             Some primary
## 783                                             Some primary
## 784                                             Some primary
## 785                                             Some primary
## 786                                             Some primary
## 787                                             Some primary
## 788                                             Some primary
## 789                                             Some primary
## 790                                             Some primary
## 791                                             Some primary
## 792                                             Some primary
## 793                                             Some primary
## 794                                             Some primary
## 795                                             Some primary
## 796                                             Some primary
## 797                                             Some primary
## 798                                             Some primary
## 799                                             Some primary
## 800                                             Some primary
## 801                                             Some primary
## 802                                             Some primary
## 803                                             Some primary
## 804                                             Some primary
## 805                                             Some primary
## 806                                             Some primary
## 807                                             Some primary
## 808                                             Some primary
## 809                                             Some primary
## 810                                             Some primary
## 811                                             Some primary
## 812                                             Some primary
## 813                                             Some primary
## 814                                             Some primary
## 815                                      No formal education
## 816                                             Some primary
## 817                                             Some primary
## 818                                             Some primary
## 819                                             Some primary
## 820                                             Some primary
## 821                                             Some primary
## 822                                             Some primary
## 823                                             Some primary
## 824                                             Some primary
## 825                                      No formal education
## 826                                      No formal education
## 827                                             Some primary
## 828                                             Some primary
## 829                                             Some primary
## 830                                             Some primary
## 831                                             Some primary
## 832                                             Some primary
## 833                                      No formal education
## 834                                             Some primary
## 835                                             Some primary
## 836                                             Some primary
## 837                                             Some primary
## 838                                      No formal education
## 839                                             Some primary
## 840                                             Some primary
## 841                                             Some primary
## 842                                             Some primary
## 843                                             Some primary
## 844                                      No formal education
## 845                                      No formal education
## 846                                             Some primary
## 847                                             Some primary
## 848                                             Some primary
## 849                                             Some primary
## 850                                             Some primary
## 851                                             Some primary
## 852                                             Some primary
## 853                                             Some primary
## 854                                             Some primary
## 855                                             Some primary
## 856                                             Some primary
## 857                                      No formal education
## 858                                      No formal education
## 859                                             Some primary
## 860                                             Some primary
## 861                                             Some primary
## 862                                             Some primary
## 863                                             Some primary
## 864                                      No formal education
## 865                                             Some primary
## 866                                             Some primary
## 867                                             Some primary
## 868                                             Some primary
## 869                                             Some primary
## 870                                             Some primary
## 871                                             Some primary
## 872                                             Some primary
## 873                                             Some primary
## 874                                             Some primary
## 875                                             Some primary
## 876                                             Some primary
## 877                                             Some primary
## 878                                             Some primary
## 879                                             Some primary
## 880                                             Some primary
## 881                                             Some primary
## 882                                             Some primary
## 883                                             Some primary
## 884                                             Some primary
## 885                                      No formal education
## 886                                             Some primary
## 887                                             Some primary
## 888                                             Some primary
## 889                                             Some primary
## 890                                             Some primary
## 891                                             Some primary
## 892                                             Some primary
## 893                                             Some primary
## 894                                      No formal education
## 895                                             Some primary
## 896                                             Some primary
## 897                                      No formal education
## 898                                             Some primary
## 899                                             Some primary
## 900                                             Some primary
## 901                                             Some primary
## 902                                      No formal education
## 903                                             Some primary
## 904                                             Some primary
## 905                                             Some primary
## 906                                             Some primary
## 907                                             Some primary
## 908                                             Some primary
## 909                                             Some primary
## 910                                             Some primary
## 911                                             Some primary
## 912                                             Some primary
## 913                                             Some primary
## 914                                             Some primary
## 915                                      No formal education
## 916                                             Some primary
## 917                                             Some primary
## 918                                             Some primary
## 919                                             Some primary
## 920                                             Some primary
## 921                                      No formal education
## 922                                      No formal education
## 923                                             Some primary
## 924                                             Some primary
## 925                                      No formal education
## 926                                      No formal education
## 927                                      No formal education
## 928                                             Some primary
## 929                                             Some primary
## 930                                             Some primary
## 931                                             Some primary
## 932                                             Some primary
## 933                                             Some primary
## 934                                             Some primary
## 935                                             Some primary
## 936                                             Some primary
## 937                                             Some primary
## 938                                      No formal education
## 939                                             Some primary
## 940                                             Some primary
## 941                                             Some primary
## 942                                             Some primary
## 943                                             Some primary
## 944                                             Some primary
## 945                                             Some primary
## 946                                      No formal education
## 947                                             Some primary
## 948                                             Some primary
## 949                                      No formal education
## 950                                             Some primary
## 951                                             Some primary
## 952                                             Some primary
## 953                                             Some primary
## 954                                             Some primary
## 955                                             Some primary
## 956                                             Some primary
## 957                                             Some primary
## 958                                      No formal education
## 959                                      No formal education
## 960                                             Some primary
## 961                                             Some primary
## 962                                             Some primary
## 963                                             Some primary
## 964                                             Some primary
## 965                                      No formal education
## 966                                             Some primary
## 967                                             Some primary
## 968                                             Some primary
## 969                                             Some primary
## 970                                             Some primary
## 971                                             Some primary
## 972                                             Some primary
## 973                                             Some primary
## 974                                             Some primary
## 975                                             Some primary
## 976                                             Some primary
## 977                                      No formal education
## 978                                             Some primary
## 979                                      No formal education
## 980                                             Some primary
## 981                                      No formal education
## 982                                             Some primary
## 983                                             Some primary
## 984                                      No formal education
## 985                                      No formal education
## 986                                             Some primary
## 987                                             Some primary
## 988                                             Some primary
## 989                                             Some primary
## 990                                      No formal education
## 991                                             Some primary
## 992                                             Some primary
## 993                                      No formal education
## 994                                             Some primary
## 995                                             Some primary
## 996                                             Some primary
## 997                                             Some primary
## 998                                      No formal education
## 999                                             Some primary
## 1000                                            Some primary
## 1001                                     No formal education
## 1002                                            Some primary
## 1003                                            Some primary
## 1004                                            Some primary
## 1005                                            Some primary
## 1006                                     No formal education
## 1007                                            Some primary
## 1008                                            Some primary
## 1009                                            Some primary
## 1010                                            Some primary
## 1011                                            Some primary
## 1012                                            Some primary
## 1013                                            Some primary
## 1014                                            Some primary
## 1015                                            Some primary
## 1016                                     No formal education
## 1017                                            Some primary
## 1018                                            Some primary
## 1019                                            Some primary
## 1020                                            Some primary
## 1021                                            Some primary
## 1022                                            Some primary
## 1023                                            Some primary
## 1024                                            Some primary
## 1025                                            Some primary
## 1026                                            Some primary
## 1027                                     No formal education
## 1028                                            Some primary
## 1029                                            Some primary
## 1030                                            Some primary
## 1031                                     No formal education
## 1032                                            Some primary
## 1033                                     No formal education
## 1034                                     No formal education
## 1035                                            Some primary
## 1036                                            Some primary
## 1037                                     No formal education
## 1038                                     No formal education
## 1039                                            Some primary
## 1040                                            Some primary
## 1041                                     No formal education
## 1042                                     No formal education
## 1043                                            Some primary
## 1044                                     No formal education
## 1045                                     No formal education
## 1046                                            Some primary
## 1047                                            Some primary
## 1048                                            Some primary
## 1049                                            Some primary
## 1050                                            Some primary
## 1051                                            Some primary
## 1052                                            Some primary
## 1053                                     No formal education
## 1054                                            Some primary
## 1055                                     No formal education
## 1056                                     No formal education
## 1057                                            Some primary
## 1058                                     No formal education
## 1059                                            Some primary
## 1060                                     No formal education
## 1061                                            Some primary
## 1062                                            Some primary
## 1063                                            Some primary
## 1064                                     No formal education
## 1065                                     No formal education
## 1066                                            Some primary
## 1067                                            Some primary
## 1068                                            Some primary
## 1069                                            Some primary
## 1070                                            Some primary
## 1071                                            Some primary
## 1072                                     No formal education
## 1073                                     No formal education
## 1074                                            Some primary
## 1075                                            Some primary
## 1076                                            Some primary
## 1077                                            Some primary
## 1078                                            Some primary
## 1079                                            Some primary
## 1080                                            Some primary
## 1081                                            Some primary
## 1082                                            Some primary
## 1083                                            Some primary
## 1084                                            Some primary
## 1085                                            Some primary
## 1086                                            Some primary
## 1087                                            Some primary
## 1088                                            Some primary
## 1089                                            Some primary
## 1090                                            Some primary
## 1091                                            Some primary
## 1092                                            Some primary
## 1093                                            Some primary
## 1094                                            Some primary
## 1095                                            Some primary
## 1096                                            Some primary
## 1097                                     No formal education
## 1098                                            Some primary
## 1099                                            Some primary
## 1100                                     No formal education
## 1101                                            Some primary
## 1102                                            Some primary
## 1103                                            Some primary
## 1104                                            Some primary
## 1105                                            Some primary
## 1106                                            Some primary
## 1107                                            Some primary
## 1108                                            Some primary
## 1109                                            Some primary
## 1110                                     No formal education
## 1111                                            Some primary
## 1112                                     No formal education
## 1113                                     No formal education
## 1114                                            Some primary
## 1115                                            Some primary
## 1116                                            Some primary
## 1117                                     No formal education
## 1118                                            Some primary
## 1119                                            Some primary
## 1120                                            Some primary
## 1121                                     No formal education
## 1122                                     No formal education
## 1123                                            Some primary
## 1124                                     No formal education
## 1125                                            Some primary
## 1126                                     No formal education
## 1127                                            Some primary
## 1128                                     No formal education
## 1129                                            Some primary
## 1130                                            Some primary
## 1131                                            Some primary
## 1132                                     No formal education
## 1133                                     No formal education
## 1134                                            Some primary
## 1135                                            Some primary
## 1136                                            Some primary
## 1137                                     No formal education
## 1138                                            Some primary
## 1139                                            Some primary
## 1140                                            Some primary
## 1141                                            Some primary
## 1142                                            Some primary
## 1143                                            Some primary
## 1144                                            Some primary
## 1145                                            Some primary
## 1146                                     No formal education
## 1147                                            Some primary
## 1148                                            Some primary
## 1149                                            Some primary
## 1150                                     No formal education
## 1151                                            Some primary
## 1152                                            Some primary
## 1153                                            Some primary
## 1154                                            Some primary
## 1155                                            Some primary
## 1156                                            Some primary
## 1157                                            Some primary
## 1158                                            Some primary
## 1159                                            Some primary
## 1160                                            Some primary
## 1161                                            Some primary
## 1162                                            Some primary
## 1163                                            Some primary
## 1164                                            Some primary
## 1165                                     No formal education
## 1166                                            Some primary
## 1167                                            Some primary
## 1168                                            Some primary
## 1169                                            Some primary
## 1170                                            Some primary
## 1171                                            Some primary
## 1172                                     No formal education
## 1173                                            Some primary
## 1174                                            Some primary
## 1175                                            Some primary
## 1176                                            Some primary
## 1177                                            Some primary
## 1178                                            Some primary
## 1179                                     No formal education
## 1180                                            Some primary
## 1181                                     No formal education
## 1182                                            Some primary
## 1183                                            Some primary
## 1184                                            Some primary
## 1185                                            Some primary
## 1186                                            Some primary
## 1187                                            Some primary
## 1188                                            Some primary
## 1189                                            Some primary
## 1190                                     No formal education
## 1191                                            Some primary
## 1192                                            Some primary
## 1193                                     No formal education
## 1194                                            Some primary
## 1195                                            Some primary
## 1196                                            Some primary
## 1197                                            Some primary
## 1198                                            Some primary
## 1199                                            Some primary
## 1200                                            Some primary
## 1201                                     No formal education
## 1202                                     No formal education
## 1203                                            Some primary
## 1204                                            Some primary
## 1205                                            Some primary
## 1206                                            Some primary
## 1207                                            Some primary
## 1208                                            Some primary
## 1209                                            Some primary
## 1210                                            Some primary
## 1211                                            Some primary
## 1212                                            Some primary
## 1213                                     No formal education
## 1214                                            Some primary
## 1215                                            Some primary
## 1216                                            Some primary
## 1217                                     No formal education
## 1218                                            Some primary
## 1219                                            Some primary
## 1220                                            Some primary
## 1221                                            Some primary
## 1222                                            Some primary
## 1223                                            Some primary
## 1224                                     No formal education
## 1225                                            Some primary
## 1226                                            Some primary
## 1227                                            Some primary
## 1228                                            Some primary
## 1229                                            Some primary
## 1230                                            Some primary
## 1231                                            Some primary
## 1232                                     No formal education
## 1233                                            Some primary
## 1234                                            Some primary
## 1235                                            Some primary
## 1236                                            Some primary
## 1237                                            Some primary
## 1238                                            Some primary
## 1239                                            Some primary
## 1240                                            Some primary
## 1241                                            Some primary
## 1242                                     No formal education
## 1243                                            Some primary
## 1244                                            Some primary
## 1245                                            Some primary
## 1246                                            Some primary
## 1247                                            Some primary
## 1248                                            Some primary
## 1249                                            Some primary
## 1250                                     No formal education
## 1251                                            Some primary
## 1252                                            Some primary
## 1253                                            Some primary
## 1254                                            Some primary
## 1255                                            Some primary
## 1256                                            Some primary
## 1257                                            Some primary
## 1258                                            Some primary
## 1259                                            Some primary
## 1260                                            Some primary
## 1261                                            Some primary
## 1262                                            Some primary
## 1263                                     No formal education
## 1264                                            Some primary
## 1265                                            Some primary
## 1266                                            Some primary
## 1267                                     No formal education
## 1268                                            Some primary
## 1269                                            Some primary
## 1270                                            Some primary
## 1271                                            Some primary
## 1272                                            Some primary
## 1273                                            Some primary
## 1274                                            Some primary
## 1275                                            Some primary
## 1276                                            Some primary
## 1277                                     No formal education
## 1278                                     No formal education
## 1279                                            Some primary
## 1280                                            Some primary
## 1281                                            Some primary
## 1282                                            Some primary
## 1283                                            Some primary
## 1284                                            Some primary
## 1285                                            Some primary
## 1286                                     No formal education
## 1287                                            Some primary
## 1288                                            Some primary
## 1289                                            Some primary
## 1290                                     No formal education
## 1291                                     No formal education
## 1292                                     No formal education
## 1293                                            Some primary
## 1294                                            Some primary
## 1295                                            Some primary
## 1296                                            Some primary
## 1297                                            Some primary
## 1298                                            Some primary
## 1299                                            Some primary
## 1300                                            Some primary
## 1301                                     No formal education
## 1302                                            Some primary
## 1303                                            Some primary
## 1304                                            Some primary
## 1305                                            Some primary
## 1306                                            Some primary
## 1307                                     No formal education
## 1308                                     No formal education
## 1309                                            Some primary
## 1310                                     No formal education
## 1311                                            Some primary
## 1312                                            Some primary
## 1313                                            Some primary
## 1314                                            Some primary
## 1315                                            Some primary
## 1316                                     No formal education
## 1317                                            Some primary
## 1318                                            Some primary
## 1319                                            Some primary
## 1320                                            Some primary
## 1321                                            Some primary
## 1322                                            Some primary
## 1323                                     No formal education
## 1324                                            Some primary
## 1325                                            Some primary
## 1326                                            Some primary
## 1327                                            Some primary
## 1328                                            Some primary
## 1329                                            Some primary
## 1330                                     No formal education
## 1331                                            Some primary
## 1332                                     No formal education
## 1333                                     No formal education
## 1334                                            Some primary
## 1335                                            Some primary
## 1336                                            Some primary
## 1337                                            Some primary
## 1338                                            Some primary
## 1339                                            Some primary
## 1340                                            Some primary
## 1341                                     No formal education
## 1342                                            Some primary
## 1343                                            Some primary
## 1344                                            Some primary
## 1345                                            Some primary
## 1346                                            Some primary
## 1347                                            Some primary
## 1348                                            Some primary
## 1349                                            Some primary
## 1350                                            Some primary
## 1351                                            Some primary
## 1352                                     No formal education
## 1353                                            Some primary
## 1354                                            Some primary
## 1355                                            Some primary
## 1356                                     No formal education
## 1357                                            Some primary
## 1358                                            Some primary
## 1359                                            Some primary
## 1360                                            Some primary
## 1361                                            Some primary
## 1362                                            Some primary
## 1363                                            Some primary
## 1364                                     No formal education
## 1365                                            Some primary
## 1366                                            Some primary
## 1367                                            Some primary
## 1368                                            Some primary
## 1369                                            Some primary
## 1370                                            Some primary
## 1371                                     No formal education
## 1372                                            Some primary
## 1373                                            Some primary
## 1374                                     No formal education
## 1375                                     No formal education
## 1376                                            Some primary
## 1377                                            Some primary
## 1378                                            Some primary
## 1379                                            Some primary
## 1380                                            Some primary
## 1381                                            Some primary
## 1382                                            Some primary
## 1383                                            Some primary
## 1384                                            Some primary
## 1385                                            Some primary
## 1386                                            Some primary
## 1387                                            Some primary
## 1388                                            Some primary
## 1389                                     No formal education
## 1390                                            Some primary
## 1391                                            Some primary
## 1392                                            Some primary
## 1393                                            Some primary
## 1394                                            Some primary
## 1395                                            Some primary
## 1396                                            Some primary
## 1397                                            Some primary
## 1398                                            Some primary
## 1399                                     No formal education
## 1400                                            Some primary
## 1401                                            Some primary
## 1402                                            Some primary
## 1403                                            Some primary
## 1404                                            Some primary
## 1405                                     No formal education
## 1406                                            Some primary
## 1407                                     No formal education
## 1408                                            Some primary
## 1409                                            Some primary
## 1410                                            Some primary
## 1411                                            Some primary
## 1412                                     No formal education
## 1413                                     No formal education
## 1414                                            Some primary
## 1415                                            Some primary
## 1416                                            Some primary
## 1417                                     No formal education
## 1418                                     No formal education
## 1419                                     No formal education
## 1420                                            Some primary
## 1421                                     No formal education
## 1422                                     No formal education
## 1423                                     No formal education
## 1424                                            Some primary
## 1425                                            Some primary
## 1426                                            Some primary
## 1427                                            Some primary
## 1428                                            Some primary
## 1429                                            Some primary
## 1430                                     No formal education
## 1431                                            Some primary
## 1432                                            Some primary
## 1433                                            Some primary
## 1434                                            Some primary
## 1435                                            Some primary
## 1436                                            Some primary
## 1437                                     No formal education
## 1438                                            Some primary
## 1439                                            Some primary
## 1440                                     No formal education
## 1441                                     No formal education
## 1442                                            Some primary
## 1443                                            Some primary
## 1444                                            Some primary
## 1445                                            Some primary
## 1446                                     No formal education
## 1447                                            Some primary
## 1448                                            Some primary
## 1449                                            Some primary
## 1450                                     No formal education
## 1451                                            Some primary
## 1452                                            Some primary
## 1453                                            Some primary
## 1454                                            Some primary
## 1455                                            Some primary
## 1456                                     No formal education
## 1457                                     No formal education
## 1458                                            Some primary
## 1459                                            Some primary
## 1460                                            Some primary
## 1461                                     No formal education
## 1462                                            Some primary
## 1463                                            Some primary
## 1464                                            Some primary
## 1465                                            Some primary
## 1466                                            Some primary
## 1467                                            Some primary
## 1468                                            Some primary
## 1469                                            Some primary
## 1470                                            Some primary
## 1471                                     No formal education
## 1472                                     No formal education
## 1473                                            Some primary
## 1474                                            Some primary
## 1475                                     No formal education
## 1476                                            Some primary
## 1477                                            Some primary
## 1478                                            Some primary
## 1479                                            Some primary
## 1480                                            Some primary
## 1481                                            Some primary
## 1482                                            Some primary
## 1483                                            Some primary
## 1484                                            Some primary
## 1485                                            Some primary
## 1486                                     No formal education
## 1487                                     No formal education
## 1488                                            Some primary
## 1489                                            Some primary
## 1490                                     No formal education
## 1491                                     No formal education
## 1492                                            Some primary
## 1493                                            Some primary
## 1494                                            Some primary
## 1495                                            Some primary
## 1496                                            Some primary
## 1497                                            Some primary
## 1498                                            Some primary
## 1499                                            Some primary
## 1500                                            Some primary
## 1501                                            Some primary
## 1502                                            Some primary
## 1503                                            Some primary
## 1504                                            Some primary
## 1505                                            Some primary
## 1506                                            Some primary
## 1507                                            Some primary
## 1508                                            Some primary
## 1509                                            Some primary
## 1510                                            Some primary
## 1511                                            Some primary
## 1512                                     No formal education
## 1513                                            Some primary
## 1514                                            Some primary
## 1515                                            Some primary
## 1516                                            Some primary
## 1517                                            Some primary
## 1518                                            Some primary
## 1519                                            Some primary
## 1520                                     No formal education
## 1521                                            Some primary
## 1522                                            Some primary
## 1523                                            Some primary
## 1524                                            Some primary
## 1525                                            Some primary
## 1526                                            Some primary
## 1527                                            Some primary
## 1528                                            Some primary
## 1529                                            Some primary
## 1530                                     No formal education
## 1531                                     No formal education
## 1532                                            Some primary
## 1533                                            Some primary
## 1534                                            Some primary
## 1535                                            Some primary
## 1536                                     No formal education
## 1537                                            Some primary
## 1538                                            Some primary
## 1539                                            Some primary
## 1540                                     No formal education
## 1541                                            Some primary
## 1542                                            Some primary
## 1543                                            Some primary
## 1544                                     No formal education
## 1545                                            Some primary
## 1546                                     No formal education
## 1547                                            Some primary
## 1548                                            Some primary
## 1549                                            Some primary
## 1550                                            Some primary
## 1551                                            Some primary
## 1552                                            Some primary
## 1553                                            Some primary
## 1554                                            Some primary
## 1555                                            Some primary
## 1556                                            Some primary
## 1557                                            Some primary
## 1558                                            Some primary
## 1559                                            Some primary
## 1560                                     No formal education
## 1561                                            Some primary
## 1562                                            Some primary
## 1563                                            Some primary
## 1564                                            Some primary
## 1565                                            Some primary
## 1566                                            Some primary
## 1567                                            Some primary
## 1568                                     No formal education
## 1569                                            Some primary
## 1570                                            Some primary
## 1571                                            Some primary
## 1572                                     No formal education
## 1573                                            Some primary
## 1574                                     No formal education
## 1575                                            Some primary
## 1576                                     No formal education
## 1577                                            Some primary
## 1578                                            Some primary
## 1579                                            Some primary
## 1580                                            Some primary
## 1581                                            Some primary
## 1582                                            Some primary
## 1583                                            Some primary
## 1584                                     No formal education
## 1585                                            Some primary
## 1586                                            Some primary
## 1587                                            Some primary
## 1588                                            Some primary
## 1589                                            Some primary
## 1590                                            Some primary
## 1591                                     No formal education
## 1592                                            Some primary
## 1593                                            Some primary
## 1594                                            Some primary
## 1595                                            Some primary
## 1596                                            Some primary
## 1597                                            Some primary
## 1598                                            Some primary
## 1599                                            Some primary
## 1600                                            Some primary
## 1601                                            Some primary
## 1602                                            Some primary
## 1603                                            Some primary
## 1604                                            Some primary
## 1605                                            Some primary
## 1606                                            Some primary
## 1607                                            Some primary
## 1608                                            Some primary
## 1609                                            Some primary
## 1610                                            Some primary
## 1611                                            Some primary
## 1612                                            Some primary
## 1613                                            Some primary
## 1614                                     No formal education
## 1615                                            Some primary
## 1616                                            Some primary
## 1617                                            Some primary
## 1618                                            Some primary
## 1619                                            Some primary
## 1620                                            Some primary
## 1621                                            Some primary
## 1622                                            Some primary
## 1623                                            Some primary
## 1624                                            Some primary
## 1625                                            Some primary
## 1626                                            Some primary
## 1627                                            Some primary
## 1628                                            Some primary
## 1629                                            Some primary
## 1630                                            Some primary
## 1631                                     No formal education
## 1632                                            Some primary
## 1633                                            Some primary
## 1634                                     No formal education
## 1635                                            Some primary
## 1636                                            Some primary
## 1637                                     No formal education
## 1638                                     No formal education
## 1639                                            Some primary
## 1640                                            Some primary
## 1641                                     No formal education
## 1642                                            Some primary
## 1643                                            Some primary
## 1644                                            Some primary
## 1645                                            Some primary
## 1646                                            Some primary
## 1647                                            Some primary
## 1648                                            Some primary
## 1649                                            Some primary
## 1650                                            Some primary
## 1651                                            Some primary
## 1652                                            Some primary
## 1653                                     No formal education
## 1654                                            Some primary
## 1655                                            Some primary
## 1656                                            Some primary
## 1657                                            Some primary
## 1658                                            Some primary
## 1659                                            Some primary
## 1660                                     No formal education
## 1661                                            Some primary
## 1662                                            Some primary
## 1663                                            Some primary
## 1664                                            Some primary
## 1665                                            Some primary
## 1666                                            Some primary
## 1667                                            Some primary
## 1668                                            Some primary
## 1669                                     No formal education
## 1670                                     No formal education
## 1671                                            Some primary
## 1672                                            Some primary
## 1673                                            Some primary
## 1674                                            Some primary
## 1675                                            Some primary
## 1676                                            Some primary
## 1677                                            Some primary
## 1678                                            Some primary
## 1679                                            Some primary
## 1680                                            Some primary
## 1681                                            Some primary
## 1682                                            Some primary
## 1683                                            Some primary
## 1684                                            Some primary
## 1685                                            Some primary
## 1686                                            Some primary
## 1687                                            Some primary
## 1688                                            Some primary
## 1689                                            Some primary
## 1690                                            Some primary
## 1691                                            Some primary
## 1692                                     No formal education
## 1693                                     No formal education
## 1694                                            Some primary
## 1695                                            Some primary
## 1696                                            Some primary
## 1697                                     No formal education
## 1698                                            Some primary
## 1699                                     No formal education
## 1700                                            Some primary
## 1701                                     No formal education
## 1702                                     No formal education
## 1703                                            Some primary
## 1704                                            Some primary
## 1705                                            Some primary
## 1706                                            Some primary
## 1707                                            Some primary
## 1708                                            Some primary
## 1709                                            Some primary
## 1710                                            Some primary
## 1711                                            Some primary
## 1712                                     No formal education
## 1713                                            Some primary
## 1714                                            Some primary
## 1715                                            Some primary
## 1716                                     No formal education
## 1717                                     No formal education
## 1718                                            Some primary
## 1719                                            Some primary
## 1720                                            Some primary
## 1721                                            Some primary
## 1722                                            Some primary
## 1723                                            Some primary
## 1724                                            Some primary
## 1725                                            Some primary
## 1726                                            Some primary
## 1727                                            Some primary
## 1728                                            Some primary
## 1729                                     No formal education
## 1730                                            Some primary
## 1731                                            Some primary
## 1732                                            Some primary
## 1733                                            Some primary
## 1734                                            Some primary
## 1735                                            Some primary
## 1736                                            Some primary
## 1737                                            Some primary
## 1738                                            Some primary
## 1739                                            Some primary
## 1740                                            Some primary
## 1741                                            Some primary
## 1742                                     No formal education
## 1743                                            Some primary
## 1744                                            Some primary
## 1745                                            Some primary
## 1746                                            Some primary
## 1747                                            Some primary
## 1748                                            Some primary
## 1749                                            Some primary
## 1750                                            Some primary
## 1751                                     No formal education
## 1752                                            Some primary
## 1753                                            Some primary
## 1754                                            Some primary
## 1755                                            Some primary
## 1756                                            Some primary
## 1757                                            Some primary
## 1758                                     No formal education
## 1759                                            Some primary
## 1760                                            Some primary
## 1761                                            Some primary
## 1762                                            Some primary
## 1763                                            Some primary
## 1764                                     No formal education
## 1765                                            Some primary
## 1766                                            Some primary
## 1767                                            Some primary
## 1768                                            Some primary
## 1769                                     No formal education
## 1770                                            Some primary
## 1771                                            Some primary
## 1772                                            Some primary
## 1773                                            Some primary
## 1774                                     No formal education
## 1775                                            Some primary
## 1776                                            Some primary
## 1777                                     No formal education
## 1778                                            Some primary
## 1779                                            Some primary
## 1780                                            Some primary
## 1781                                            Some primary
## 1782                                            Some primary
## 1783                                            Some primary
## 1784                                            Some primary
## 1785                                            Some primary
## 1786                                            Some primary
## 1787                                            Some primary
## 1788                                            Some primary
## 1789                                            Some primary
## 1790                                            Some primary
## 1791                                            Some primary
## 1792                                            Some primary
## 1793                                     No formal education
## 1794                                     No formal education
## 1795                                            Some primary
## 1796                                            Some primary
## 1797                                            Some primary
## 1798                                     No formal education
## 1799                                            Some primary
## 1800                                            Some primary
## 1801                                            Some primary
## 1802                                            Some primary
## 1803                                            Some primary
## 1804                                            Some primary
## 1805                                            Some primary
## 1806                                            Some primary
## 1807                                            Some primary
## 1808                                            Some primary
## 1809                                            Some primary
## 1810                                            Some primary
## 1811                                            Some primary
## 1812                                            Some primary
## 1813                                     No formal education
## 1814                                     No formal education
## 1815                                            Some primary
## 1816                                            Some primary
## 1817                                     No formal education
## 1818                                            Some primary
## 1819                                            Some primary
## 1820                                            Some primary
## 1821                                            Some primary
## 1822                                            Some primary
## 1823                                            Some primary
## 1824                                            Some primary
## 1825                                     No formal education
## 1826                                            Some primary
## 1827                                            Some primary
## 1828                                            Some primary
## 1829                                            Some primary
## 1830                                            Some primary
## 1831                                     No formal education
## 1832                                            Some primary
## 1833                                            Some primary
## 1834                                     No formal education
## 1835                                            Some primary
## 1836                                            Some primary
## 1837                                            Some primary
## 1838                                            Some primary
## 1839                                            Some primary
## 1840                                     No formal education
## 1841                                     No formal education
## 1842                                            Some primary
## 1843                                            Some primary
## 1844                                            Some primary
## 1845                                     No formal education
## 1846                                            Some primary
## 1847                                            Some primary
## 1848                                            Some primary
## 1849                                            Some primary
## 1850                                            Some primary
## 1851                                            Some primary
## 1852                                            Some primary
## 1853                                            Some primary
## 1854                                            Some primary
## 1855                                            Some primary
## 1856                                            Some primary
## 1857                                            Some primary
## 1858                                            Some primary
## 1859                                            Some primary
## 1860                                            Some primary
## 1861                                            Some primary
## 1862                                     No formal education
## 1863                                            Some primary
## 1864                                            Some primary
## 1865                                            Some primary
## 1866                                            Some primary
## 1867                                            Some primary
## 1868                                            Some primary
## 1869                                            Some primary
## 1870                                            Some primary
## 1871                                            Some primary
## 1872                                     No formal education
## 1873                                            Some primary
## 1874                                     No formal education
## 1875                                            Some primary
## 1876                                            Some primary
## 1877                                            Some primary
## 1878                                            Some primary
## 1879                                            Some primary
## 1880                                     No formal education
## 1881                                            Some primary
## 1882                                            Some primary
## 1883                                            Some primary
## 1884                                            Some primary
## 1885                                            Some primary
## 1886                                            Some primary
## 1887                                            Some primary
## 1888                                     No formal education
## 1889                                            Some primary
## 1890                                     No formal education
## 1891                                     No formal education
## 1892                                            Some primary
## 1893                                            Some primary
## 1894                                     No formal education
## 1895                                            Some primary
## 1896                                            Some primary
## 1897                                            Some primary
## 1898                                     No formal education
## 1899                                            Some primary
## 1900                                            Some primary
## 1901                                            Some primary
## 1902                                            Some primary
## 1903                                            Some primary
## 1904                                     No formal education
## 1905                                            Some primary
## 1906                                            Some primary
## 1907                                            Some primary
## 1908                                     No formal education
## 1909                                            Some primary
## 1910                                            Some primary
## 1911                                            Some primary
## 1912                                            Some primary
## 1913                                            Some primary
## 1914                                            Some primary
## 1915                                     No formal education
## 1916                                            Some primary
## 1917                                            Some primary
## 1918                                            Some primary
## 1919                                            Some primary
## 1920                                            Some primary
## 1921                                            Some primary
## 1922                                            Some primary
## 1923                                            Some primary
## 1924                                            Some primary
## 1925                                            Some primary
## 1926                                            Some primary
## 1927                                     No formal education
## 1928                                            Some primary
## 1929                                     No formal education
## 1930                                            Some primary
## 1931                                            Some primary
## 1932                                            Some primary
## 1933                                            Some primary
## 1934                                     No formal education
## 1935                                            Some primary
## 1936                                            Some primary
## 1937                                            Some primary
## 1938                                            Some primary
## 1939                                            Some primary
## 1940                                            Some primary
## 1941                                            Some primary
## 1942                                            Some primary
## 1943                                     No formal education
## 1944                                            Some primary
## 1945                                            Some primary
## 1946                                            Some primary
## 1947                                            Some primary
## 1948                                            Some primary
## 1949                                            Some primary
## 1950                                            Some primary
## 1951                                            Some primary
## 1952                                            Some primary
## 1953                                            Some primary
## 1954                                            Some primary
## 1955                                            Some primary
## 1956                                            Some primary
## 1957                                            Some primary
## 1958                                            Some primary
## 1959                                     No formal education
## 1960                                            Some primary
## 1961                                            Some primary
## 1962                                            Some primary
## 1963                                            Some primary
## 1964                                            Some primary
## 1965                                            Some primary
## 1966                                            Some primary
## 1967                                            Some primary
## 1968                                            Some primary
## 1969                                            Some primary
## 1970                                     No formal education
## 1971                                            Some primary
## 1972                                            Some primary
## 1973                                            Some primary
## 1974                                     No formal education
## 1975                                            Some primary
## 1976                                            Some primary
## 1977                                            Some primary
## 1978                                            Some primary
## 1979                                            Some primary
## 1980                                            Some primary
## 1981                                            Some primary
## 1982                                            Some primary
## 1983                                            Some primary
## 1984                                            Some primary
## 1985                                            Some primary
## 1986                                            Some primary
## 1987                                            Some primary
## 1988                                            Some primary
## 1989                                            Some primary
## 1990                                            Some primary
## 1991                                            Some primary
## 1992                                            Some primary
## 1993                                            Some primary
## 1994                                            Some primary
## 1995                                            Some primary
## 1996                                            Some primary
## 1997                                     No formal education
## 1998                                            Some primary
## 1999                                            Some primary
## 2000                                            Some primary
## 2001                                            Some primary
## 2002                                            Some primary
## 2003                                     No formal education
## 2004                                            Some primary
## 2005                                            Some primary
## 2006                                            Some primary
## 2007                                            Some primary
## 2008                                            Some primary
## 2009                                            Some primary
## 2010                                            Some primary
## 2011                                            Some primary
## 2012                                            Some primary
## 2013                                            Some primary
## 2014                                            Some primary
## 2015                                            Some primary
## 2016                                            Some primary
## 2017                                     No formal education
## 2018                                            Some primary
## 2019                                            Some primary
## 2020                                            Some primary
## 2021                                            Some primary
## 2022                                            Some primary
## 2023                                            Some primary
## 2024                                            Some primary
## 2025                                     No formal education
## 2026                                            Some primary
## 2027                                            Some primary
## 2028                                            Some primary
## 2029                                            Some primary
## 2030                                            Some primary
## 2031                                            Some primary
## 2032                                            Some primary
## 2033                                            Some primary
## 2034                                            Some primary
## 2035                                            Some primary
## 2036                                            Some primary
## 2037                                     No formal education
## 2038                                            Some primary
## 2039                                            Some primary
## 2040                                            Some primary
## 2041                                            Some primary
## 2042                                     No formal education
## 2043                                            Some primary
## 2044                                            Some primary
## 2045                                            Some primary
## 2046                                            Some primary
## 2047                                            Some primary
## 2048                                            Some primary
## 2049                                            Some primary
## 2050                                            Some primary
## 2051                                            Some primary
## 2052                                            Some primary
## 2053                                     No formal education
## 2054                                            Some primary
## 2055                                            Some primary
## 2056                                            Some primary
## 2057                                            Some primary
## 2058                                            Some primary
## 2059                                            Some primary
## 2060                                            Some primary
## 2061                                     No formal education
## 2062                                            Some primary
## 2063                                            Some primary
## 2064                                            Some primary
## 2065                                            Some primary
## 2066                                            Some primary
## 2067                                            Some primary
## 2068                                            Some primary
## 2069                                            Some primary
## 2070                                            Some primary
## 2071                                            Some primary
## 2072                                            Some primary
## 2073                                            Some primary
## 2074                                            Some primary
## 2075                                            Some primary
## 2076                                     No formal education
## 2077                                            Some primary
## 2078                                            Some primary
## 2079                                     No formal education
## 2080                                            Some primary
## 2081                                            Some primary
## 2082                                            Some primary
## 2083                                     No formal education
## 2084                                            Some primary
## 2085                                            Some primary
## 2086                                            Some primary
## 2087                                            Some primary
## 2088                                            Some primary
## 2089                                            Some primary
## 2090                                            Some primary
## 2091                                            Some primary
## 2092                                     No formal education
## 2093                                     No formal education
## 2094                                     No formal education
## 2095                                            Some primary
## 2096                                            Some primary
## 2097                                            Some primary
## 2098                                            Some primary
## 2099                                            Some primary
## 2100                                            Some primary
## 2101                                            Some primary
## 2102                                            Some primary
## 2103                                            Some primary
## 2104                                            Some primary
## 2105                                            Some primary
## 2106                                            Some primary
## 2107                                            Some primary
## 2108                                            Some primary
## 2109                                            Some primary
## 2110                                     No formal education
## 2111                                            Some primary
## 2112                                            Some primary
## 2113                                            Some primary
## 2114                                            Some primary
## 2115                                            Some primary
## 2116                                            Some primary
## 2117                                            Some primary
## 2118                                            Some primary
## 2119                                            Some primary
## 2120                                            Some primary
## 2121                                            Some primary
## 2122                                            Some primary
## 2123                                            Some primary
## 2124                                            Some primary
## 2125                                     No formal education
## 2126                                            Some primary
## 2127                                            Some primary
## 2128                                            Some primary
## 2129                                            Some primary
## 2130                                     No formal education
## 2131                                            Some primary
## 2132                                            Some primary
## 2133                                            Some primary
## 2134                                            Some primary
## 2135                                            Some primary
## 2136                                            Some primary
## 2137                                            Some primary
## 2138                                            Some primary
## 2139                                            Some primary
## 2140                                            Some primary
## 2141                                            Some primary
## 2142                                            Some primary
## 2143                                            Some primary
## 2144                                     No formal education
## 2145                                            Some primary
## 2146                                            Some primary
## 2147                                            Some primary
## 2148                                            Some primary
## 2149                                            Some primary
## 2150                                            Some primary
## 2151                                            Some primary
## 2152                                            Some primary
## 2153                                     No formal education
## 2154                                            Some primary
## 2155                                            Some primary
## 2156                                            Some primary
## 2157                                            Some primary
## 2158                                            Some primary
## 2159                                            Some primary
## 2160                                            Some primary
## 2161                                            Some primary
## 2162                                            Some primary
## 2163                                            Some primary
## 2164                                            Some primary
## 2165                                            Some primary
## 2166                                            Some primary
## 2167                                            Some primary
## 2168                                            Some primary
## 2169                                            Some primary
## 2170                                            Some primary
## 2171                                            Some primary
## 2172                                     No formal education
## 2173                                            Some primary
## 2174                                            Some primary
## 2175                                            Some primary
## 2176                                            Some primary
## 2177                                            Some primary
## 2178                                            Some primary
## 2179                                            Some primary
## 2180                                     No formal education
## 2181                                     No formal education
## 2182                                     No formal education
## 2183                                            Some primary
## 2184                                            Some primary
## 2185                                     No formal education
## 2186                                            Some primary
## 2187                                            Some primary
## 2188                                            Some primary
## 2189                                            Some primary
## 2190                                            Some primary
## 2191                                            Some primary
## 2192                                            Some primary
## 2193                                            Some primary
## 2194                                            Some primary
## 2195                                            Some primary
## 2196                                            Some primary
## 2197                                            Some primary
## 2198                                            Some primary
## 2199                                            Some primary
## 2200                                            Some primary
## 2201                                     No formal education
## 2202                                            Some primary
## 2203                                     No formal education
## 2204                                            Some primary
## 2205                                            Some primary
## 2206                                     No formal education
## 2207                                            Some primary
## 2208                                            Some primary
## 2209                                     No formal education
## 2210                                            Some primary
## 2211                                            Some primary
## 2212                                            Some primary
## 2213                                            Some primary
## 2214                                            Some primary
## 2215                                     No formal education
## 2216                                            Some primary
## 2217                                            Some primary
## 2218                                            Some primary
## 2219                                            Some primary
## 2220                                            Some primary
## 2221                                            Some primary
## 2222                                            Some primary
## 2223                                            Some primary
## 2224                                            Some primary
## 2225                                            Some primary
## 2226                                            Some primary
## 2227                                     No formal education
## 2228                                            Some primary
## 2229                                            Some primary
## 2230                                     No formal education
## 2231                                            Some primary
## 2232                                            Some primary
## 2233                                            Some primary
## 2234                                            Some primary
## 2235                                            Some primary
## 2236                                            Some primary
## 2237                                            Some primary
## 2238                                            Some primary
## 2239                                     No formal education
## 2240                                            Some primary
## 2241                                            Some primary
## 2242                                            Some primary
## 2243                                     No formal education
## 2244                                            Some primary
## 2245                                     No formal education
## 2246                                     No formal education
## 2247                                            Some primary
## 2248                                            Some primary
## 2249                                            Some primary
## 2250                                            Some primary
## 2251                                            Some primary
## 2252                                            Some primary
## 2253                                            Some primary
## 2254                                            Some primary
## 2255                                            Some primary
## 2256                                     No formal education
## 2257                                            Some primary
## 2258                                            Some primary
## 2259                                            Some primary
## 2260                                            Some primary
## 2261                                            Some primary
## 2262                                            Some primary
## 2263                                            Some primary
## 2264                                            Some primary
## 2265                                     No formal education
## 2266                                            Some primary
## 2267                                            Some primary
## 2268                                            Some primary
## 2269                                     No formal education
## 2270                                            Some primary
## 2271                                     No formal education
## 2272                                     No formal education
##      if_else(Q4 == 3, "Primary completed", "Post primary technical training")
## 1                                             Post primary technical training
## 2                                                           Primary completed
## 3                                             Post primary technical training
## 4                                                           Primary completed
## 5                                             Post primary technical training
## 6                                                           Primary completed
## 7                                                           Primary completed
## 8                                             Post primary technical training
## 9                                                           Primary completed
## 10                                                          Primary completed
## 11                                            Post primary technical training
## 12                                            Post primary technical training
## 13                                                          Primary completed
## 14                                            Post primary technical training
## 15                                            Post primary technical training
## 16                                                          Primary completed
## 17                                            Post primary technical training
## 18                                                          Primary completed
## 19                                            Post primary technical training
## 20                                                          Primary completed
## 21                                                          Primary completed
## 22                                                          Primary completed
## 23                                            Post primary technical training
## 24                                            Post primary technical training
## 25                                                          Primary completed
## 26                                                          Primary completed
## 27                                                          Primary completed
## 28                                                          Primary completed
## 29                                                          Primary completed
## 30                                            Post primary technical training
## 31                                            Post primary technical training
## 32                                                          Primary completed
## 33                                                          Primary completed
## 34                                                          Primary completed
## 35                                            Post primary technical training
## 36                                            Post primary technical training
## 37                                                          Primary completed
## 38                                            Post primary technical training
## 39                                                          Primary completed
## 40                                            Post primary technical training
## 41                                                          Primary completed
## 42                                            Post primary technical training
## 43                                            Post primary technical training
## 44                                            Post primary technical training
## 45                                                          Primary completed
## 46                                                          Primary completed
## 47                                                          Primary completed
## 48                                                          Primary completed
## 49                                                          Primary completed
## 50                                                          Primary completed
## 51                                            Post primary technical training
## 52                                                          Primary completed
## 53                                                          Primary completed
## 54                                            Post primary technical training
## 55                                                          Primary completed
## 56                                                          Primary completed
## 57                                            Post primary technical training
## 58                                            Post primary technical training
## 59                                            Post primary technical training
## 60                                                          Primary completed
## 61                                            Post primary technical training
## 62                                            Post primary technical training
## 63                                            Post primary technical training
## 64                                                          Primary completed
## 65                                            Post primary technical training
## 66                                                          Primary completed
## 67                                                          Primary completed
## 68                                            Post primary technical training
## 69                                                          Primary completed
## 70                                                          Primary completed
## 71                                            Post primary technical training
## 72                                            Post primary technical training
## 73                                            Post primary technical training
## 74                                                          Primary completed
## 75                                            Post primary technical training
## 76                                            Post primary technical training
## 77                                                          Primary completed
## 78                                            Post primary technical training
## 79                                                          Primary completed
## 80                                            Post primary technical training
## 81                                                          Primary completed
## 82                                                          Primary completed
## 83                                                          Primary completed
## 84                                                          Primary completed
## 85                                            Post primary technical training
## 86                                                          Primary completed
## 87                                            Post primary technical training
## 88                                                          Primary completed
## 89                                            Post primary technical training
## 90                                                          Primary completed
## 91                                                          Primary completed
## 92                                            Post primary technical training
## 93                                                          Primary completed
## 94                                                          Primary completed
## 95                                                          Primary completed
## 96                                                          Primary completed
## 97                                            Post primary technical training
## 98                                                          Primary completed
## 99                                            Post primary technical training
## 100                                                         Primary completed
## 101                                                         Primary completed
## 102                                                         Primary completed
## 103                                                         Primary completed
## 104                                           Post primary technical training
## 105                                                         Primary completed
## 106                                           Post primary technical training
## 107                                                         Primary completed
## 108                                                         Primary completed
## 109                                                         Primary completed
## 110                                                         Primary completed
## 111                                                         Primary completed
## 112                                           Post primary technical training
## 113                                                         Primary completed
## 114                                           Post primary technical training
## 115                                           Post primary technical training
## 116                                                         Primary completed
## 117                                           Post primary technical training
## 118                                           Post primary technical training
## 119                                           Post primary technical training
## 120                                           Post primary technical training
## 121                                                         Primary completed
## 122                                                         Primary completed
## 123                                                         Primary completed
## 124                                                         Primary completed
## 125                                           Post primary technical training
## 126                                           Post primary technical training
## 127                                           Post primary technical training
## 128                                                         Primary completed
## 129                                           Post primary technical training
## 130                                           Post primary technical training
## 131                                                         Primary completed
## 132                                           Post primary technical training
## 133                                                         Primary completed
## 134                                           Post primary technical training
## 135                                                         Primary completed
## 136                                           Post primary technical training
## 137                                           Post primary technical training
## 138                                           Post primary technical training
## 139                                           Post primary technical training
## 140                                           Post primary technical training
## 141                                                         Primary completed
## 142                                                         Primary completed
## 143                                                         Primary completed
## 144                                           Post primary technical training
## 145                                           Post primary technical training
## 146                                                         Primary completed
## 147                                           Post primary technical training
## 148                                           Post primary technical training
## 149                                                         Primary completed
## 150                                           Post primary technical training
## 151                                                         Primary completed
## 152                                           Post primary technical training
## 153                                           Post primary technical training
## 154                                           Post primary technical training
## 155                                                         Primary completed
## 156                                                         Primary completed
## 157                                           Post primary technical training
## 158                                           Post primary technical training
## 159                                                         Primary completed
## 160                                                         Primary completed
## 161                                           Post primary technical training
## 162                                           Post primary technical training
## 163                                                         Primary completed
## 164                                           Post primary technical training
## 165                                           Post primary technical training
## 166                                                         Primary completed
## 167                                           Post primary technical training
## 168                                           Post primary technical training
## 169                                                         Primary completed
## 170                                           Post primary technical training
## 171                                           Post primary technical training
## 172                                           Post primary technical training
## 173                                                         Primary completed
## 174                                                         Primary completed
## 175                                                         Primary completed
## 176                                           Post primary technical training
## 177                                           Post primary technical training
## 178                                                         Primary completed
## 179                                                         Primary completed
## 180                                                         Primary completed
## 181                                                         Primary completed
## 182                                                         Primary completed
## 183                                                         Primary completed
## 184                                                         Primary completed
## 185                                           Post primary technical training
## 186                                           Post primary technical training
## 187                                           Post primary technical training
## 188                                           Post primary technical training
## 189                                                         Primary completed
## 190                                           Post primary technical training
## 191                                                         Primary completed
## 192                                           Post primary technical training
## 193                                           Post primary technical training
## 194                                           Post primary technical training
## 195                                           Post primary technical training
## 196                                           Post primary technical training
## 197                                                         Primary completed
## 198                                           Post primary technical training
## 199                                                         Primary completed
## 200                                           Post primary technical training
## 201                                           Post primary technical training
## 202                                                         Primary completed
## 203                                                         Primary completed
## 204                                                         Primary completed
## 205                                                         Primary completed
## 206                                                         Primary completed
## 207                                           Post primary technical training
## 208                                           Post primary technical training
## 209                                           Post primary technical training
## 210                                           Post primary technical training
## 211                                           Post primary technical training
## 212                                           Post primary technical training
## 213                                                         Primary completed
## 214                                           Post primary technical training
## 215                                           Post primary technical training
## 216                                           Post primary technical training
## 217                                           Post primary technical training
## 218                                           Post primary technical training
## 219                                                         Primary completed
## 220                                                         Primary completed
## 221                                           Post primary technical training
## 222                                           Post primary technical training
## 223                                                         Primary completed
## 224                                           Post primary technical training
## 225                                                         Primary completed
## 226                                           Post primary technical training
## 227                                           Post primary technical training
## 228                                           Post primary technical training
## 229                                                         Primary completed
## 230                                           Post primary technical training
## 231                                           Post primary technical training
## 232                                           Post primary technical training
## 233                                                         Primary completed
## 234                                                         Primary completed
## 235                                                         Primary completed
## 236                                                         Primary completed
## 237                                           Post primary technical training
## 238                                                         Primary completed
## 239                                           Post primary technical training
## 240                                           Post primary technical training
## 241                                                         Primary completed
## 242                                                         Primary completed
## 243                                                         Primary completed
## 244                                                         Primary completed
## 245                                                         Primary completed
## 246                                           Post primary technical training
## 247                                           Post primary technical training
## 248                                                         Primary completed
## 249                                           Post primary technical training
## 250                                                         Primary completed
## 251                                           Post primary technical training
## 252                                                         Primary completed
## 253                                                         Primary completed
## 254                                           Post primary technical training
## 255                                           Post primary technical training
## 256                                                         Primary completed
## 257                                           Post primary technical training
## 258                                                         Primary completed
## 259                                                         Primary completed
## 260                                                         Primary completed
## 261                                                         Primary completed
## 262                                           Post primary technical training
## 263                                           Post primary technical training
## 264                                                         Primary completed
## 265                                                         Primary completed
## 266                                                         Primary completed
## 267                                                         Primary completed
## 268                                                         Primary completed
## 269                                           Post primary technical training
## 270                                                         Primary completed
## 271                                           Post primary technical training
## 272                                                         Primary completed
## 273                                           Post primary technical training
## 274                                           Post primary technical training
## 275                                           Post primary technical training
## 276                                           Post primary technical training
## 277                                                         Primary completed
## 278                                                         Primary completed
## 279                                           Post primary technical training
## 280                                                         Primary completed
## 281                                                         Primary completed
## 282                                                         Primary completed
## 283                                           Post primary technical training
## 284                                           Post primary technical training
## 285                                           Post primary technical training
## 286                                           Post primary technical training
## 287                                                         Primary completed
## 288                                           Post primary technical training
## 289                                           Post primary technical training
## 290                                                         Primary completed
## 291                                                         Primary completed
## 292                                                         Primary completed
## 293                                           Post primary technical training
## 294                                                         Primary completed
## 295                                           Post primary technical training
## 296                                           Post primary technical training
## 297                                                         Primary completed
## 298                                           Post primary technical training
## 299                                                         Primary completed
## 300                                                         Primary completed
## 301                                                         Primary completed
## 302                                           Post primary technical training
## 303                                           Post primary technical training
## 304                                                         Primary completed
## 305                                           Post primary technical training
## 306                                                         Primary completed
## 307                                                         Primary completed
## 308                                           Post primary technical training
## 309                                                         Primary completed
## 310                                           Post primary technical training
## 311                                                         Primary completed
## 312                                           Post primary technical training
## 313                                                         Primary completed
## 314                                                         Primary completed
## 315                                                         Primary completed
## 316                                           Post primary technical training
## 317                                           Post primary technical training
## 318                                                         Primary completed
## 319                                           Post primary technical training
## 320                                                         Primary completed
## 321                                                         Primary completed
## 322                                                         Primary completed
## 323                                           Post primary technical training
## 324                                           Post primary technical training
## 325                                           Post primary technical training
## 326                                           Post primary technical training
## 327                                                         Primary completed
## 328                                           Post primary technical training
## 329                                           Post primary technical training
## 330                                           Post primary technical training
## 331                                                         Primary completed
## 332                                                         Primary completed
## 333                                           Post primary technical training
## 334                                                         Primary completed
## 335                                                         Primary completed
## 336                                                         Primary completed
## 337                                           Post primary technical training
## 338                                                         Primary completed
## 339                                                         Primary completed
## 340                                           Post primary technical training
## 341                                                         Primary completed
## 342                                           Post primary technical training
## 343                                           Post primary technical training
## 344                                           Post primary technical training
## 345                                           Post primary technical training
## 346                                           Post primary technical training
## 347                                           Post primary technical training
## 348                                           Post primary technical training
## 349                                           Post primary technical training
## 350                                           Post primary technical training
## 351                                                         Primary completed
## 352                                                         Primary completed
## 353                                           Post primary technical training
## 354                                                         Primary completed
## 355                                           Post primary technical training
## 356                                           Post primary technical training
## 357                                           Post primary technical training
## 358                                           Post primary technical training
## 359                                                         Primary completed
## 360                                           Post primary technical training
## 361                                           Post primary technical training
## 362                                                         Primary completed
## 363                                                         Primary completed
## 364                                           Post primary technical training
## 365                                                         Primary completed
## 366                                                         Primary completed
## 367                                                         Primary completed
## 368                                                         Primary completed
## 369                                                         Primary completed
## 370                                                         Primary completed
## 371                                                         Primary completed
## 372                                                         Primary completed
## 373                                           Post primary technical training
## 374                                                         Primary completed
## 375                                                         Primary completed
## 376                                           Post primary technical training
## 377                                           Post primary technical training
## 378                                           Post primary technical training
## 379                                           Post primary technical training
## 380                                                         Primary completed
## 381                                           Post primary technical training
## 382                                           Post primary technical training
## 383                                                         Primary completed
## 384                                                         Primary completed
## 385                                                         Primary completed
## 386                                           Post primary technical training
## 387                                           Post primary technical training
## 388                                           Post primary technical training
## 389                                           Post primary technical training
## 390                                                         Primary completed
## 391                                                         Primary completed
## 392                                                         Primary completed
## 393                                           Post primary technical training
## 394                                           Post primary technical training
## 395                                           Post primary technical training
## 396                                           Post primary technical training
## 397                                           Post primary technical training
## 398                                           Post primary technical training
## 399                                           Post primary technical training
## 400                                           Post primary technical training
## 401                                                         Primary completed
## 402                                           Post primary technical training
## 403                                           Post primary technical training
## 404                                           Post primary technical training
## 405                                                         Primary completed
## 406                                                         Primary completed
## 407                                           Post primary technical training
## 408                                                         Primary completed
## 409                                           Post primary technical training
## 410                                           Post primary technical training
## 411                                           Post primary technical training
## 412                                                         Primary completed
## 413                                           Post primary technical training
## 414                                                         Primary completed
## 415                                                         Primary completed
## 416                                           Post primary technical training
## 417                                           Post primary technical training
## 418                                           Post primary technical training
## 419                                                         Primary completed
## 420                                                         Primary completed
## 421                                                         Primary completed
## 422                                                         Primary completed
## 423                                                         Primary completed
## 424                                           Post primary technical training
## 425                                                         Primary completed
## 426                                                         Primary completed
## 427                                                         Primary completed
## 428                                           Post primary technical training
## 429                                                         Primary completed
## 430                                                         Primary completed
## 431                                           Post primary technical training
## 432                                                         Primary completed
## 433                                           Post primary technical training
## 434                                           Post primary technical training
## 435                                                         Primary completed
## 436                                                         Primary completed
## 437                                           Post primary technical training
## 438                                                         Primary completed
## 439                                           Post primary technical training
## 440                                                         Primary completed
## 441                                                         Primary completed
## 442                                           Post primary technical training
## 443                                                         Primary completed
## 444                                                         Primary completed
## 445                                           Post primary technical training
## 446                                                         Primary completed
## 447                                           Post primary technical training
## 448                                                         Primary completed
## 449                                                         Primary completed
## 450                                                         Primary completed
## 451                                                         Primary completed
## 452                                           Post primary technical training
## 453                                                         Primary completed
## 454                                                         Primary completed
## 455                                                         Primary completed
## 456                                           Post primary technical training
## 457                                                         Primary completed
## 458                                           Post primary technical training
## 459                                           Post primary technical training
## 460                                                         Primary completed
## 461                                                         Primary completed
## 462                                                         Primary completed
## 463                                                         Primary completed
## 464                                           Post primary technical training
## 465                                                         Primary completed
## 466                                           Post primary technical training
## 467                                           Post primary technical training
## 468                                                         Primary completed
## 469                                           Post primary technical training
## 470                                                         Primary completed
## 471                                                         Primary completed
## 472                                           Post primary technical training
## 473                                                         Primary completed
## 474                                           Post primary technical training
## 475                                                         Primary completed
## 476                                           Post primary technical training
## 477                                           Post primary technical training
## 478                                           Post primary technical training
## 479                                           Post primary technical training
## 480                                           Post primary technical training
## 481                                                         Primary completed
## 482                                           Post primary technical training
## 483                                                         Primary completed
## 484                                           Post primary technical training
## 485                                                         Primary completed
## 486                                           Post primary technical training
## 487                                           Post primary technical training
## 488                                           Post primary technical training
## 489                                           Post primary technical training
## 490                                           Post primary technical training
## 491                                                         Primary completed
## 492                                           Post primary technical training
## 493                                           Post primary technical training
## 494                                                         Primary completed
## 495                                           Post primary technical training
## 496                                           Post primary technical training
## 497                                                         Primary completed
## 498                                                         Primary completed
## 499                                           Post primary technical training
## 500                                           Post primary technical training
## 501                                                         Primary completed
## 502                                           Post primary technical training
## 503                                                         Primary completed
## 504                                                         Primary completed
## 505                                                         Primary completed
## 506                                                         Primary completed
## 507                                                         Primary completed
## 508                                           Post primary technical training
## 509                                           Post primary technical training
## 510                                                         Primary completed
## 511                                           Post primary technical training
## 512                                                         Primary completed
## 513                                                         Primary completed
## 514                                           Post primary technical training
## 515                                           Post primary technical training
## 516                                                         Primary completed
## 517                                                         Primary completed
## 518                                           Post primary technical training
## 519                                                         Primary completed
## 520                                                         Primary completed
## 521                                                         Primary completed
## 522                                                         Primary completed
## 523                                           Post primary technical training
## 524                                                         Primary completed
## 525                                                         Primary completed
## 526                                                         Primary completed
## 527                                                         Primary completed
## 528                                           Post primary technical training
## 529                                           Post primary technical training
## 530                                                         Primary completed
## 531                                           Post primary technical training
## 532                                           Post primary technical training
## 533                                                         Primary completed
## 534                                                         Primary completed
## 535                                                         Primary completed
## 536                                           Post primary technical training
## 537                                           Post primary technical training
## 538                                                         Primary completed
## 539                                                         Primary completed
## 540                                                         Primary completed
## 541                                           Post primary technical training
## 542                                                         Primary completed
## 543                                                         Primary completed
## 544                                           Post primary technical training
## 545                                           Post primary technical training
## 546                                           Post primary technical training
## 547                                           Post primary technical training
## 548                                                         Primary completed
## 549                                                         Primary completed
## 550                                           Post primary technical training
## 551                                           Post primary technical training
## 552                                           Post primary technical training
## 553                                           Post primary technical training
## 554                                                         Primary completed
## 555                                                         Primary completed
## 556                                           Post primary technical training
## 557                                                         Primary completed
## 558                                           Post primary technical training
## 559                                           Post primary technical training
## 560                                           Post primary technical training
## 561                                                         Primary completed
## 562                                           Post primary technical training
## 563                                           Post primary technical training
## 564                                                         Primary completed
## 565                                                         Primary completed
## 566                                                         Primary completed
## 567                                           Post primary technical training
## 568                                           Post primary technical training
## 569                                           Post primary technical training
## 570                                                         Primary completed
## 571                                           Post primary technical training
## 572                                           Post primary technical training
## 573                                           Post primary technical training
## 574                                                         Primary completed
## 575                                                         Primary completed
## 576                                                         Primary completed
## 577                                                         Primary completed
## 578                                                         Primary completed
## 579                                           Post primary technical training
## 580                                                         Primary completed
## 581                                                         Primary completed
## 582                                                         Primary completed
## 583                                           Post primary technical training
## 584                                           Post primary technical training
## 585                                           Post primary technical training
## 586                                                         Primary completed
## 587                                                         Primary completed
## 588                                                         Primary completed
## 589                                                         Primary completed
## 590                                                         Primary completed
## 591                                                         Primary completed
## 592                                           Post primary technical training
## 593                                           Post primary technical training
## 594                                                         Primary completed
## 595                                           Post primary technical training
## 596                                           Post primary technical training
## 597                                                         Primary completed
## 598                                                         Primary completed
## 599                                           Post primary technical training
## 600                                           Post primary technical training
## 601                                                         Primary completed
## 602                                           Post primary technical training
## 603                                           Post primary technical training
## 604                                                         Primary completed
## 605                                                         Primary completed
## 606                                                         Primary completed
## 607                                                         Primary completed
## 608                                                         Primary completed
## 609                                                         Primary completed
## 610                                           Post primary technical training
## 611                                                         Primary completed
## 612                                                         Primary completed
## 613                                           Post primary technical training
## 614                                                         Primary completed
## 615                                           Post primary technical training
## 616                                           Post primary technical training
## 617                                                         Primary completed
## 618                                           Post primary technical training
## 619                                                         Primary completed
## 620                                                         Primary completed
## 621                                           Post primary technical training
## 622                                           Post primary technical training
## 623                                           Post primary technical training
## 624                                           Post primary technical training
## 625                                           Post primary technical training
## 626                                                         Primary completed
## 627                                           Post primary technical training
## 628                                           Post primary technical training
## 629                                           Post primary technical training
## 630                                                         Primary completed
## 631                                                         Primary completed
## 632                                                         Primary completed
## 633                                           Post primary technical training
## 634                                                         Primary completed
## 635                                           Post primary technical training
## 636                                                         Primary completed
## 637                                           Post primary technical training
## 638                                                         Primary completed
## 639                                           Post primary technical training
## 640                                           Post primary technical training
## 641                                           Post primary technical training
## 642                                                         Primary completed
## 643                                                         Primary completed
## 644                                                         Primary completed
## 645                                           Post primary technical training
## 646                                           Post primary technical training
## 647                                                         Primary completed
## 648                                                         Primary completed
## 649                                           Post primary technical training
## 650                                           Post primary technical training
## 651                                           Post primary technical training
## 652                                                         Primary completed
## 653                                           Post primary technical training
## 654                                           Post primary technical training
## 655                                                         Primary completed
## 656                                                         Primary completed
## 657                                                         Primary completed
## 658                                           Post primary technical training
## 659                                                         Primary completed
## 660                                                         Primary completed
## 661                                                         Primary completed
## 662                                           Post primary technical training
## 663                                           Post primary technical training
## 664                                                         Primary completed
## 665                                           Post primary technical training
## 666                                           Post primary technical training
## 667                                                         Primary completed
## 668                                                         Primary completed
## 669                                           Post primary technical training
## 670                                                         Primary completed
## 671                                                         Primary completed
## 672                                                         Primary completed
## 673                                                         Primary completed
## 674                                                         Primary completed
## 675                                                         Primary completed
## 676                                                         Primary completed
## 677                                                         Primary completed
## 678                                           Post primary technical training
## 679                                           Post primary technical training
## 680                                           Post primary technical training
## 681                                           Post primary technical training
## 682                                                         Primary completed
## 683                                                         Primary completed
## 684                                                         Primary completed
## 685                                                         Primary completed
## 686                                                         Primary completed
## 687                                           Post primary technical training
## 688                                                         Primary completed
## 689                                                         Primary completed
## 690                                                         Primary completed
## 691                                                         Primary completed
## 692                                                         Primary completed
## 693                                           Post primary technical training
## 694                                           Post primary technical training
## 695                                           Post primary technical training
## 696                                                         Primary completed
## 697                                           Post primary technical training
## 698                                                         Primary completed
## 699                                           Post primary technical training
## 700                                                         Primary completed
## 701                                           Post primary technical training
## 702                                           Post primary technical training
## 703                                           Post primary technical training
## 704                                           Post primary technical training
## 705                                           Post primary technical training
## 706                                                         Primary completed
## 707                                           Post primary technical training
## 708                                           Post primary technical training
## 709                                                         Primary completed
## 710                                                         Primary completed
## 711                                                         Primary completed
## 712                                           Post primary technical training
## 713                                                         Primary completed
## 714                                           Post primary technical training
## 715                                                         Primary completed
## 716                                                         Primary completed
## 717                                           Post primary technical training
## 718                                                         Primary completed
## 719                                                         Primary completed
## 720                                           Post primary technical training
## 721                                                         Primary completed
## 722                                                         Primary completed
## 723                                           Post primary technical training
## 724                                           Post primary technical training
## 725                                                         Primary completed
## 726                                                         Primary completed
## 727                                           Post primary technical training
## 728                                           Post primary technical training
## 729                                                         Primary completed
## 730                                           Post primary technical training
## 731                                                         Primary completed
## 732                                           Post primary technical training
## 733                                                         Primary completed
## 734                                           Post primary technical training
## 735                                                         Primary completed
## 736                                           Post primary technical training
## 737                                           Post primary technical training
## 738                                           Post primary technical training
## 739                                           Post primary technical training
## 740                                                         Primary completed
## 741                                                         Primary completed
## 742                                                         Primary completed
## 743                                                         Primary completed
## 744                                                         Primary completed
## 745                                           Post primary technical training
## 746                                           Post primary technical training
## 747                                                         Primary completed
## 748                                           Post primary technical training
## 749                                           Post primary technical training
## 750                                                         Primary completed
## 751                                           Post primary technical training
## 752                                           Post primary technical training
## 753                                           Post primary technical training
## 754                                           Post primary technical training
## 755                                           Post primary technical training
## 756                                           Post primary technical training
## 757                                           Post primary technical training
## 758                                                         Primary completed
## 759                                                         Primary completed
## 760                                           Post primary technical training
## 761                                           Post primary technical training
## 762                                           Post primary technical training
## 763                                           Post primary technical training
## 764                                                         Primary completed
## 765                                                         Primary completed
## 766                                                         Primary completed
## 767                                                         Primary completed
## 768                                                         Primary completed
## 769                                                         Primary completed
## 770                                           Post primary technical training
## 771                                                         Primary completed
## 772                                                         Primary completed
## 773                                           Post primary technical training
## 774                                                         Primary completed
## 775                                           Post primary technical training
## 776                                           Post primary technical training
## 777                                           Post primary technical training
## 778                                                         Primary completed
## 779                                                         Primary completed
## 780                                                         Primary completed
## 781                                                         Primary completed
## 782                                                         Primary completed
## 783                                           Post primary technical training
## 784                                                         Primary completed
## 785                                                         Primary completed
## 786                                                         Primary completed
## 787                                           Post primary technical training
## 788                                                         Primary completed
## 789                                                         Primary completed
## 790                                                         Primary completed
## 791                                                         Primary completed
## 792                                           Post primary technical training
## 793                                           Post primary technical training
## 794                                                         Primary completed
## 795                                                         Primary completed
## 796                                                         Primary completed
## 797                                                         Primary completed
## 798                                                         Primary completed
## 799                                                         Primary completed
## 800                                                         Primary completed
## 801                                                         Primary completed
## 802                                           Post primary technical training
## 803                                                         Primary completed
## 804                                           Post primary technical training
## 805                                           Post primary technical training
## 806                                           Post primary technical training
## 807                                           Post primary technical training
## 808                                                         Primary completed
## 809                                                         Primary completed
## 810                                                         Primary completed
## 811                                           Post primary technical training
## 812                                                         Primary completed
## 813                                                         Primary completed
## 814                                           Post primary technical training
## 815                                           Post primary technical training
## 816                                           Post primary technical training
## 817                                           Post primary technical training
## 818                                           Post primary technical training
## 819                                                         Primary completed
## 820                                                         Primary completed
## 821                                                         Primary completed
## 822                                           Post primary technical training
## 823                                           Post primary technical training
## 824                                           Post primary technical training
## 825                                           Post primary technical training
## 826                                           Post primary technical training
## 827                                           Post primary technical training
## 828                                                         Primary completed
## 829                                           Post primary technical training
## 830                                           Post primary technical training
## 831                                           Post primary technical training
## 832                                           Post primary technical training
## 833                                           Post primary technical training
## 834                                                         Primary completed
## 835                                           Post primary technical training
## 836                                                         Primary completed
## 837                                           Post primary technical training
## 838                                           Post primary technical training
## 839                                           Post primary technical training
## 840                                                         Primary completed
## 841                                           Post primary technical training
## 842                                                         Primary completed
## 843                                                         Primary completed
## 844                                           Post primary technical training
## 845                                           Post primary technical training
## 846                                           Post primary technical training
## 847                                                         Primary completed
## 848                                                         Primary completed
## 849                                           Post primary technical training
## 850                                           Post primary technical training
## 851                                           Post primary technical training
## 852                                           Post primary technical training
## 853                                                         Primary completed
## 854                                           Post primary technical training
## 855                                                         Primary completed
## 856                                                         Primary completed
## 857                                           Post primary technical training
## 858                                           Post primary technical training
## 859                                                         Primary completed
## 860                                                         Primary completed
## 861                                                         Primary completed
## 862                                                         Primary completed
## 863                                                         Primary completed
## 864                                           Post primary technical training
## 865                                                         Primary completed
## 866                                                         Primary completed
## 867                                                         Primary completed
## 868                                           Post primary technical training
## 869                                           Post primary technical training
## 870                                           Post primary technical training
## 871                                                         Primary completed
## 872                                                         Primary completed
## 873                                                         Primary completed
## 874                                                         Primary completed
## 875                                           Post primary technical training
## 876                                           Post primary technical training
## 877                                                         Primary completed
## 878                                           Post primary technical training
## 879                                                         Primary completed
## 880                                           Post primary technical training
## 881                                           Post primary technical training
## 882                                           Post primary technical training
## 883                                                         Primary completed
## 884                                                         Primary completed
## 885                                           Post primary technical training
## 886                                           Post primary technical training
## 887                                                         Primary completed
## 888                                                         Primary completed
## 889                                                         Primary completed
## 890                                           Post primary technical training
## 891                                           Post primary technical training
## 892                                           Post primary technical training
## 893                                           Post primary technical training
## 894                                           Post primary technical training
## 895                                                         Primary completed
## 896                                                         Primary completed
## 897                                           Post primary technical training
## 898                                                         Primary completed
## 899                                                         Primary completed
## 900                                           Post primary technical training
## 901                                                         Primary completed
## 902                                           Post primary technical training
## 903                                                         Primary completed
## 904                                           Post primary technical training
## 905                                                         Primary completed
## 906                                                         Primary completed
## 907                                                         Primary completed
## 908                                                         Primary completed
## 909                                                         Primary completed
## 910                                                         Primary completed
## 911                                                         Primary completed
## 912                                           Post primary technical training
## 913                                           Post primary technical training
## 914                                                         Primary completed
## 915                                           Post primary technical training
## 916                                           Post primary technical training
## 917                                           Post primary technical training
## 918                                                         Primary completed
## 919                                           Post primary technical training
## 920                                                         Primary completed
## 921                                           Post primary technical training
## 922                                           Post primary technical training
## 923                                           Post primary technical training
## 924                                                         Primary completed
## 925                                           Post primary technical training
## 926                                           Post primary technical training
## 927                                           Post primary technical training
## 928                                           Post primary technical training
## 929                                           Post primary technical training
## 930                                           Post primary technical training
## 931                                                         Primary completed
## 932                                                         Primary completed
## 933                                                         Primary completed
## 934                                                         Primary completed
## 935                                                         Primary completed
## 936                                           Post primary technical training
## 937                                           Post primary technical training
## 938                                           Post primary technical training
## 939                                                         Primary completed
## 940                                           Post primary technical training
## 941                                                         Primary completed
## 942                                                         Primary completed
## 943                                           Post primary technical training
## 944                                                         Primary completed
## 945                                                         Primary completed
## 946                                           Post primary technical training
## 947                                           Post primary technical training
## 948                                           Post primary technical training
## 949                                           Post primary technical training
## 950                                           Post primary technical training
## 951                                                         Primary completed
## 952                                           Post primary technical training
## 953                                                         Primary completed
## 954                                                         Primary completed
## 955                                           Post primary technical training
## 956                                           Post primary technical training
## 957                                                         Primary completed
## 958                                           Post primary technical training
## 959                                           Post primary technical training
## 960                                                         Primary completed
## 961                                                         Primary completed
## 962                                           Post primary technical training
## 963                                           Post primary technical training
## 964                                           Post primary technical training
## 965                                           Post primary technical training
## 966                                                         Primary completed
## 967                                                         Primary completed
## 968                                                         Primary completed
## 969                                           Post primary technical training
## 970                                                         Primary completed
## 971                                                         Primary completed
## 972                                                         Primary completed
## 973                                                         Primary completed
## 974                                                         Primary completed
## 975                                           Post primary technical training
## 976                                           Post primary technical training
## 977                                           Post primary technical training
## 978                                           Post primary technical training
## 979                                           Post primary technical training
## 980                                                         Primary completed
## 981                                           Post primary technical training
## 982                                                         Primary completed
## 983                                                         Primary completed
## 984                                           Post primary technical training
## 985                                           Post primary technical training
## 986                                                         Primary completed
## 987                                                         Primary completed
## 988                                           Post primary technical training
## 989                                                         Primary completed
## 990                                           Post primary technical training
## 991                                                         Primary completed
## 992                                           Post primary technical training
## 993                                           Post primary technical training
## 994                                                         Primary completed
## 995                                                         Primary completed
## 996                                                         Primary completed
## 997                                                         Primary completed
## 998                                           Post primary technical training
## 999                                                         Primary completed
## 1000                                          Post primary technical training
## 1001                                          Post primary technical training
## 1002                                          Post primary technical training
## 1003                                          Post primary technical training
## 1004                                                        Primary completed
## 1005                                                        Primary completed
## 1006                                          Post primary technical training
## 1007                                                        Primary completed
## 1008                                                        Primary completed
## 1009                                          Post primary technical training
## 1010                                                        Primary completed
## 1011                                                        Primary completed
## 1012                                                        Primary completed
## 1013                                          Post primary technical training
## 1014                                                        Primary completed
## 1015                                          Post primary technical training
## 1016                                          Post primary technical training
## 1017                                          Post primary technical training
## 1018                                                        Primary completed
## 1019                                                        Primary completed
## 1020                                          Post primary technical training
## 1021                                          Post primary technical training
## 1022                                          Post primary technical training
## 1023                                          Post primary technical training
## 1024                                                        Primary completed
## 1025                                                        Primary completed
## 1026                                                        Primary completed
## 1027                                          Post primary technical training
## 1028                                          Post primary technical training
## 1029                                                        Primary completed
## 1030                                                        Primary completed
## 1031                                          Post primary technical training
## 1032                                                        Primary completed
## 1033                                          Post primary technical training
## 1034                                          Post primary technical training
## 1035                                          Post primary technical training
## 1036                                                        Primary completed
## 1037                                          Post primary technical training
## 1038                                          Post primary technical training
## 1039                                                        Primary completed
## 1040                                          Post primary technical training
## 1041                                          Post primary technical training
## 1042                                          Post primary technical training
## 1043                                          Post primary technical training
## 1044                                          Post primary technical training
## 1045                                          Post primary technical training
## 1046                                          Post primary technical training
## 1047                                          Post primary technical training
## 1048                                                        Primary completed
## 1049                                                        Primary completed
## 1050                                          Post primary technical training
## 1051                                          Post primary technical training
## 1052                                          Post primary technical training
## 1053                                          Post primary technical training
## 1054                                          Post primary technical training
## 1055                                          Post primary technical training
## 1056                                          Post primary technical training
## 1057                                                        Primary completed
## 1058                                          Post primary technical training
## 1059                                          Post primary technical training
## 1060                                          Post primary technical training
## 1061                                                        Primary completed
## 1062                                          Post primary technical training
## 1063                                                        Primary completed
## 1064                                          Post primary technical training
## 1065                                          Post primary technical training
## 1066                                                        Primary completed
## 1067                                          Post primary technical training
## 1068                                                        Primary completed
## 1069                                                        Primary completed
## 1070                                                        Primary completed
## 1071                                                        Primary completed
## 1072                                          Post primary technical training
## 1073                                          Post primary technical training
## 1074                                                        Primary completed
## 1075                                                        Primary completed
## 1076                                          Post primary technical training
## 1077                                          Post primary technical training
## 1078                                          Post primary technical training
## 1079                                          Post primary technical training
## 1080                                                        Primary completed
## 1081                                          Post primary technical training
## 1082                                          Post primary technical training
## 1083                                                        Primary completed
## 1084                                                        Primary completed
## 1085                                                        Primary completed
## 1086                                          Post primary technical training
## 1087                                                        Primary completed
## 1088                                                        Primary completed
## 1089                                                        Primary completed
## 1090                                                        Primary completed
## 1091                                          Post primary technical training
## 1092                                                        Primary completed
## 1093                                                        Primary completed
## 1094                                                        Primary completed
## 1095                                          Post primary technical training
## 1096                                                        Primary completed
## 1097                                          Post primary technical training
## 1098                                                        Primary completed
## 1099                                                        Primary completed
## 1100                                          Post primary technical training
## 1101                                          Post primary technical training
## 1102                                                        Primary completed
## 1103                                          Post primary technical training
## 1104                                          Post primary technical training
## 1105                                          Post primary technical training
## 1106                                          Post primary technical training
## 1107                                                        Primary completed
## 1108                                                        Primary completed
## 1109                                                        Primary completed
## 1110                                          Post primary technical training
## 1111                                          Post primary technical training
## 1112                                          Post primary technical training
## 1113                                          Post primary technical training
## 1114                                          Post primary technical training
## 1115                                                        Primary completed
## 1116                                          Post primary technical training
## 1117                                          Post primary technical training
## 1118                                          Post primary technical training
## 1119                                                        Primary completed
## 1120                                                        Primary completed
## 1121                                          Post primary technical training
## 1122                                          Post primary technical training
## 1123                                                        Primary completed
## 1124                                          Post primary technical training
## 1125                                                        Primary completed
## 1126                                          Post primary technical training
## 1127                                                        Primary completed
## 1128                                          Post primary technical training
## 1129                                                        Primary completed
## 1130                                          Post primary technical training
## 1131                                                        Primary completed
## 1132                                          Post primary technical training
## 1133                                          Post primary technical training
## 1134                                                        Primary completed
## 1135                                                        Primary completed
## 1136                                          Post primary technical training
## 1137                                          Post primary technical training
## 1138                                          Post primary technical training
## 1139                                          Post primary technical training
## 1140                                          Post primary technical training
## 1141                                                        Primary completed
## 1142                                          Post primary technical training
## 1143                                          Post primary technical training
## 1144                                                        Primary completed
## 1145                                          Post primary technical training
## 1146                                          Post primary technical training
## 1147                                                        Primary completed
## 1148                                          Post primary technical training
## 1149                                          Post primary technical training
## 1150                                          Post primary technical training
## 1151                                                        Primary completed
## 1152                                                        Primary completed
## 1153                                                        Primary completed
## 1154                                          Post primary technical training
## 1155                                                        Primary completed
## 1156                                          Post primary technical training
## 1157                                          Post primary technical training
## 1158                                                        Primary completed
## 1159                                                        Primary completed
## 1160                                                        Primary completed
## 1161                                          Post primary technical training
## 1162                                                        Primary completed
## 1163                                          Post primary technical training
## 1164                                                        Primary completed
## 1165                                          Post primary technical training
## 1166                                          Post primary technical training
## 1167                                          Post primary technical training
## 1168                                          Post primary technical training
## 1169                                          Post primary technical training
## 1170                                                        Primary completed
## 1171                                          Post primary technical training
## 1172                                          Post primary technical training
## 1173                                          Post primary technical training
## 1174                                                        Primary completed
## 1175                                                        Primary completed
## 1176                                          Post primary technical training
## 1177                                          Post primary technical training
## 1178                                                        Primary completed
## 1179                                          Post primary technical training
## 1180                                                        Primary completed
## 1181                                          Post primary technical training
## 1182                                                        Primary completed
## 1183                                          Post primary technical training
## 1184                                          Post primary technical training
## 1185                                                        Primary completed
## 1186                                                        Primary completed
## 1187                                                        Primary completed
## 1188                                                        Primary completed
## 1189                                                        Primary completed
## 1190                                          Post primary technical training
## 1191                                                        Primary completed
## 1192                                          Post primary technical training
## 1193                                          Post primary technical training
## 1194                                                        Primary completed
## 1195                                          Post primary technical training
## 1196                                                        Primary completed
## 1197                                                        Primary completed
## 1198                                                        Primary completed
## 1199                                          Post primary technical training
## 1200                                          Post primary technical training
## 1201                                          Post primary technical training
## 1202                                          Post primary technical training
## 1203                                                        Primary completed
## 1204                                                        Primary completed
## 1205                                          Post primary technical training
## 1206                                                        Primary completed
## 1207                                                        Primary completed
## 1208                                                        Primary completed
## 1209                                          Post primary technical training
## 1210                                                        Primary completed
## 1211                                                        Primary completed
## 1212                                          Post primary technical training
## 1213                                          Post primary technical training
## 1214                                          Post primary technical training
## 1215                                          Post primary technical training
## 1216                                          Post primary technical training
## 1217                                          Post primary technical training
## 1218                                                        Primary completed
## 1219                                                        Primary completed
## 1220                                                        Primary completed
## 1221                                          Post primary technical training
## 1222                                          Post primary technical training
## 1223                                                        Primary completed
## 1224                                          Post primary technical training
## 1225                                                        Primary completed
## 1226                                                        Primary completed
## 1227                                                        Primary completed
## 1228                                                        Primary completed
## 1229                                                        Primary completed
## 1230                                                        Primary completed
## 1231                                                        Primary completed
## 1232                                          Post primary technical training
## 1233                                                        Primary completed
## 1234                                                        Primary completed
## 1235                                                        Primary completed
## 1236                                                        Primary completed
## 1237                                                        Primary completed
## 1238                                                        Primary completed
## 1239                                          Post primary technical training
## 1240                                                        Primary completed
## 1241                                          Post primary technical training
## 1242                                          Post primary technical training
## 1243                                          Post primary technical training
## 1244                                                        Primary completed
## 1245                                          Post primary technical training
## 1246                                          Post primary technical training
## 1247                                                        Primary completed
## 1248                                          Post primary technical training
## 1249                                          Post primary technical training
## 1250                                          Post primary technical training
## 1251                                          Post primary technical training
## 1252                                                        Primary completed
## 1253                                          Post primary technical training
## 1254                                          Post primary technical training
## 1255                                          Post primary technical training
## 1256                                          Post primary technical training
## 1257                                                        Primary completed
## 1258                                          Post primary technical training
## 1259                                          Post primary technical training
## 1260                                                        Primary completed
## 1261                                                        Primary completed
## 1262                                                        Primary completed
## 1263                                          Post primary technical training
## 1264                                                        Primary completed
## 1265                                          Post primary technical training
## 1266                                          Post primary technical training
## 1267                                          Post primary technical training
## 1268                                                        Primary completed
## 1269                                          Post primary technical training
## 1270                                          Post primary technical training
## 1271                                                        Primary completed
## 1272                                                        Primary completed
## 1273                                                        Primary completed
## 1274                                                        Primary completed
## 1275                                          Post primary technical training
## 1276                                                        Primary completed
## 1277                                          Post primary technical training
## 1278                                          Post primary technical training
## 1279                                                        Primary completed
## 1280                                                        Primary completed
## 1281                                          Post primary technical training
## 1282                                          Post primary technical training
## 1283                                                        Primary completed
## 1284                                                        Primary completed
## 1285                                                        Primary completed
## 1286                                          Post primary technical training
## 1287                                          Post primary technical training
## 1288                                          Post primary technical training
## 1289                                          Post primary technical training
## 1290                                          Post primary technical training
## 1291                                          Post primary technical training
## 1292                                          Post primary technical training
## 1293                                          Post primary technical training
## 1294                                                        Primary completed
## 1295                                                        Primary completed
## 1296                                          Post primary technical training
## 1297                                                        Primary completed
## 1298                                                        Primary completed
## 1299                                                        Primary completed
## 1300                                                        Primary completed
## 1301                                          Post primary technical training
## 1302                                          Post primary technical training
## 1303                                          Post primary technical training
## 1304                                                        Primary completed
## 1305                                                        Primary completed
## 1306                                          Post primary technical training
## 1307                                          Post primary technical training
## 1308                                          Post primary technical training
## 1309                                          Post primary technical training
## 1310                                          Post primary technical training
## 1311                                          Post primary technical training
## 1312                                                        Primary completed
## 1313                                                        Primary completed
## 1314                                          Post primary technical training
## 1315                                                        Primary completed
## 1316                                          Post primary technical training
## 1317                                          Post primary technical training
## 1318                                                        Primary completed
## 1319                                          Post primary technical training
## 1320                                                        Primary completed
## 1321                                                        Primary completed
## 1322                                                        Primary completed
## 1323                                          Post primary technical training
## 1324                                          Post primary technical training
## 1325                                          Post primary technical training
## 1326                                          Post primary technical training
## 1327                                                        Primary completed
## 1328                                                        Primary completed
## 1329                                                        Primary completed
## 1330                                          Post primary technical training
## 1331                                                        Primary completed
## 1332                                          Post primary technical training
## 1333                                          Post primary technical training
## 1334                                                        Primary completed
## 1335                                                        Primary completed
## 1336                                          Post primary technical training
## 1337                                                        Primary completed
## 1338                                          Post primary technical training
## 1339                                                        Primary completed
## 1340                                          Post primary technical training
## 1341                                          Post primary technical training
## 1342                                                        Primary completed
## 1343                                                        Primary completed
## 1344                                          Post primary technical training
## 1345                                          Post primary technical training
## 1346                                                        Primary completed
## 1347                                                        Primary completed
## 1348                                                        Primary completed
## 1349                                                        Primary completed
## 1350                                                        Primary completed
## 1351                                          Post primary technical training
## 1352                                          Post primary technical training
## 1353                                          Post primary technical training
## 1354                                                        Primary completed
## 1355                                                        Primary completed
## 1356                                          Post primary technical training
## 1357                                                        Primary completed
## 1358                                                        Primary completed
## 1359                                                        Primary completed
## 1360                                          Post primary technical training
## 1361                                          Post primary technical training
## 1362                                                        Primary completed
## 1363                                                        Primary completed
## 1364                                          Post primary technical training
## 1365                                          Post primary technical training
## 1366                                                        Primary completed
## 1367                                                        Primary completed
## 1368                                          Post primary technical training
## 1369                                                        Primary completed
## 1370                                          Post primary technical training
## 1371                                          Post primary technical training
## 1372                                                        Primary completed
## 1373                                                        Primary completed
## 1374                                          Post primary technical training
## 1375                                          Post primary technical training
## 1376                                                        Primary completed
## 1377                                          Post primary technical training
## 1378                                          Post primary technical training
## 1379                                          Post primary technical training
## 1380                                          Post primary technical training
## 1381                                          Post primary technical training
## 1382                                                        Primary completed
## 1383                                                        Primary completed
## 1384                                                        Primary completed
## 1385                                                        Primary completed
## 1386                                                        Primary completed
## 1387                                                        Primary completed
## 1388                                                        Primary completed
## 1389                                          Post primary technical training
## 1390                                          Post primary technical training
## 1391                                          Post primary technical training
## 1392                                                        Primary completed
## 1393                                                        Primary completed
## 1394                                                        Primary completed
## 1395                                          Post primary technical training
## 1396                                                        Primary completed
## 1397                                                        Primary completed
## 1398                                          Post primary technical training
## 1399                                          Post primary technical training
## 1400                                                        Primary completed
## 1401                                          Post primary technical training
## 1402                                          Post primary technical training
## 1403                                                        Primary completed
## 1404                                          Post primary technical training
## 1405                                          Post primary technical training
## 1406                                                        Primary completed
## 1407                                          Post primary technical training
## 1408                                                        Primary completed
## 1409                                                        Primary completed
## 1410                                                        Primary completed
## 1411                                          Post primary technical training
## 1412                                          Post primary technical training
## 1413                                          Post primary technical training
## 1414                                          Post primary technical training
## 1415                                          Post primary technical training
## 1416                                                        Primary completed
## 1417                                          Post primary technical training
## 1418                                          Post primary technical training
## 1419                                          Post primary technical training
## 1420                                                        Primary completed
## 1421                                          Post primary technical training
## 1422                                          Post primary technical training
## 1423                                          Post primary technical training
## 1424                                                        Primary completed
## 1425                                          Post primary technical training
## 1426                                                        Primary completed
## 1427                                                        Primary completed
## 1428                                                        Primary completed
## 1429                                                        Primary completed
## 1430                                          Post primary technical training
## 1431                                          Post primary technical training
## 1432                                          Post primary technical training
## 1433                                          Post primary technical training
## 1434                                          Post primary technical training
## 1435                                          Post primary technical training
## 1436                                                        Primary completed
## 1437                                          Post primary technical training
## 1438                                                        Primary completed
## 1439                                                        Primary completed
## 1440                                          Post primary technical training
## 1441                                          Post primary technical training
## 1442                                                        Primary completed
## 1443                                                        Primary completed
## 1444                                                        Primary completed
## 1445                                          Post primary technical training
## 1446                                          Post primary technical training
## 1447                                          Post primary technical training
## 1448                                                        Primary completed
## 1449                                                        Primary completed
## 1450                                          Post primary technical training
## 1451                                                        Primary completed
## 1452                                          Post primary technical training
## 1453                                                        Primary completed
## 1454                                                        Primary completed
## 1455                                                        Primary completed
## 1456                                          Post primary technical training
## 1457                                          Post primary technical training
## 1458                                          Post primary technical training
## 1459                                          Post primary technical training
## 1460                                                        Primary completed
## 1461                                          Post primary technical training
## 1462                                                        Primary completed
## 1463                                                        Primary completed
## 1464                                          Post primary technical training
## 1465                                                        Primary completed
## 1466                                          Post primary technical training
## 1467                                                        Primary completed
## 1468                                          Post primary technical training
## 1469                                                        Primary completed
## 1470                                                        Primary completed
## 1471                                          Post primary technical training
## 1472                                          Post primary technical training
## 1473                                          Post primary technical training
## 1474                                          Post primary technical training
## 1475                                          Post primary technical training
## 1476                                                        Primary completed
## 1477                                                        Primary completed
## 1478                                          Post primary technical training
## 1479                                          Post primary technical training
## 1480                                                        Primary completed
## 1481                                          Post primary technical training
## 1482                                          Post primary technical training
## 1483                                          Post primary technical training
## 1484                                                        Primary completed
## 1485                                          Post primary technical training
## 1486                                          Post primary technical training
## 1487                                          Post primary technical training
## 1488                                                        Primary completed
## 1489                                                        Primary completed
## 1490                                          Post primary technical training
## 1491                                          Post primary technical training
## 1492                                          Post primary technical training
## 1493                                                        Primary completed
## 1494                                                        Primary completed
## 1495                                                        Primary completed
## 1496                                                        Primary completed
## 1497                                          Post primary technical training
## 1498                                                        Primary completed
## 1499                                          Post primary technical training
## 1500                                          Post primary technical training
## 1501                                                        Primary completed
## 1502                                          Post primary technical training
## 1503                                                        Primary completed
## 1504                                          Post primary technical training
## 1505                                                        Primary completed
## 1506                                                        Primary completed
## 1507                                                        Primary completed
## 1508                                                        Primary completed
## 1509                                                        Primary completed
## 1510                                          Post primary technical training
## 1511                                                        Primary completed
## 1512                                          Post primary technical training
## 1513                                          Post primary technical training
## 1514                                                        Primary completed
## 1515                                                        Primary completed
## 1516                                          Post primary technical training
## 1517                                                        Primary completed
## 1518                                                        Primary completed
## 1519                                          Post primary technical training
## 1520                                          Post primary technical training
## 1521                                                        Primary completed
## 1522                                          Post primary technical training
## 1523                                                        Primary completed
## 1524                                                        Primary completed
## 1525                                                        Primary completed
## 1526                                          Post primary technical training
## 1527                                                        Primary completed
## 1528                                          Post primary technical training
## 1529                                          Post primary technical training
## 1530                                          Post primary technical training
## 1531                                          Post primary technical training
## 1532                                                        Primary completed
## 1533                                          Post primary technical training
## 1534                                                        Primary completed
## 1535                                                        Primary completed
## 1536                                          Post primary technical training
## 1537                                          Post primary technical training
## 1538                                          Post primary technical training
## 1539                                          Post primary technical training
## 1540                                          Post primary technical training
## 1541                                          Post primary technical training
## 1542                                                        Primary completed
## 1543                                          Post primary technical training
## 1544                                          Post primary technical training
## 1545                                          Post primary technical training
## 1546                                          Post primary technical training
## 1547                                          Post primary technical training
## 1548                                          Post primary technical training
## 1549                                          Post primary technical training
## 1550                                                        Primary completed
## 1551                                                        Primary completed
## 1552                                          Post primary technical training
## 1553                                          Post primary technical training
## 1554                                                        Primary completed
## 1555                                                        Primary completed
## 1556                                                        Primary completed
## 1557                                          Post primary technical training
## 1558                                                        Primary completed
## 1559                                                        Primary completed
## 1560                                          Post primary technical training
## 1561                                                        Primary completed
## 1562                                                        Primary completed
## 1563                                                        Primary completed
## 1564                                                        Primary completed
## 1565                                                        Primary completed
## 1566                                                        Primary completed
## 1567                                                        Primary completed
## 1568                                          Post primary technical training
## 1569                                          Post primary technical training
## 1570                                                        Primary completed
## 1571                                          Post primary technical training
## 1572                                          Post primary technical training
## 1573                                          Post primary technical training
## 1574                                          Post primary technical training
## 1575                                                        Primary completed
## 1576                                          Post primary technical training
## 1577                                          Post primary technical training
## 1578                                          Post primary technical training
## 1579                                                        Primary completed
## 1580                                          Post primary technical training
## 1581                                                        Primary completed
## 1582                                                        Primary completed
## 1583                                                        Primary completed
## 1584                                          Post primary technical training
## 1585                                                        Primary completed
## 1586                                                        Primary completed
## 1587                                          Post primary technical training
## 1588                                          Post primary technical training
## 1589                                                        Primary completed
## 1590                                          Post primary technical training
## 1591                                          Post primary technical training
## 1592                                                        Primary completed
## 1593                                          Post primary technical training
## 1594                                          Post primary technical training
## 1595                                          Post primary technical training
## 1596                                          Post primary technical training
## 1597                                                        Primary completed
## 1598                                          Post primary technical training
## 1599                                                        Primary completed
## 1600                                          Post primary technical training
## 1601                                                        Primary completed
## 1602                                                        Primary completed
## 1603                                          Post primary technical training
## 1604                                          Post primary technical training
## 1605                                                        Primary completed
## 1606                                                        Primary completed
## 1607                                          Post primary technical training
## 1608                                                        Primary completed
## 1609                                                        Primary completed
## 1610                                                        Primary completed
## 1611                                          Post primary technical training
## 1612                                                        Primary completed
## 1613                                                        Primary completed
## 1614                                          Post primary technical training
## 1615                                                        Primary completed
## 1616                                                        Primary completed
## 1617                                          Post primary technical training
## 1618                                                        Primary completed
## 1619                                          Post primary technical training
## 1620                                                        Primary completed
## 1621                                                        Primary completed
## 1622                                                        Primary completed
## 1623                                          Post primary technical training
## 1624                                                        Primary completed
## 1625                                                        Primary completed
## 1626                                                        Primary completed
## 1627                                          Post primary technical training
## 1628                                                        Primary completed
## 1629                                                        Primary completed
## 1630                                                        Primary completed
## 1631                                          Post primary technical training
## 1632                                                        Primary completed
## 1633                                          Post primary technical training
## 1634                                          Post primary technical training
## 1635                                                        Primary completed
## 1636                                          Post primary technical training
## 1637                                          Post primary technical training
## 1638                                          Post primary technical training
## 1639                                                        Primary completed
## 1640                                                        Primary completed
## 1641                                          Post primary technical training
## 1642                                                        Primary completed
## 1643                                                        Primary completed
## 1644                                                        Primary completed
## 1645                                          Post primary technical training
## 1646                                          Post primary technical training
## 1647                                                        Primary completed
## 1648                                          Post primary technical training
## 1649                                          Post primary technical training
## 1650                                                        Primary completed
## 1651                                          Post primary technical training
## 1652                                          Post primary technical training
## 1653                                          Post primary technical training
## 1654                                                        Primary completed
## 1655                                                        Primary completed
## 1656                                          Post primary technical training
## 1657                                          Post primary technical training
## 1658                                          Post primary technical training
## 1659                                          Post primary technical training
## 1660                                          Post primary technical training
## 1661                                                        Primary completed
## 1662                                                        Primary completed
## 1663                                                        Primary completed
## 1664                                                        Primary completed
## 1665                                          Post primary technical training
## 1666                                                        Primary completed
## 1667                                                        Primary completed
## 1668                                          Post primary technical training
## 1669                                          Post primary technical training
## 1670                                          Post primary technical training
## 1671                                          Post primary technical training
## 1672                                                        Primary completed
## 1673                                          Post primary technical training
## 1674                                                        Primary completed
## 1675                                                        Primary completed
## 1676                                                        Primary completed
## 1677                                                        Primary completed
## 1678                                          Post primary technical training
## 1679                                          Post primary technical training
## 1680                                                        Primary completed
## 1681                                                        Primary completed
## 1682                                          Post primary technical training
## 1683                                                        Primary completed
## 1684                                                        Primary completed
## 1685                                          Post primary technical training
## 1686                                                        Primary completed
## 1687                                                        Primary completed
## 1688                                                        Primary completed
## 1689                                                        Primary completed
## 1690                                                        Primary completed
## 1691                                                        Primary completed
## 1692                                          Post primary technical training
## 1693                                          Post primary technical training
## 1694                                                        Primary completed
## 1695                                          Post primary technical training
## 1696                                          Post primary technical training
## 1697                                          Post primary technical training
## 1698                                          Post primary technical training
## 1699                                          Post primary technical training
## 1700                                          Post primary technical training
## 1701                                          Post primary technical training
## 1702                                          Post primary technical training
## 1703                                          Post primary technical training
## 1704                                          Post primary technical training
## 1705                                                        Primary completed
## 1706                                                        Primary completed
## 1707                                                        Primary completed
## 1708                                                        Primary completed
## 1709                                                        Primary completed
## 1710                                                        Primary completed
## 1711                                          Post primary technical training
## 1712                                          Post primary technical training
## 1713                                                        Primary completed
## 1714                                                        Primary completed
## 1715                                          Post primary technical training
## 1716                                          Post primary technical training
## 1717                                          Post primary technical training
## 1718                                                        Primary completed
## 1719                                                        Primary completed
## 1720                                                        Primary completed
## 1721                                          Post primary technical training
## 1722                                          Post primary technical training
## 1723                                                        Primary completed
## 1724                                                        Primary completed
## 1725                                          Post primary technical training
## 1726                                                        Primary completed
## 1727                                          Post primary technical training
## 1728                                          Post primary technical training
## 1729                                          Post primary technical training
## 1730                                                        Primary completed
## 1731                                                        Primary completed
## 1732                                                        Primary completed
## 1733                                                        Primary completed
## 1734                                                        Primary completed
## 1735                                                        Primary completed
## 1736                                                        Primary completed
## 1737                                                        Primary completed
## 1738                                          Post primary technical training
## 1739                                                        Primary completed
## 1740                                          Post primary technical training
## 1741                                          Post primary technical training
## 1742                                          Post primary technical training
## 1743                                                        Primary completed
## 1744                                          Post primary technical training
## 1745                                          Post primary technical training
## 1746                                          Post primary technical training
## 1747                                                        Primary completed
## 1748                                          Post primary technical training
## 1749                                                        Primary completed
## 1750                                          Post primary technical training
## 1751                                          Post primary technical training
## 1752                                                        Primary completed
## 1753                                          Post primary technical training
## 1754                                                        Primary completed
## 1755                                                        Primary completed
## 1756                                                        Primary completed
## 1757                                                        Primary completed
## 1758                                          Post primary technical training
## 1759                                                        Primary completed
## 1760                                                        Primary completed
## 1761                                          Post primary technical training
## 1762                                                        Primary completed
## 1763                                          Post primary technical training
## 1764                                          Post primary technical training
## 1765                                          Post primary technical training
## 1766                                          Post primary technical training
## 1767                                          Post primary technical training
## 1768                                                        Primary completed
## 1769                                          Post primary technical training
## 1770                                          Post primary technical training
## 1771                                                        Primary completed
## 1772                                          Post primary technical training
## 1773                                          Post primary technical training
## 1774                                          Post primary technical training
## 1775                                          Post primary technical training
## 1776                                                        Primary completed
## 1777                                          Post primary technical training
## 1778                                          Post primary technical training
## 1779                                                        Primary completed
## 1780                                                        Primary completed
## 1781                                                        Primary completed
## 1782                                          Post primary technical training
## 1783                                                        Primary completed
## 1784                                          Post primary technical training
## 1785                                                        Primary completed
## 1786                                                        Primary completed
## 1787                                                        Primary completed
## 1788                                                        Primary completed
## 1789                                          Post primary technical training
## 1790                                                        Primary completed
## 1791                                                        Primary completed
## 1792                                          Post primary technical training
## 1793                                          Post primary technical training
## 1794                                          Post primary technical training
## 1795                                          Post primary technical training
## 1796                                                        Primary completed
## 1797                                          Post primary technical training
## 1798                                          Post primary technical training
## 1799                                          Post primary technical training
## 1800                                                        Primary completed
## 1801                                          Post primary technical training
## 1802                                          Post primary technical training
## 1803                                                        Primary completed
## 1804                                          Post primary technical training
## 1805                                                        Primary completed
## 1806                                                        Primary completed
## 1807                                          Post primary technical training
## 1808                                          Post primary technical training
## 1809                                                        Primary completed
## 1810                                                        Primary completed
## 1811                                          Post primary technical training
## 1812                                                        Primary completed
## 1813                                          Post primary technical training
## 1814                                          Post primary technical training
## 1815                                                        Primary completed
## 1816                                                        Primary completed
## 1817                                          Post primary technical training
## 1818                                          Post primary technical training
## 1819                                          Post primary technical training
## 1820                                                        Primary completed
## 1821                                          Post primary technical training
## 1822                                                        Primary completed
## 1823                                          Post primary technical training
## 1824                                                        Primary completed
## 1825                                          Post primary technical training
## 1826                                                        Primary completed
## 1827                                          Post primary technical training
## 1828                                          Post primary technical training
## 1829                                          Post primary technical training
## 1830                                          Post primary technical training
## 1831                                          Post primary technical training
## 1832                                          Post primary technical training
## 1833                                          Post primary technical training
## 1834                                          Post primary technical training
## 1835                                          Post primary technical training
## 1836                                                        Primary completed
## 1837                                                        Primary completed
## 1838                                          Post primary technical training
## 1839                                          Post primary technical training
## 1840                                          Post primary technical training
## 1841                                          Post primary technical training
## 1842                                                        Primary completed
## 1843                                                        Primary completed
## 1844                                          Post primary technical training
## 1845                                          Post primary technical training
## 1846                                                        Primary completed
## 1847                                                        Primary completed
## 1848                                          Post primary technical training
## 1849                                          Post primary technical training
## 1850                                                        Primary completed
## 1851                                          Post primary technical training
## 1852                                                        Primary completed
## 1853                                                        Primary completed
## 1854                                                        Primary completed
## 1855                                          Post primary technical training
## 1856                                          Post primary technical training
## 1857                                                        Primary completed
## 1858                                          Post primary technical training
## 1859                                          Post primary technical training
## 1860                                                        Primary completed
## 1861                                                        Primary completed
## 1862                                          Post primary technical training
## 1863                                                        Primary completed
## 1864                                                        Primary completed
## 1865                                                        Primary completed
## 1866                                                        Primary completed
## 1867                                                        Primary completed
## 1868                                          Post primary technical training
## 1869                                                        Primary completed
## 1870                                                        Primary completed
## 1871                                          Post primary technical training
## 1872                                          Post primary technical training
## 1873                                                        Primary completed
## 1874                                          Post primary technical training
## 1875                                          Post primary technical training
## 1876                                                        Primary completed
## 1877                                          Post primary technical training
## 1878                                                        Primary completed
## 1879                                                        Primary completed
## 1880                                          Post primary technical training
## 1881                                                        Primary completed
## 1882                                          Post primary technical training
## 1883                                                        Primary completed
## 1884                                                        Primary completed
## 1885                                          Post primary technical training
## 1886                                                        Primary completed
## 1887                                          Post primary technical training
## 1888                                          Post primary technical training
## 1889                                                        Primary completed
## 1890                                          Post primary technical training
## 1891                                          Post primary technical training
## 1892                                                        Primary completed
## 1893                                          Post primary technical training
## 1894                                          Post primary technical training
## 1895                                          Post primary technical training
## 1896                                                        Primary completed
## 1897                                          Post primary technical training
## 1898                                          Post primary technical training
## 1899                                          Post primary technical training
## 1900                                                        Primary completed
## 1901                                                        Primary completed
## 1902                                                        Primary completed
## 1903                                                        Primary completed
## 1904                                          Post primary technical training
## 1905                                                        Primary completed
## 1906                                                        Primary completed
## 1907                                                        Primary completed
## 1908                                          Post primary technical training
## 1909                                                        Primary completed
## 1910                                          Post primary technical training
## 1911                                          Post primary technical training
## 1912                                          Post primary technical training
## 1913                                                        Primary completed
## 1914                                          Post primary technical training
## 1915                                          Post primary technical training
## 1916                                                        Primary completed
## 1917                                          Post primary technical training
## 1918                                          Post primary technical training
## 1919                                          Post primary technical training
## 1920                                                        Primary completed
## 1921                                          Post primary technical training
## 1922                                          Post primary technical training
## 1923                                                        Primary completed
## 1924                                                        Primary completed
## 1925                                                        Primary completed
## 1926                                          Post primary technical training
## 1927                                          Post primary technical training
## 1928                                                        Primary completed
## 1929                                          Post primary technical training
## 1930                                                        Primary completed
## 1931                                          Post primary technical training
## 1932                                          Post primary technical training
## 1933                                          Post primary technical training
## 1934                                          Post primary technical training
## 1935                                          Post primary technical training
## 1936                                                        Primary completed
## 1937                                                        Primary completed
## 1938                                                        Primary completed
## 1939                                          Post primary technical training
## 1940                                                        Primary completed
## 1941                                                        Primary completed
## 1942                                                        Primary completed
## 1943                                          Post primary technical training
## 1944                                                        Primary completed
## 1945                                                        Primary completed
## 1946                                                        Primary completed
## 1947                                                        Primary completed
## 1948                                          Post primary technical training
## 1949                                                        Primary completed
## 1950                                                        Primary completed
## 1951                                                        Primary completed
## 1952                                          Post primary technical training
## 1953                                                        Primary completed
## 1954                                                        Primary completed
## 1955                                          Post primary technical training
## 1956                                                        Primary completed
## 1957                                                        Primary completed
## 1958                                                        Primary completed
## 1959                                          Post primary technical training
## 1960                                          Post primary technical training
## 1961                                          Post primary technical training
## 1962                                                        Primary completed
## 1963                                                        Primary completed
## 1964                                                        Primary completed
## 1965                                                        Primary completed
## 1966                                                        Primary completed
## 1967                                                        Primary completed
## 1968                                          Post primary technical training
## 1969                                          Post primary technical training
## 1970                                          Post primary technical training
## 1971                                          Post primary technical training
## 1972                                          Post primary technical training
## 1973                                                        Primary completed
## 1974                                          Post primary technical training
## 1975                                          Post primary technical training
## 1976                                          Post primary technical training
## 1977                                                        Primary completed
## 1978                                          Post primary technical training
## 1979                                                        Primary completed
## 1980                                          Post primary technical training
## 1981                                          Post primary technical training
## 1982                                                        Primary completed
## 1983                                                        Primary completed
## 1984                                                        Primary completed
## 1985                                                        Primary completed
## 1986                                                        Primary completed
## 1987                                                        Primary completed
## 1988                                                        Primary completed
## 1989                                                        Primary completed
## 1990                                                        Primary completed
## 1991                                          Post primary technical training
## 1992                                                        Primary completed
## 1993                                                        Primary completed
## 1994                                                        Primary completed
## 1995                                          Post primary technical training
## 1996                                          Post primary technical training
## 1997                                          Post primary technical training
## 1998                                          Post primary technical training
## 1999                                                        Primary completed
## 2000                                          Post primary technical training
## 2001                                                        Primary completed
## 2002                                                        Primary completed
## 2003                                          Post primary technical training
## 2004                                                        Primary completed
## 2005                                                        Primary completed
## 2006                                          Post primary technical training
## 2007                                          Post primary technical training
## 2008                                          Post primary technical training
## 2009                                                        Primary completed
## 2010                                                        Primary completed
## 2011                                                        Primary completed
## 2012                                                        Primary completed
## 2013                                          Post primary technical training
## 2014                                                        Primary completed
## 2015                                          Post primary technical training
## 2016                                                        Primary completed
## 2017                                          Post primary technical training
## 2018                                                        Primary completed
## 2019                                                        Primary completed
## 2020                                                        Primary completed
## 2021                                                        Primary completed
## 2022                                          Post primary technical training
## 2023                                          Post primary technical training
## 2024                                                        Primary completed
## 2025                                          Post primary technical training
## 2026                                                        Primary completed
## 2027                                                        Primary completed
## 2028                                          Post primary technical training
## 2029                                                        Primary completed
## 2030                                                        Primary completed
## 2031                                                        Primary completed
## 2032                                                        Primary completed
## 2033                                                        Primary completed
## 2034                                                        Primary completed
## 2035                                                        Primary completed
## 2036                                          Post primary technical training
## 2037                                          Post primary technical training
## 2038                                                        Primary completed
## 2039                                                        Primary completed
## 2040                                          Post primary technical training
## 2041                                                        Primary completed
## 2042                                          Post primary technical training
## 2043                                          Post primary technical training
## 2044                                                        Primary completed
## 2045                                          Post primary technical training
## 2046                                          Post primary technical training
## 2047                                                        Primary completed
## 2048                                                        Primary completed
## 2049                                          Post primary technical training
## 2050                                                        Primary completed
## 2051                                          Post primary technical training
## 2052                                                        Primary completed
## 2053                                          Post primary technical training
## 2054                                          Post primary technical training
## 2055                                                        Primary completed
## 2056                                          Post primary technical training
## 2057                                                        Primary completed
## 2058                                          Post primary technical training
## 2059                                                        Primary completed
## 2060                                                        Primary completed
## 2061                                          Post primary technical training
## 2062                                                        Primary completed
## 2063                                          Post primary technical training
## 2064                                          Post primary technical training
## 2065                                          Post primary technical training
## 2066                                          Post primary technical training
## 2067                                          Post primary technical training
## 2068                                          Post primary technical training
## 2069                                                        Primary completed
## 2070                                          Post primary technical training
## 2071                                                        Primary completed
## 2072                                                        Primary completed
## 2073                                          Post primary technical training
## 2074                                          Post primary technical training
## 2075                                          Post primary technical training
## 2076                                          Post primary technical training
## 2077                                                        Primary completed
## 2078                                          Post primary technical training
## 2079                                          Post primary technical training
## 2080                                          Post primary technical training
## 2081                                          Post primary technical training
## 2082                                          Post primary technical training
## 2083                                          Post primary technical training
## 2084                                          Post primary technical training
## 2085                                          Post primary technical training
## 2086                                                        Primary completed
## 2087                                                        Primary completed
## 2088                                          Post primary technical training
## 2089                                                        Primary completed
## 2090                                                        Primary completed
## 2091                                                        Primary completed
## 2092                                          Post primary technical training
## 2093                                          Post primary technical training
## 2094                                          Post primary technical training
## 2095                                                        Primary completed
## 2096                                          Post primary technical training
## 2097                                                        Primary completed
## 2098                                                        Primary completed
## 2099                                                        Primary completed
## 2100                                                        Primary completed
## 2101                                          Post primary technical training
## 2102                                                        Primary completed
## 2103                                          Post primary technical training
## 2104                                          Post primary technical training
## 2105                                                        Primary completed
## 2106                                                        Primary completed
## 2107                                          Post primary technical training
## 2108                                                        Primary completed
## 2109                                                        Primary completed
## 2110                                          Post primary technical training
## 2111                                          Post primary technical training
## 2112                                                        Primary completed
## 2113                                                        Primary completed
## 2114                                          Post primary technical training
## 2115                                                        Primary completed
## 2116                                                        Primary completed
## 2117                                                        Primary completed
## 2118                                          Post primary technical training
## 2119                                          Post primary technical training
## 2120                                                        Primary completed
## 2121                                                        Primary completed
## 2122                                                        Primary completed
## 2123                                          Post primary technical training
## 2124                                          Post primary technical training
## 2125                                          Post primary technical training
## 2126                                                        Primary completed
## 2127                                                        Primary completed
## 2128                                                        Primary completed
## 2129                                          Post primary technical training
## 2130                                          Post primary technical training
## 2131                                                        Primary completed
## 2132                                          Post primary technical training
## 2133                                          Post primary technical training
## 2134                                                        Primary completed
## 2135                                                        Primary completed
## 2136                                                        Primary completed
## 2137                                          Post primary technical training
## 2138                                                        Primary completed
## 2139                                                        Primary completed
## 2140                                                        Primary completed
## 2141                                          Post primary technical training
## 2142                                                        Primary completed
## 2143                                                        Primary completed
## 2144                                          Post primary technical training
## 2145                                                        Primary completed
## 2146                                          Post primary technical training
## 2147                                          Post primary technical training
## 2148                                          Post primary technical training
## 2149                                                        Primary completed
## 2150                                                        Primary completed
## 2151                                          Post primary technical training
## 2152                                                        Primary completed
## 2153                                          Post primary technical training
## 2154                                                        Primary completed
## 2155                                          Post primary technical training
## 2156                                                        Primary completed
## 2157                                                        Primary completed
## 2158                                                        Primary completed
## 2159                                          Post primary technical training
## 2160                                                        Primary completed
## 2161                                                        Primary completed
## 2162                                          Post primary technical training
## 2163                                                        Primary completed
## 2164                                          Post primary technical training
## 2165                                                        Primary completed
## 2166                                                        Primary completed
## 2167                                          Post primary technical training
## 2168                                          Post primary technical training
## 2169                                          Post primary technical training
## 2170                                          Post primary technical training
## 2171                                                        Primary completed
## 2172                                          Post primary technical training
## 2173                                          Post primary technical training
## 2174                                          Post primary technical training
## 2175                                          Post primary technical training
## 2176                                          Post primary technical training
## 2177                                                        Primary completed
## 2178                                          Post primary technical training
## 2179                                                        Primary completed
## 2180                                          Post primary technical training
## 2181                                          Post primary technical training
## 2182                                          Post primary technical training
## 2183                                                        Primary completed
## 2184                                                        Primary completed
## 2185                                          Post primary technical training
## 2186                                                        Primary completed
## 2187                                          Post primary technical training
## 2188                                                        Primary completed
## 2189                                                        Primary completed
## 2190                                                        Primary completed
## 2191                                                        Primary completed
## 2192                                                        Primary completed
## 2193                                                        Primary completed
## 2194                                          Post primary technical training
## 2195                                                        Primary completed
## 2196                                                        Primary completed
## 2197                                                        Primary completed
## 2198                                          Post primary technical training
## 2199                                                        Primary completed
## 2200                                          Post primary technical training
## 2201                                          Post primary technical training
## 2202                                          Post primary technical training
## 2203                                          Post primary technical training
## 2204                                                        Primary completed
## 2205                                          Post primary technical training
## 2206                                          Post primary technical training
## 2207                                                        Primary completed
## 2208                                          Post primary technical training
## 2209                                          Post primary technical training
## 2210                                          Post primary technical training
## 2211                                                        Primary completed
## 2212                                          Post primary technical training
## 2213                                          Post primary technical training
## 2214                                          Post primary technical training
## 2215                                          Post primary technical training
## 2216                                                        Primary completed
## 2217                                          Post primary technical training
## 2218                                                        Primary completed
## 2219                                                        Primary completed
## 2220                                                        Primary completed
## 2221                                                        Primary completed
## 2222                                          Post primary technical training
## 2223                                          Post primary technical training
## 2224                                          Post primary technical training
## 2225                                                        Primary completed
## 2226                                                        Primary completed
## 2227                                          Post primary technical training
## 2228                                          Post primary technical training
## 2229                                          Post primary technical training
## 2230                                          Post primary technical training
## 2231                                                        Primary completed
## 2232                                          Post primary technical training
## 2233                                          Post primary technical training
## 2234                                                        Primary completed
## 2235                                                        Primary completed
## 2236                                          Post primary technical training
## 2237                                          Post primary technical training
## 2238                                          Post primary technical training
## 2239                                          Post primary technical training
## 2240                                          Post primary technical training
## 2241                                          Post primary technical training
## 2242                                          Post primary technical training
## 2243                                          Post primary technical training
## 2244                                                        Primary completed
## 2245                                          Post primary technical training
## 2246                                          Post primary technical training
## 2247                                                        Primary completed
## 2248                                                        Primary completed
## 2249                                          Post primary technical training
## 2250                                                        Primary completed
## 2251                                                        Primary completed
## 2252                                                        Primary completed
## 2253                                          Post primary technical training
## 2254                                          Post primary technical training
## 2255                                          Post primary technical training
## 2256                                          Post primary technical training
## 2257                                          Post primary technical training
## 2258                                          Post primary technical training
## 2259                                          Post primary technical training
## 2260                                                        Primary completed
## 2261                                                        Primary completed
## 2262                                                        Primary completed
## 2263                                                        Primary completed
## 2264                                          Post primary technical training
## 2265                                          Post primary technical training
## 2266                                                        Primary completed
## 2267                                                        Primary completed
## 2268                                                        Primary completed
## 2269                                          Post primary technical training
## 2270                                          Post primary technical training
## 2271                                          Post primary technical training
## 2272                                          Post primary technical training
##      if_else(Q4 == 5, "Some secondary", "University or other thing")
## 1                                          University or other thing
## 2                                          University or other thing
## 3                                          University or other thing
## 4                                          University or other thing
## 5                                          University or other thing
## 6                                          University or other thing
## 7                                          University or other thing
## 8                                                     Some secondary
## 9                                          University or other thing
## 10                                         University or other thing
## 11                                                    Some secondary
## 12                                         University or other thing
## 13                                         University or other thing
## 14                                         University or other thing
## 15                                         University or other thing
## 16                                         University or other thing
## 17                                         University or other thing
## 18                                         University or other thing
## 19                                         University or other thing
## 20                                         University or other thing
## 21                                         University or other thing
## 22                                         University or other thing
## 23                                         University or other thing
## 24                                         University or other thing
## 25                                         University or other thing
## 26                                         University or other thing
## 27                                         University or other thing
## 28                                         University or other thing
## 29                                         University or other thing
## 30                                         University or other thing
## 31                                         University or other thing
## 32                                         University or other thing
## 33                                         University or other thing
## 34                                         University or other thing
## 35                                         University or other thing
## 36                                         University or other thing
## 37                                         University or other thing
## 38                                         University or other thing
## 39                                         University or other thing
## 40                                         University or other thing
## 41                                         University or other thing
## 42                                         University or other thing
## 43                                         University or other thing
## 44                                         University or other thing
## 45                                         University or other thing
## 46                                         University or other thing
## 47                                         University or other thing
## 48                                         University or other thing
## 49                                         University or other thing
## 50                                         University or other thing
## 51                                         University or other thing
## 52                                         University or other thing
## 53                                         University or other thing
## 54                                         University or other thing
## 55                                         University or other thing
## 56                                         University or other thing
## 57                                         University or other thing
## 58                                         University or other thing
## 59                                         University or other thing
## 60                                         University or other thing
## 61                                         University or other thing
## 62                                         University or other thing
## 63                                         University or other thing
## 64                                         University or other thing
## 65                                         University or other thing
## 66                                         University or other thing
## 67                                         University or other thing
## 68                                         University or other thing
## 69                                         University or other thing
## 70                                         University or other thing
## 71                                         University or other thing
## 72                                         University or other thing
## 73                                         University or other thing
## 74                                         University or other thing
## 75                                         University or other thing
## 76                                         University or other thing
## 77                                         University or other thing
## 78                                         University or other thing
## 79                                         University or other thing
## 80                                                    Some secondary
## 81                                         University or other thing
## 82                                         University or other thing
## 83                                         University or other thing
## 84                                         University or other thing
## 85                                         University or other thing
## 86                                         University or other thing
## 87                                         University or other thing
## 88                                         University or other thing
## 89                                         University or other thing
## 90                                         University or other thing
## 91                                         University or other thing
## 92                                         University or other thing
## 93                                         University or other thing
## 94                                         University or other thing
## 95                                         University or other thing
## 96                                         University or other thing
## 97                                         University or other thing
## 98                                         University or other thing
## 99                                         University or other thing
## 100                                        University or other thing
## 101                                        University or other thing
## 102                                        University or other thing
## 103                                        University or other thing
## 104                                        University or other thing
## 105                                        University or other thing
## 106                                        University or other thing
## 107                                        University or other thing
## 108                                        University or other thing
## 109                                        University or other thing
## 110                                        University or other thing
## 111                                        University or other thing
## 112                                        University or other thing
## 113                                        University or other thing
## 114                                        University or other thing
## 115                                        University or other thing
## 116                                        University or other thing
## 117                                        University or other thing
## 118                                        University or other thing
## 119                                                   Some secondary
## 120                                                   Some secondary
## 121                                        University or other thing
## 122                                        University or other thing
## 123                                        University or other thing
## 124                                        University or other thing
## 125                                                   Some secondary
## 126                                                   Some secondary
## 127                                        University or other thing
## 128                                        University or other thing
## 129                                        University or other thing
## 130                                                   Some secondary
## 131                                        University or other thing
## 132                                        University or other thing
## 133                                        University or other thing
## 134                                        University or other thing
## 135                                        University or other thing
## 136                                        University or other thing
## 137                                        University or other thing
## 138                                                   Some secondary
## 139                                        University or other thing
## 140                                        University or other thing
## 141                                        University or other thing
## 142                                        University or other thing
## 143                                        University or other thing
## 144                                        University or other thing
## 145                                        University or other thing
## 146                                        University or other thing
## 147                                        University or other thing
## 148                                        University or other thing
## 149                                        University or other thing
## 150                                        University or other thing
## 151                                        University or other thing
## 152                                        University or other thing
## 153                                        University or other thing
## 154                                        University or other thing
## 155                                        University or other thing
## 156                                        University or other thing
## 157                                        University or other thing
## 158                                        University or other thing
## 159                                        University or other thing
## 160                                        University or other thing
## 161                                        University or other thing
## 162                                        University or other thing
## 163                                        University or other thing
## 164                                        University or other thing
## 165                                        University or other thing
## 166                                        University or other thing
## 167                                                   Some secondary
## 168                                        University or other thing
## 169                                        University or other thing
## 170                                        University or other thing
## 171                                        University or other thing
## 172                                        University or other thing
## 173                                        University or other thing
## 174                                        University or other thing
## 175                                        University or other thing
## 176                                        University or other thing
## 177                                        University or other thing
## 178                                        University or other thing
## 179                                        University or other thing
## 180                                        University or other thing
## 181                                        University or other thing
## 182                                        University or other thing
## 183                                        University or other thing
## 184                                        University or other thing
## 185                                        University or other thing
## 186                                        University or other thing
## 187                                        University or other thing
## 188                                        University or other thing
## 189                                        University or other thing
## 190                                        University or other thing
## 191                                        University or other thing
## 192                                                   Some secondary
## 193                                        University or other thing
## 194                                        University or other thing
## 195                                        University or other thing
## 196                                        University or other thing
## 197                                        University or other thing
## 198                                        University or other thing
## 199                                        University or other thing
## 200                                        University or other thing
## 201                                        University or other thing
## 202                                        University or other thing
## 203                                        University or other thing
## 204                                        University or other thing
## 205                                        University or other thing
## 206                                        University or other thing
## 207                                        University or other thing
## 208                                        University or other thing
## 209                                        University or other thing
## 210                                        University or other thing
## 211                                        University or other thing
## 212                                        University or other thing
## 213                                        University or other thing
## 214                                        University or other thing
## 215                                        University or other thing
## 216                                        University or other thing
## 217                                        University or other thing
## 218                                        University or other thing
## 219                                        University or other thing
## 220                                        University or other thing
## 221                                        University or other thing
## 222                                        University or other thing
## 223                                        University or other thing
## 224                                        University or other thing
## 225                                        University or other thing
## 226                                        University or other thing
## 227                                        University or other thing
## 228                                        University or other thing
## 229                                        University or other thing
## 230                                        University or other thing
## 231                                                   Some secondary
## 232                                        University or other thing
## 233                                        University or other thing
## 234                                        University or other thing
## 235                                        University or other thing
## 236                                        University or other thing
## 237                                        University or other thing
## 238                                        University or other thing
## 239                                        University or other thing
## 240                                                   Some secondary
## 241                                        University or other thing
## 242                                        University or other thing
## 243                                        University or other thing
## 244                                        University or other thing
## 245                                        University or other thing
## 246                                        University or other thing
## 247                                                   Some secondary
## 248                                        University or other thing
## 249                                        University or other thing
## 250                                        University or other thing
## 251                                        University or other thing
## 252                                        University or other thing
## 253                                        University or other thing
## 254                                        University or other thing
## 255                                                   Some secondary
## 256                                        University or other thing
## 257                                        University or other thing
## 258                                        University or other thing
## 259                                        University or other thing
## 260                                        University or other thing
## 261                                        University or other thing
## 262                                        University or other thing
## 263                                        University or other thing
## 264                                        University or other thing
## 265                                        University or other thing
## 266                                        University or other thing
## 267                                        University or other thing
## 268                                        University or other thing
## 269                                        University or other thing
## 270                                        University or other thing
## 271                                        University or other thing
## 272                                        University or other thing
## 273                                        University or other thing
## 274                                        University or other thing
## 275                                                   Some secondary
## 276                                        University or other thing
## 277                                        University or other thing
## 278                                        University or other thing
## 279                                        University or other thing
## 280                                        University or other thing
## 281                                        University or other thing
## 282                                        University or other thing
## 283                                        University or other thing
## 284                                        University or other thing
## 285                                        University or other thing
## 286                                        University or other thing
## 287                                        University or other thing
## 288                                        University or other thing
## 289                                        University or other thing
## 290                                        University or other thing
## 291                                        University or other thing
## 292                                        University or other thing
## 293                                        University or other thing
## 294                                        University or other thing
## 295                                        University or other thing
## 296                                        University or other thing
## 297                                        University or other thing
## 298                                        University or other thing
## 299                                        University or other thing
## 300                                        University or other thing
## 301                                        University or other thing
## 302                                        University or other thing
## 303                                        University or other thing
## 304                                        University or other thing
## 305                                        University or other thing
## 306                                        University or other thing
## 307                                        University or other thing
## 308                                        University or other thing
## 309                                        University or other thing
## 310                                        University or other thing
## 311                                        University or other thing
## 312                                                   Some secondary
## 313                                        University or other thing
## 314                                        University or other thing
## 315                                        University or other thing
## 316                                        University or other thing
## 317                                        University or other thing
## 318                                        University or other thing
## 319                                                   Some secondary
## 320                                        University or other thing
## 321                                        University or other thing
## 322                                        University or other thing
## 323                                        University or other thing
## 324                                        University or other thing
## 325                                                   Some secondary
## 326                                        University or other thing
## 327                                        University or other thing
## 328                                        University or other thing
## 329                                        University or other thing
## 330                                        University or other thing
## 331                                        University or other thing
## 332                                        University or other thing
## 333                                        University or other thing
## 334                                        University or other thing
## 335                                        University or other thing
## 336                                        University or other thing
## 337                                                   Some secondary
## 338                                        University or other thing
## 339                                        University or other thing
## 340                                        University or other thing
## 341                                        University or other thing
## 342                                        University or other thing
## 343                                        University or other thing
## 344                                        University or other thing
## 345                                        University or other thing
## 346                                        University or other thing
## 347                                        University or other thing
## 348                                        University or other thing
## 349                                        University or other thing
## 350                                        University or other thing
## 351                                        University or other thing
## 352                                        University or other thing
## 353                                        University or other thing
## 354                                        University or other thing
## 355                                        University or other thing
## 356                                        University or other thing
## 357                                        University or other thing
## 358                                        University or other thing
## 359                                        University or other thing
## 360                                        University or other thing
## 361                                        University or other thing
## 362                                        University or other thing
## 363                                        University or other thing
## 364                                        University or other thing
## 365                                        University or other thing
## 366                                        University or other thing
## 367                                        University or other thing
## 368                                        University or other thing
## 369                                        University or other thing
## 370                                        University or other thing
## 371                                        University or other thing
## 372                                        University or other thing
## 373                                        University or other thing
## 374                                        University or other thing
## 375                                        University or other thing
## 376                                        University or other thing
## 377                                        University or other thing
## 378                                                   Some secondary
## 379                                        University or other thing
## 380                                        University or other thing
## 381                                        University or other thing
## 382                                        University or other thing
## 383                                        University or other thing
## 384                                        University or other thing
## 385                                        University or other thing
## 386                                        University or other thing
## 387                                        University or other thing
## 388                                        University or other thing
## 389                                        University or other thing
## 390                                        University or other thing
## 391                                        University or other thing
## 392                                        University or other thing
## 393                                        University or other thing
## 394                                        University or other thing
## 395                                        University or other thing
## 396                                        University or other thing
## 397                                        University or other thing
## 398                                        University or other thing
## 399                                        University or other thing
## 400                                        University or other thing
## 401                                        University or other thing
## 402                                                   Some secondary
## 403                                                   Some secondary
## 404                                        University or other thing
## 405                                        University or other thing
## 406                                        University or other thing
## 407                                        University or other thing
## 408                                        University or other thing
## 409                                                   Some secondary
## 410                                        University or other thing
## 411                                        University or other thing
## 412                                        University or other thing
## 413                                        University or other thing
## 414                                        University or other thing
## 415                                        University or other thing
## 416                                                   Some secondary
## 417                                        University or other thing
## 418                                        University or other thing
## 419                                        University or other thing
## 420                                        University or other thing
## 421                                        University or other thing
## 422                                        University or other thing
## 423                                        University or other thing
## 424                                        University or other thing
## 425                                        University or other thing
## 426                                        University or other thing
## 427                                        University or other thing
## 428                                        University or other thing
## 429                                        University or other thing
## 430                                        University or other thing
## 431                                        University or other thing
## 432                                        University or other thing
## 433                                        University or other thing
## 434                                        University or other thing
## 435                                        University or other thing
## 436                                        University or other thing
## 437                                                   Some secondary
## 438                                        University or other thing
## 439                                        University or other thing
## 440                                        University or other thing
## 441                                        University or other thing
## 442                                                   Some secondary
## 443                                        University or other thing
## 444                                        University or other thing
## 445                                        University or other thing
## 446                                        University or other thing
## 447                                        University or other thing
## 448                                        University or other thing
## 449                                        University or other thing
## 450                                        University or other thing
## 451                                        University or other thing
## 452                                        University or other thing
## 453                                        University or other thing
## 454                                        University or other thing
## 455                                        University or other thing
## 456                                        University or other thing
## 457                                        University or other thing
## 458                                        University or other thing
## 459                                        University or other thing
## 460                                        University or other thing
## 461                                        University or other thing
## 462                                        University or other thing
## 463                                        University or other thing
## 464                                        University or other thing
## 465                                        University or other thing
## 466                                                   Some secondary
## 467                                        University or other thing
## 468                                        University or other thing
## 469                                        University or other thing
## 470                                        University or other thing
## 471                                        University or other thing
## 472                                        University or other thing
## 473                                        University or other thing
## 474                                        University or other thing
## 475                                        University or other thing
## 476                                        University or other thing
## 477                                        University or other thing
## 478                                                   Some secondary
## 479                                                   Some secondary
## 480                                        University or other thing
## 481                                        University or other thing
## 482                                        University or other thing
## 483                                        University or other thing
## 484                                        University or other thing
## 485                                        University or other thing
## 486                                        University or other thing
## 487                                        University or other thing
## 488                                        University or other thing
## 489                                        University or other thing
## 490                                        University or other thing
## 491                                        University or other thing
## 492                                        University or other thing
## 493                                        University or other thing
## 494                                        University or other thing
## 495                                        University or other thing
## 496                                        University or other thing
## 497                                        University or other thing
## 498                                        University or other thing
## 499                                                   Some secondary
## 500                                        University or other thing
## 501                                        University or other thing
## 502                                        University or other thing
## 503                                        University or other thing
## 504                                        University or other thing
## 505                                        University or other thing
## 506                                        University or other thing
## 507                                        University or other thing
## 508                                        University or other thing
## 509                                        University or other thing
## 510                                        University or other thing
## 511                                        University or other thing
## 512                                        University or other thing
## 513                                        University or other thing
## 514                                        University or other thing
## 515                                                   Some secondary
## 516                                        University or other thing
## 517                                        University or other thing
## 518                                        University or other thing
## 519                                        University or other thing
## 520                                        University or other thing
## 521                                        University or other thing
## 522                                        University or other thing
## 523                                        University or other thing
## 524                                        University or other thing
## 525                                        University or other thing
## 526                                        University or other thing
## 527                                        University or other thing
## 528                                        University or other thing
## 529                                        University or other thing
## 530                                        University or other thing
## 531                                        University or other thing
## 532                                        University or other thing
## 533                                        University or other thing
## 534                                        University or other thing
## 535                                        University or other thing
## 536                                        University or other thing
## 537                                        University or other thing
## 538                                        University or other thing
## 539                                        University or other thing
## 540                                        University or other thing
## 541                                        University or other thing
## 542                                        University or other thing
## 543                                        University or other thing
## 544                                        University or other thing
## 545                                                   Some secondary
## 546                                        University or other thing
## 547                                        University or other thing
## 548                                        University or other thing
## 549                                        University or other thing
## 550                                        University or other thing
## 551                                        University or other thing
## 552                                        University or other thing
## 553                                                   Some secondary
## 554                                        University or other thing
## 555                                        University or other thing
## 556                                        University or other thing
## 557                                        University or other thing
## 558                                        University or other thing
## 559                                        University or other thing
## 560                                        University or other thing
## 561                                        University or other thing
## 562                                        University or other thing
## 563                                        University or other thing
## 564                                        University or other thing
## 565                                        University or other thing
## 566                                        University or other thing
## 567                                        University or other thing
## 568                                        University or other thing
## 569                                        University or other thing
## 570                                        University or other thing
## 571                                        University or other thing
## 572                                        University or other thing
## 573                                        University or other thing
## 574                                        University or other thing
## 575                                        University or other thing
## 576                                        University or other thing
## 577                                        University or other thing
## 578                                        University or other thing
## 579                                        University or other thing
## 580                                        University or other thing
## 581                                        University or other thing
## 582                                        University or other thing
## 583                                        University or other thing
## 584                                        University or other thing
## 585                                        University or other thing
## 586                                        University or other thing
## 587                                        University or other thing
## 588                                        University or other thing
## 589                                        University or other thing
## 590                                        University or other thing
## 591                                        University or other thing
## 592                                        University or other thing
## 593                                        University or other thing
## 594                                        University or other thing
## 595                                        University or other thing
## 596                                        University or other thing
## 597                                        University or other thing
## 598                                        University or other thing
## 599                                        University or other thing
## 600                                        University or other thing
## 601                                        University or other thing
## 602                                        University or other thing
## 603                                        University or other thing
## 604                                        University or other thing
## 605                                        University or other thing
## 606                                        University or other thing
## 607                                        University or other thing
## 608                                        University or other thing
## 609                                        University or other thing
## 610                                        University or other thing
## 611                                        University or other thing
## 612                                        University or other thing
## 613                                        University or other thing
## 614                                        University or other thing
## 615                                        University or other thing
## 616                                        University or other thing
## 617                                        University or other thing
## 618                                        University or other thing
## 619                                        University or other thing
## 620                                        University or other thing
## 621                                        University or other thing
## 622                                        University or other thing
## 623                                        University or other thing
## 624                                        University or other thing
## 625                                        University or other thing
## 626                                        University or other thing
## 627                                        University or other thing
## 628                                        University or other thing
## 629                                        University or other thing
## 630                                        University or other thing
## 631                                        University or other thing
## 632                                        University or other thing
## 633                                        University or other thing
## 634                                        University or other thing
## 635                                        University or other thing
## 636                                        University or other thing
## 637                                                   Some secondary
## 638                                        University or other thing
## 639                                        University or other thing
## 640                                        University or other thing
## 641                                        University or other thing
## 642                                        University or other thing
## 643                                        University or other thing
## 644                                        University or other thing
## 645                                        University or other thing
## 646                                                   Some secondary
## 647                                        University or other thing
## 648                                        University or other thing
## 649                                        University or other thing
## 650                                        University or other thing
## 651                                                   Some secondary
## 652                                        University or other thing
## 653                                                   Some secondary
## 654                                        University or other thing
## 655                                        University or other thing
## 656                                        University or other thing
## 657                                        University or other thing
## 658                                                   Some secondary
## 659                                        University or other thing
## 660                                        University or other thing
## 661                                        University or other thing
## 662                                        University or other thing
## 663                                                   Some secondary
## 664                                        University or other thing
## 665                                        University or other thing
## 666                                        University or other thing
## 667                                        University or other thing
## 668                                        University or other thing
## 669                                        University or other thing
## 670                                        University or other thing
## 671                                        University or other thing
## 672                                        University or other thing
## 673                                        University or other thing
## 674                                        University or other thing
## 675                                        University or other thing
## 676                                        University or other thing
## 677                                        University or other thing
## 678                                        University or other thing
## 679                                                   Some secondary
## 680                                        University or other thing
## 681                                        University or other thing
## 682                                        University or other thing
## 683                                        University or other thing
## 684                                        University or other thing
## 685                                        University or other thing
## 686                                        University or other thing
## 687                                        University or other thing
## 688                                        University or other thing
## 689                                        University or other thing
## 690                                        University or other thing
## 691                                        University or other thing
## 692                                        University or other thing
## 693                                        University or other thing
## 694                                        University or other thing
## 695                                        University or other thing
## 696                                        University or other thing
## 697                                        University or other thing
## 698                                        University or other thing
## 699                                        University or other thing
## 700                                        University or other thing
## 701                                        University or other thing
## 702                                        University or other thing
## 703                                        University or other thing
## 704                                        University or other thing
## 705                                        University or other thing
## 706                                        University or other thing
## 707                                        University or other thing
## 708                                        University or other thing
## 709                                        University or other thing
## 710                                        University or other thing
## 711                                        University or other thing
## 712                                        University or other thing
## 713                                        University or other thing
## 714                                        University or other thing
## 715                                        University or other thing
## 716                                        University or other thing
## 717                                        University or other thing
## 718                                        University or other thing
## 719                                        University or other thing
## 720                                                   Some secondary
## 721                                        University or other thing
## 722                                        University or other thing
## 723                                                   Some secondary
## 724                                        University or other thing
## 725                                        University or other thing
## 726                                        University or other thing
## 727                                        University or other thing
## 728                                                   Some secondary
## 729                                        University or other thing
## 730                                        University or other thing
## 731                                        University or other thing
## 732                                                   Some secondary
## 733                                        University or other thing
## 734                                        University or other thing
## 735                                        University or other thing
## 736                                        University or other thing
## 737                                        University or other thing
## 738                                        University or other thing
## 739                                        University or other thing
## 740                                        University or other thing
## 741                                        University or other thing
## 742                                        University or other thing
## 743                                        University or other thing
## 744                                        University or other thing
## 745                                        University or other thing
## 746                                        University or other thing
## 747                                        University or other thing
## 748                                        University or other thing
## 749                                        University or other thing
## 750                                        University or other thing
## 751                                        University or other thing
## 752                                        University or other thing
## 753                                        University or other thing
## 754                                        University or other thing
## 755                                        University or other thing
## 756                                        University or other thing
## 757                                        University or other thing
## 758                                        University or other thing
## 759                                        University or other thing
## 760                                        University or other thing
## 761                                        University or other thing
## 762                                        University or other thing
## 763                                                   Some secondary
## 764                                        University or other thing
## 765                                        University or other thing
## 766                                        University or other thing
## 767                                        University or other thing
## 768                                        University or other thing
## 769                                        University or other thing
## 770                                        University or other thing
## 771                                        University or other thing
## 772                                        University or other thing
## 773                                        University or other thing
## 774                                        University or other thing
## 775                                        University or other thing
## 776                                        University or other thing
## 777                                        University or other thing
## 778                                        University or other thing
## 779                                        University or other thing
## 780                                        University or other thing
## 781                                        University or other thing
## 782                                        University or other thing
## 783                                        University or other thing
## 784                                        University or other thing
## 785                                        University or other thing
## 786                                        University or other thing
## 787                                        University or other thing
## 788                                        University or other thing
## 789                                        University or other thing
## 790                                        University or other thing
## 791                                        University or other thing
## 792                                        University or other thing
## 793                                        University or other thing
## 794                                        University or other thing
## 795                                        University or other thing
## 796                                        University or other thing
## 797                                        University or other thing
## 798                                        University or other thing
## 799                                        University or other thing
## 800                                        University or other thing
## 801                                        University or other thing
## 802                                        University or other thing
## 803                                        University or other thing
## 804                                                   Some secondary
## 805                                                   Some secondary
## 806                                        University or other thing
## 807                                        University or other thing
## 808                                        University or other thing
## 809                                        University or other thing
## 810                                        University or other thing
## 811                                        University or other thing
## 812                                        University or other thing
## 813                                        University or other thing
## 814                                        University or other thing
## 815                                        University or other thing
## 816                                        University or other thing
## 817                                        University or other thing
## 818                                                   Some secondary
## 819                                        University or other thing
## 820                                        University or other thing
## 821                                        University or other thing
## 822                                        University or other thing
## 823                                        University or other thing
## 824                                        University or other thing
## 825                                        University or other thing
## 826                                        University or other thing
## 827                                                   Some secondary
## 828                                        University or other thing
## 829                                        University or other thing
## 830                                        University or other thing
## 831                                                   Some secondary
## 832                                        University or other thing
## 833                                        University or other thing
## 834                                        University or other thing
## 835                                                   Some secondary
## 836                                        University or other thing
## 837                                        University or other thing
## 838                                        University or other thing
## 839                                        University or other thing
## 840                                        University or other thing
## 841                                        University or other thing
## 842                                        University or other thing
## 843                                        University or other thing
## 844                                        University or other thing
## 845                                        University or other thing
## 846                                        University or other thing
## 847                                        University or other thing
## 848                                        University or other thing
## 849                                        University or other thing
## 850                                                   Some secondary
## 851                                        University or other thing
## 852                                                   Some secondary
## 853                                        University or other thing
## 854                                                   Some secondary
## 855                                        University or other thing
## 856                                        University or other thing
## 857                                        University or other thing
## 858                                        University or other thing
## 859                                        University or other thing
## 860                                        University or other thing
## 861                                        University or other thing
## 862                                        University or other thing
## 863                                        University or other thing
## 864                                        University or other thing
## 865                                        University or other thing
## 866                                        University or other thing
## 867                                        University or other thing
## 868                                        University or other thing
## 869                                        University or other thing
## 870                                        University or other thing
## 871                                        University or other thing
## 872                                        University or other thing
## 873                                        University or other thing
## 874                                        University or other thing
## 875                                        University or other thing
## 876                                        University or other thing
## 877                                        University or other thing
## 878                                        University or other thing
## 879                                        University or other thing
## 880                                        University or other thing
## 881                                        University or other thing
## 882                                        University or other thing
## 883                                        University or other thing
## 884                                        University or other thing
## 885                                        University or other thing
## 886                                        University or other thing
## 887                                        University or other thing
## 888                                        University or other thing
## 889                                        University or other thing
## 890                                                   Some secondary
## 891                                                   Some secondary
## 892                                                   Some secondary
## 893                                        University or other thing
## 894                                        University or other thing
## 895                                        University or other thing
## 896                                        University or other thing
## 897                                        University or other thing
## 898                                        University or other thing
## 899                                        University or other thing
## 900                                        University or other thing
## 901                                        University or other thing
## 902                                        University or other thing
## 903                                        University or other thing
## 904                                        University or other thing
## 905                                        University or other thing
## 906                                        University or other thing
## 907                                        University or other thing
## 908                                        University or other thing
## 909                                        University or other thing
## 910                                        University or other thing
## 911                                        University or other thing
## 912                                        University or other thing
## 913                                        University or other thing
## 914                                        University or other thing
## 915                                        University or other thing
## 916                                        University or other thing
## 917                                        University or other thing
## 918                                        University or other thing
## 919                                        University or other thing
## 920                                        University or other thing
## 921                                        University or other thing
## 922                                        University or other thing
## 923                                        University or other thing
## 924                                        University or other thing
## 925                                        University or other thing
## 926                                        University or other thing
## 927                                        University or other thing
## 928                                        University or other thing
## 929                                        University or other thing
## 930                                                   Some secondary
## 931                                        University or other thing
## 932                                        University or other thing
## 933                                        University or other thing
## 934                                        University or other thing
## 935                                        University or other thing
## 936                                        University or other thing
## 937                                        University or other thing
## 938                                        University or other thing
## 939                                        University or other thing
## 940                                                   Some secondary
## 941                                        University or other thing
## 942                                        University or other thing
## 943                                        University or other thing
## 944                                        University or other thing
## 945                                        University or other thing
## 946                                        University or other thing
## 947                                        University or other thing
## 948                                        University or other thing
## 949                                        University or other thing
## 950                                        University or other thing
## 951                                        University or other thing
## 952                                                   Some secondary
## 953                                        University or other thing
## 954                                        University or other thing
## 955                                        University or other thing
## 956                                        University or other thing
## 957                                        University or other thing
## 958                                        University or other thing
## 959                                        University or other thing
## 960                                        University or other thing
## 961                                        University or other thing
## 962                                        University or other thing
## 963                                                   Some secondary
## 964                                        University or other thing
## 965                                        University or other thing
## 966                                        University or other thing
## 967                                        University or other thing
## 968                                        University or other thing
## 969                                        University or other thing
## 970                                        University or other thing
## 971                                        University or other thing
## 972                                        University or other thing
## 973                                        University or other thing
## 974                                        University or other thing
## 975                                        University or other thing
## 976                                        University or other thing
## 977                                        University or other thing
## 978                                                   Some secondary
## 979                                        University or other thing
## 980                                        University or other thing
## 981                                        University or other thing
## 982                                        University or other thing
## 983                                        University or other thing
## 984                                        University or other thing
## 985                                        University or other thing
## 986                                        University or other thing
## 987                                        University or other thing
## 988                                        University or other thing
## 989                                        University or other thing
## 990                                        University or other thing
## 991                                        University or other thing
## 992                                        University or other thing
## 993                                        University or other thing
## 994                                        University or other thing
## 995                                        University or other thing
## 996                                        University or other thing
## 997                                        University or other thing
## 998                                        University or other thing
## 999                                        University or other thing
## 1000                                                  Some secondary
## 1001                                       University or other thing
## 1002                                       University or other thing
## 1003                                       University or other thing
## 1004                                       University or other thing
## 1005                                       University or other thing
## 1006                                       University or other thing
## 1007                                       University or other thing
## 1008                                       University or other thing
## 1009                                       University or other thing
## 1010                                       University or other thing
## 1011                                       University or other thing
## 1012                                       University or other thing
## 1013                                       University or other thing
## 1014                                       University or other thing
## 1015                                                  Some secondary
## 1016                                       University or other thing
## 1017                                                  Some secondary
## 1018                                       University or other thing
## 1019                                       University or other thing
## 1020                                       University or other thing
## 1021                                       University or other thing
## 1022                                       University or other thing
## 1023                                                  Some secondary
## 1024                                       University or other thing
## 1025                                       University or other thing
## 1026                                       University or other thing
## 1027                                       University or other thing
## 1028                                       University or other thing
## 1029                                       University or other thing
## 1030                                       University or other thing
## 1031                                       University or other thing
## 1032                                       University or other thing
## 1033                                       University or other thing
## 1034                                       University or other thing
## 1035                                                  Some secondary
## 1036                                       University or other thing
## 1037                                       University or other thing
## 1038                                       University or other thing
## 1039                                       University or other thing
## 1040                                                  Some secondary
## 1041                                       University or other thing
## 1042                                       University or other thing
## 1043                                       University or other thing
## 1044                                       University or other thing
## 1045                                       University or other thing
## 1046                                       University or other thing
## 1047                                       University or other thing
## 1048                                       University or other thing
## 1049                                       University or other thing
## 1050                                       University or other thing
## 1051                                                  Some secondary
## 1052                                                  Some secondary
## 1053                                       University or other thing
## 1054                                       University or other thing
## 1055                                       University or other thing
## 1056                                       University or other thing
## 1057                                       University or other thing
## 1058                                       University or other thing
## 1059                                       University or other thing
## 1060                                       University or other thing
## 1061                                       University or other thing
## 1062                                       University or other thing
## 1063                                       University or other thing
## 1064                                       University or other thing
## 1065                                       University or other thing
## 1066                                       University or other thing
## 1067                                       University or other thing
## 1068                                       University or other thing
## 1069                                       University or other thing
## 1070                                       University or other thing
## 1071                                       University or other thing
## 1072                                       University or other thing
## 1073                                       University or other thing
## 1074                                       University or other thing
## 1075                                       University or other thing
## 1076                                       University or other thing
## 1077                                       University or other thing
## 1078                                       University or other thing
## 1079                                       University or other thing
## 1080                                       University or other thing
## 1081                                       University or other thing
## 1082                                       University or other thing
## 1083                                       University or other thing
## 1084                                       University or other thing
## 1085                                       University or other thing
## 1086                                       University or other thing
## 1087                                       University or other thing
## 1088                                       University or other thing
## 1089                                       University or other thing
## 1090                                       University or other thing
## 1091                                       University or other thing
## 1092                                       University or other thing
## 1093                                       University or other thing
## 1094                                       University or other thing
## 1095                                       University or other thing
## 1096                                       University or other thing
## 1097                                       University or other thing
## 1098                                       University or other thing
## 1099                                       University or other thing
## 1100                                       University or other thing
## 1101                                       University or other thing
## 1102                                       University or other thing
## 1103                                                  Some secondary
## 1104                                       University or other thing
## 1105                                       University or other thing
## 1106                                       University or other thing
## 1107                                       University or other thing
## 1108                                       University or other thing
## 1109                                       University or other thing
## 1110                                       University or other thing
## 1111                                       University or other thing
## 1112                                       University or other thing
## 1113                                       University or other thing
## 1114                                       University or other thing
## 1115                                       University or other thing
## 1116                                       University or other thing
## 1117                                       University or other thing
## 1118                                       University or other thing
## 1119                                       University or other thing
## 1120                                       University or other thing
## 1121                                       University or other thing
## 1122                                       University or other thing
## 1123                                       University or other thing
## 1124                                       University or other thing
## 1125                                       University or other thing
## 1126                                       University or other thing
## 1127                                       University or other thing
## 1128                                       University or other thing
## 1129                                       University or other thing
## 1130                                       University or other thing
## 1131                                       University or other thing
## 1132                                       University or other thing
## 1133                                       University or other thing
## 1134                                       University or other thing
## 1135                                       University or other thing
## 1136                                       University or other thing
## 1137                                       University or other thing
## 1138                                       University or other thing
## 1139                                       University or other thing
## 1140                                       University or other thing
## 1141                                       University or other thing
## 1142                                                  Some secondary
## 1143                                       University or other thing
## 1144                                       University or other thing
## 1145                                       University or other thing
## 1146                                       University or other thing
## 1147                                       University or other thing
## 1148                                       University or other thing
## 1149                                       University or other thing
## 1150                                       University or other thing
## 1151                                       University or other thing
## 1152                                       University or other thing
## 1153                                       University or other thing
## 1154                                       University or other thing
## 1155                                       University or other thing
## 1156                                       University or other thing
## 1157                                       University or other thing
## 1158                                       University or other thing
## 1159                                       University or other thing
## 1160                                       University or other thing
## 1161                                       University or other thing
## 1162                                       University or other thing
## 1163                                       University or other thing
## 1164                                       University or other thing
## 1165                                       University or other thing
## 1166                                       University or other thing
## 1167                                                  Some secondary
## 1168                                                  Some secondary
## 1169                                                  Some secondary
## 1170                                       University or other thing
## 1171                                       University or other thing
## 1172                                       University or other thing
## 1173                                       University or other thing
## 1174                                       University or other thing
## 1175                                       University or other thing
## 1176                                                  Some secondary
## 1177                                       University or other thing
## 1178                                       University or other thing
## 1179                                       University or other thing
## 1180                                       University or other thing
## 1181                                       University or other thing
## 1182                                       University or other thing
## 1183                                       University or other thing
## 1184                                       University or other thing
## 1185                                       University or other thing
## 1186                                       University or other thing
## 1187                                       University or other thing
## 1188                                       University or other thing
## 1189                                       University or other thing
## 1190                                       University or other thing
## 1191                                       University or other thing
## 1192                                       University or other thing
## 1193                                       University or other thing
## 1194                                       University or other thing
## 1195                                                  Some secondary
## 1196                                       University or other thing
## 1197                                       University or other thing
## 1198                                       University or other thing
## 1199                                       University or other thing
## 1200                                                  Some secondary
## 1201                                       University or other thing
## 1202                                       University or other thing
## 1203                                       University or other thing
## 1204                                       University or other thing
## 1205                                       University or other thing
## 1206                                       University or other thing
## 1207                                       University or other thing
## 1208                                       University or other thing
## 1209                                       University or other thing
## 1210                                       University or other thing
## 1211                                       University or other thing
## 1212                                       University or other thing
## 1213                                       University or other thing
## 1214                                       University or other thing
## 1215                                       University or other thing
## 1216                                       University or other thing
## 1217                                       University or other thing
## 1218                                       University or other thing
## 1219                                       University or other thing
## 1220                                       University or other thing
## 1221                                       University or other thing
## 1222                                       University or other thing
## 1223                                       University or other thing
## 1224                                       University or other thing
## 1225                                       University or other thing
## 1226                                       University or other thing
## 1227                                       University or other thing
## 1228                                       University or other thing
## 1229                                       University or other thing
## 1230                                       University or other thing
## 1231                                       University or other thing
## 1232                                       University or other thing
## 1233                                       University or other thing
## 1234                                       University or other thing
## 1235                                       University or other thing
## 1236                                       University or other thing
## 1237                                       University or other thing
## 1238                                       University or other thing
## 1239                                       University or other thing
## 1240                                       University or other thing
## 1241                                       University or other thing
## 1242                                       University or other thing
## 1243                                                  Some secondary
## 1244                                       University or other thing
## 1245                                       University or other thing
## 1246                                       University or other thing
## 1247                                       University or other thing
## 1248                                       University or other thing
## 1249                                                  Some secondary
## 1250                                       University or other thing
## 1251                                       University or other thing
## 1252                                       University or other thing
## 1253                                                  Some secondary
## 1254                                       University or other thing
## 1255                                       University or other thing
## 1256                                                  Some secondary
## 1257                                       University or other thing
## 1258                                                  Some secondary
## 1259                                       University or other thing
## 1260                                       University or other thing
## 1261                                       University or other thing
## 1262                                       University or other thing
## 1263                                       University or other thing
## 1264                                       University or other thing
## 1265                                                  Some secondary
## 1266                                       University or other thing
## 1267                                       University or other thing
## 1268                                       University or other thing
## 1269                                                  Some secondary
## 1270                                       University or other thing
## 1271                                       University or other thing
## 1272                                       University or other thing
## 1273                                       University or other thing
## 1274                                       University or other thing
## 1275                                       University or other thing
## 1276                                       University or other thing
## 1277                                       University or other thing
## 1278                                       University or other thing
## 1279                                       University or other thing
## 1280                                       University or other thing
## 1281                                       University or other thing
## 1282                                       University or other thing
## 1283                                       University or other thing
## 1284                                       University or other thing
## 1285                                       University or other thing
## 1286                                       University or other thing
## 1287                                       University or other thing
## 1288                                       University or other thing
## 1289                                       University or other thing
## 1290                                       University or other thing
## 1291                                       University or other thing
## 1292                                       University or other thing
## 1293                                       University or other thing
## 1294                                       University or other thing
## 1295                                       University or other thing
## 1296                                                  Some secondary
## 1297                                       University or other thing
## 1298                                       University or other thing
## 1299                                       University or other thing
## 1300                                       University or other thing
## 1301                                       University or other thing
## 1302                                       University or other thing
## 1303                                       University or other thing
## 1304                                       University or other thing
## 1305                                       University or other thing
## 1306                                       University or other thing
## 1307                                       University or other thing
## 1308                                       University or other thing
## 1309                                       University or other thing
## 1310                                       University or other thing
## 1311                                       University or other thing
## 1312                                       University or other thing
## 1313                                       University or other thing
## 1314                                       University or other thing
## 1315                                       University or other thing
## 1316                                       University or other thing
## 1317                                       University or other thing
## 1318                                       University or other thing
## 1319                                                  Some secondary
## 1320                                       University or other thing
## 1321                                       University or other thing
## 1322                                       University or other thing
## 1323                                       University or other thing
## 1324                                       University or other thing
## 1325                                       University or other thing
## 1326                                       University or other thing
## 1327                                       University or other thing
## 1328                                       University or other thing
## 1329                                       University or other thing
## 1330                                       University or other thing
## 1331                                       University or other thing
## 1332                                       University or other thing
## 1333                                       University or other thing
## 1334                                       University or other thing
## 1335                                       University or other thing
## 1336                                       University or other thing
## 1337                                       University or other thing
## 1338                                       University or other thing
## 1339                                       University or other thing
## 1340                                       University or other thing
## 1341                                       University or other thing
## 1342                                       University or other thing
## 1343                                       University or other thing
## 1344                                       University or other thing
## 1345                                       University or other thing
## 1346                                       University or other thing
## 1347                                       University or other thing
## 1348                                       University or other thing
## 1349                                       University or other thing
## 1350                                       University or other thing
## 1351                                       University or other thing
## 1352                                       University or other thing
## 1353                                       University or other thing
## 1354                                       University or other thing
## 1355                                       University or other thing
## 1356                                       University or other thing
## 1357                                       University or other thing
## 1358                                       University or other thing
## 1359                                       University or other thing
## 1360                                       University or other thing
## 1361                                       University or other thing
## 1362                                       University or other thing
## 1363                                       University or other thing
## 1364                                       University or other thing
## 1365                                       University or other thing
## 1366                                       University or other thing
## 1367                                       University or other thing
## 1368                                       University or other thing
## 1369                                       University or other thing
## 1370                                       University or other thing
## 1371                                       University or other thing
## 1372                                       University or other thing
## 1373                                       University or other thing
## 1374                                       University or other thing
## 1375                                       University or other thing
## 1376                                       University or other thing
## 1377                                       University or other thing
## 1378                                                  Some secondary
## 1379                                       University or other thing
## 1380                                       University or other thing
## 1381                                       University or other thing
## 1382                                       University or other thing
## 1383                                       University or other thing
## 1384                                       University or other thing
## 1385                                       University or other thing
## 1386                                       University or other thing
## 1387                                       University or other thing
## 1388                                       University or other thing
## 1389                                       University or other thing
## 1390                                       University or other thing
## 1391                                       University or other thing
## 1392                                       University or other thing
## 1393                                       University or other thing
## 1394                                       University or other thing
## 1395                                       University or other thing
## 1396                                       University or other thing
## 1397                                       University or other thing
## 1398                                       University or other thing
## 1399                                       University or other thing
## 1400                                       University or other thing
## 1401                                       University or other thing
## 1402                                       University or other thing
## 1403                                       University or other thing
## 1404                                       University or other thing
## 1405                                       University or other thing
## 1406                                       University or other thing
## 1407                                       University or other thing
## 1408                                       University or other thing
## 1409                                       University or other thing
## 1410                                       University or other thing
## 1411                                                  Some secondary
## 1412                                       University or other thing
## 1413                                       University or other thing
## 1414                                       University or other thing
## 1415                                       University or other thing
## 1416                                       University or other thing
## 1417                                       University or other thing
## 1418                                       University or other thing
## 1419                                       University or other thing
## 1420                                       University or other thing
## 1421                                       University or other thing
## 1422                                       University or other thing
## 1423                                       University or other thing
## 1424                                       University or other thing
## 1425                                       University or other thing
## 1426                                       University or other thing
## 1427                                       University or other thing
## 1428                                       University or other thing
## 1429                                       University or other thing
## 1430                                       University or other thing
## 1431                                       University or other thing
## 1432                                                  Some secondary
## 1433                                       University or other thing
## 1434                                       University or other thing
## 1435                                       University or other thing
## 1436                                       University or other thing
## 1437                                       University or other thing
## 1438                                       University or other thing
## 1439                                       University or other thing
## 1440                                       University or other thing
## 1441                                       University or other thing
## 1442                                       University or other thing
## 1443                                       University or other thing
## 1444                                       University or other thing
## 1445                                       University or other thing
## 1446                                       University or other thing
## 1447                                       University or other thing
## 1448                                       University or other thing
## 1449                                       University or other thing
## 1450                                       University or other thing
## 1451                                       University or other thing
## 1452                                       University or other thing
## 1453                                       University or other thing
## 1454                                       University or other thing
## 1455                                       University or other thing
## 1456                                       University or other thing
## 1457                                       University or other thing
## 1458                                                  Some secondary
## 1459                                       University or other thing
## 1460                                       University or other thing
## 1461                                       University or other thing
## 1462                                       University or other thing
## 1463                                       University or other thing
## 1464                                       University or other thing
## 1465                                       University or other thing
## 1466                                                  Some secondary
## 1467                                       University or other thing
## 1468                                       University or other thing
## 1469                                       University or other thing
## 1470                                       University or other thing
## 1471                                       University or other thing
## 1472                                       University or other thing
## 1473                                                  Some secondary
## 1474                                       University or other thing
## 1475                                       University or other thing
## 1476                                       University or other thing
## 1477                                       University or other thing
## 1478                                       University or other thing
## 1479                                       University or other thing
## 1480                                       University or other thing
## 1481                                       University or other thing
## 1482                                       University or other thing
## 1483                                       University or other thing
## 1484                                       University or other thing
## 1485                                       University or other thing
## 1486                                       University or other thing
## 1487                                       University or other thing
## 1488                                       University or other thing
## 1489                                       University or other thing
## 1490                                       University or other thing
## 1491                                       University or other thing
## 1492                                       University or other thing
## 1493                                       University or other thing
## 1494                                       University or other thing
## 1495                                       University or other thing
## 1496                                       University or other thing
## 1497                                       University or other thing
## 1498                                       University or other thing
## 1499                                                  Some secondary
## 1500                                       University or other thing
## 1501                                       University or other thing
## 1502                                       University or other thing
## 1503                                       University or other thing
## 1504                                       University or other thing
## 1505                                       University or other thing
## 1506                                       University or other thing
## 1507                                       University or other thing
## 1508                                       University or other thing
## 1509                                       University or other thing
## 1510                                                  Some secondary
## 1511                                       University or other thing
## 1512                                       University or other thing
## 1513                                       University or other thing
## 1514                                       University or other thing
## 1515                                       University or other thing
## 1516                                       University or other thing
## 1517                                       University or other thing
## 1518                                       University or other thing
## 1519                                                  Some secondary
## 1520                                       University or other thing
## 1521                                       University or other thing
## 1522                                                  Some secondary
## 1523                                       University or other thing
## 1524                                       University or other thing
## 1525                                       University or other thing
## 1526                                       University or other thing
## 1527                                       University or other thing
## 1528                                       University or other thing
## 1529                                       University or other thing
## 1530                                       University or other thing
## 1531                                       University or other thing
## 1532                                       University or other thing
## 1533                                       University or other thing
## 1534                                       University or other thing
## 1535                                       University or other thing
## 1536                                       University or other thing
## 1537                                       University or other thing
## 1538                                       University or other thing
## 1539                                       University or other thing
## 1540                                       University or other thing
## 1541                                       University or other thing
## 1542                                       University or other thing
## 1543                                                  Some secondary
## 1544                                       University or other thing
## 1545                                       University or other thing
## 1546                                       University or other thing
## 1547                                       University or other thing
## 1548                                       University or other thing
## 1549                                       University or other thing
## 1550                                       University or other thing
## 1551                                       University or other thing
## 1552                                       University or other thing
## 1553                                       University or other thing
## 1554                                       University or other thing
## 1555                                       University or other thing
## 1556                                       University or other thing
## 1557                                       University or other thing
## 1558                                       University or other thing
## 1559                                       University or other thing
## 1560                                       University or other thing
## 1561                                       University or other thing
## 1562                                       University or other thing
## 1563                                       University or other thing
## 1564                                       University or other thing
## 1565                                       University or other thing
## 1566                                       University or other thing
## 1567                                       University or other thing
## 1568                                       University or other thing
## 1569                                       University or other thing
## 1570                                       University or other thing
## 1571                                       University or other thing
## 1572                                       University or other thing
## 1573                                       University or other thing
## 1574                                       University or other thing
## 1575                                       University or other thing
## 1576                                       University or other thing
## 1577                                       University or other thing
## 1578                                       University or other thing
## 1579                                       University or other thing
## 1580                                       University or other thing
## 1581                                       University or other thing
## 1582                                       University or other thing
## 1583                                       University or other thing
## 1584                                       University or other thing
## 1585                                       University or other thing
## 1586                                       University or other thing
## 1587                                       University or other thing
## 1588                                       University or other thing
## 1589                                       University or other thing
## 1590                                       University or other thing
## 1591                                       University or other thing
## 1592                                       University or other thing
## 1593                                       University or other thing
## 1594                                       University or other thing
## 1595                                       University or other thing
## 1596                                       University or other thing
## 1597                                       University or other thing
## 1598                                       University or other thing
## 1599                                       University or other thing
## 1600                                       University or other thing
## 1601                                       University or other thing
## 1602                                       University or other thing
## 1603                                       University or other thing
## 1604                                                  Some secondary
## 1605                                       University or other thing
## 1606                                       University or other thing
## 1607                                       University or other thing
## 1608                                       University or other thing
## 1609                                       University or other thing
## 1610                                       University or other thing
## 1611                                       University or other thing
## 1612                                       University or other thing
## 1613                                       University or other thing
## 1614                                       University or other thing
## 1615                                       University or other thing
## 1616                                       University or other thing
## 1617                                                  Some secondary
## 1618                                       University or other thing
## 1619                                       University or other thing
## 1620                                       University or other thing
## 1621                                       University or other thing
## 1622                                       University or other thing
## 1623                                       University or other thing
## 1624                                       University or other thing
## 1625                                       University or other thing
## 1626                                       University or other thing
## 1627                                       University or other thing
## 1628                                       University or other thing
## 1629                                       University or other thing
## 1630                                       University or other thing
## 1631                                       University or other thing
## 1632                                       University or other thing
## 1633                                                  Some secondary
## 1634                                       University or other thing
## 1635                                       University or other thing
## 1636                                       University or other thing
## 1637                                       University or other thing
## 1638                                       University or other thing
## 1639                                       University or other thing
## 1640                                       University or other thing
## 1641                                       University or other thing
## 1642                                       University or other thing
## 1643                                       University or other thing
## 1644                                       University or other thing
## 1645                                       University or other thing
## 1646                                       University or other thing
## 1647                                       University or other thing
## 1648                                       University or other thing
## 1649                                       University or other thing
## 1650                                       University or other thing
## 1651                                       University or other thing
## 1652                                       University or other thing
## 1653                                       University or other thing
## 1654                                       University or other thing
## 1655                                       University or other thing
## 1656                                                  Some secondary
## 1657                                       University or other thing
## 1658                                       University or other thing
## 1659                                       University or other thing
## 1660                                       University or other thing
## 1661                                       University or other thing
## 1662                                       University or other thing
## 1663                                       University or other thing
## 1664                                       University or other thing
## 1665                                       University or other thing
## 1666                                       University or other thing
## 1667                                       University or other thing
## 1668                                       University or other thing
## 1669                                       University or other thing
## 1670                                       University or other thing
## 1671                                                  Some secondary
## 1672                                       University or other thing
## 1673                                       University or other thing
## 1674                                       University or other thing
## 1675                                       University or other thing
## 1676                                       University or other thing
## 1677                                       University or other thing
## 1678                                       University or other thing
## 1679                                                  Some secondary
## 1680                                       University or other thing
## 1681                                       University or other thing
## 1682                                       University or other thing
## 1683                                       University or other thing
## 1684                                       University or other thing
## 1685                                       University or other thing
## 1686                                       University or other thing
## 1687                                       University or other thing
## 1688                                       University or other thing
## 1689                                       University or other thing
## 1690                                       University or other thing
## 1691                                       University or other thing
## 1692                                       University or other thing
## 1693                                       University or other thing
## 1694                                       University or other thing
## 1695                                                  Some secondary
## 1696                                       University or other thing
## 1697                                       University or other thing
## 1698                                       University or other thing
## 1699                                       University or other thing
## 1700                                       University or other thing
## 1701                                       University or other thing
## 1702                                       University or other thing
## 1703                                       University or other thing
## 1704                                       University or other thing
## 1705                                       University or other thing
## 1706                                       University or other thing
## 1707                                       University or other thing
## 1708                                       University or other thing
## 1709                                       University or other thing
## 1710                                       University or other thing
## 1711                                                  Some secondary
## 1712                                       University or other thing
## 1713                                       University or other thing
## 1714                                       University or other thing
## 1715                                       University or other thing
## 1716                                       University or other thing
## 1717                                       University or other thing
## 1718                                       University or other thing
## 1719                                       University or other thing
## 1720                                       University or other thing
## 1721                                       University or other thing
## 1722                                       University or other thing
## 1723                                       University or other thing
## 1724                                       University or other thing
## 1725                                                  Some secondary
## 1726                                       University or other thing
## 1727                                       University or other thing
## 1728                                       University or other thing
## 1729                                       University or other thing
## 1730                                       University or other thing
## 1731                                       University or other thing
## 1732                                       University or other thing
## 1733                                       University or other thing
## 1734                                       University or other thing
## 1735                                       University or other thing
## 1736                                       University or other thing
## 1737                                       University or other thing
## 1738                                       University or other thing
## 1739                                       University or other thing
## 1740                                                  Some secondary
## 1741                                       University or other thing
## 1742                                       University or other thing
## 1743                                       University or other thing
## 1744                                       University or other thing
## 1745                                       University or other thing
## 1746                                       University or other thing
## 1747                                       University or other thing
## 1748                                       University or other thing
## 1749                                       University or other thing
## 1750                                       University or other thing
## 1751                                       University or other thing
## 1752                                       University or other thing
## 1753                                                  Some secondary
## 1754                                       University or other thing
## 1755                                       University or other thing
## 1756                                       University or other thing
## 1757                                       University or other thing
## 1758                                       University or other thing
## 1759                                       University or other thing
## 1760                                       University or other thing
## 1761                                       University or other thing
## 1762                                       University or other thing
## 1763                                       University or other thing
## 1764                                       University or other thing
## 1765                                                  Some secondary
## 1766                                       University or other thing
## 1767                                       University or other thing
## 1768                                       University or other thing
## 1769                                       University or other thing
## 1770                                       University or other thing
## 1771                                       University or other thing
## 1772                                       University or other thing
## 1773                                       University or other thing
## 1774                                       University or other thing
## 1775                                       University or other thing
## 1776                                       University or other thing
## 1777                                       University or other thing
## 1778                                                  Some secondary
## 1779                                       University or other thing
## 1780                                       University or other thing
## 1781                                       University or other thing
## 1782                                       University or other thing
## 1783                                       University or other thing
## 1784                                                  Some secondary
## 1785                                       University or other thing
## 1786                                       University or other thing
## 1787                                       University or other thing
## 1788                                       University or other thing
## 1789                                       University or other thing
## 1790                                       University or other thing
## 1791                                       University or other thing
## 1792                                       University or other thing
## 1793                                       University or other thing
## 1794                                       University or other thing
## 1795                                       University or other thing
## 1796                                       University or other thing
## 1797                                       University or other thing
## 1798                                       University or other thing
## 1799                                       University or other thing
## 1800                                       University or other thing
## 1801                                       University or other thing
## 1802                                       University or other thing
## 1803                                       University or other thing
## 1804                                                  Some secondary
## 1805                                       University or other thing
## 1806                                       University or other thing
## 1807                                       University or other thing
## 1808                                       University or other thing
## 1809                                       University or other thing
## 1810                                       University or other thing
## 1811                                       University or other thing
## 1812                                       University or other thing
## 1813                                       University or other thing
## 1814                                       University or other thing
## 1815                                       University or other thing
## 1816                                       University or other thing
## 1817                                       University or other thing
## 1818                                       University or other thing
## 1819                                       University or other thing
## 1820                                       University or other thing
## 1821                                       University or other thing
## 1822                                       University or other thing
## 1823                                       University or other thing
## 1824                                       University or other thing
## 1825                                       University or other thing
## 1826                                       University or other thing
## 1827                                       University or other thing
## 1828                                       University or other thing
## 1829                                       University or other thing
## 1830                                       University or other thing
## 1831                                       University or other thing
## 1832                                       University or other thing
## 1833                                       University or other thing
## 1834                                       University or other thing
## 1835                                       University or other thing
## 1836                                       University or other thing
## 1837                                       University or other thing
## 1838                                       University or other thing
## 1839                                                  Some secondary
## 1840                                       University or other thing
## 1841                                       University or other thing
## 1842                                       University or other thing
## 1843                                       University or other thing
## 1844                                       University or other thing
## 1845                                       University or other thing
## 1846                                       University or other thing
## 1847                                       University or other thing
## 1848                                       University or other thing
## 1849                                       University or other thing
## 1850                                       University or other thing
## 1851                                       University or other thing
## 1852                                       University or other thing
## 1853                                       University or other thing
## 1854                                       University or other thing
## 1855                                       University or other thing
## 1856                                       University or other thing
## 1857                                       University or other thing
## 1858                                       University or other thing
## 1859                                       University or other thing
## 1860                                       University or other thing
## 1861                                       University or other thing
## 1862                                       University or other thing
## 1863                                       University or other thing
## 1864                                       University or other thing
## 1865                                       University or other thing
## 1866                                       University or other thing
## 1867                                       University or other thing
## 1868                                                  Some secondary
## 1869                                       University or other thing
## 1870                                       University or other thing
## 1871                                                  Some secondary
## 1872                                       University or other thing
## 1873                                       University or other thing
## 1874                                       University or other thing
## 1875                                                  Some secondary
## 1876                                       University or other thing
## 1877                                       University or other thing
## 1878                                       University or other thing
## 1879                                       University or other thing
## 1880                                       University or other thing
## 1881                                       University or other thing
## 1882                                       University or other thing
## 1883                                       University or other thing
## 1884                                       University or other thing
## 1885                                                  Some secondary
## 1886                                       University or other thing
## 1887                                       University or other thing
## 1888                                       University or other thing
## 1889                                       University or other thing
## 1890                                       University or other thing
## 1891                                       University or other thing
## 1892                                       University or other thing
## 1893                                       University or other thing
## 1894                                       University or other thing
## 1895                                       University or other thing
## 1896                                       University or other thing
## 1897                                       University or other thing
## 1898                                       University or other thing
## 1899                                       University or other thing
## 1900                                       University or other thing
## 1901                                       University or other thing
## 1902                                       University or other thing
## 1903                                       University or other thing
## 1904                                       University or other thing
## 1905                                       University or other thing
## 1906                                       University or other thing
## 1907                                       University or other thing
## 1908                                       University or other thing
## 1909                                       University or other thing
## 1910                                                  Some secondary
## 1911                                       University or other thing
## 1912                                       University or other thing
## 1913                                       University or other thing
## 1914                                       University or other thing
## 1915                                       University or other thing
## 1916                                       University or other thing
## 1917                                       University or other thing
## 1918                                       University or other thing
## 1919                                       University or other thing
## 1920                                       University or other thing
## 1921                                       University or other thing
## 1922                                       University or other thing
## 1923                                       University or other thing
## 1924                                       University or other thing
## 1925                                       University or other thing
## 1926                                       University or other thing
## 1927                                       University or other thing
## 1928                                       University or other thing
## 1929                                       University or other thing
## 1930                                       University or other thing
## 1931                                       University or other thing
## 1932                                       University or other thing
## 1933                                       University or other thing
## 1934                                       University or other thing
## 1935                                       University or other thing
## 1936                                       University or other thing
## 1937                                       University or other thing
## 1938                                       University or other thing
## 1939                                       University or other thing
## 1940                                       University or other thing
## 1941                                       University or other thing
## 1942                                       University or other thing
## 1943                                       University or other thing
## 1944                                       University or other thing
## 1945                                       University or other thing
## 1946                                       University or other thing
## 1947                                       University or other thing
## 1948                                                  Some secondary
## 1949                                       University or other thing
## 1950                                       University or other thing
## 1951                                       University or other thing
## 1952                                       University or other thing
## 1953                                       University or other thing
## 1954                                       University or other thing
## 1955                                       University or other thing
## 1956                                       University or other thing
## 1957                                       University or other thing
## 1958                                       University or other thing
## 1959                                       University or other thing
## 1960                                       University or other thing
## 1961                                                  Some secondary
## 1962                                       University or other thing
## 1963                                       University or other thing
## 1964                                       University or other thing
## 1965                                       University or other thing
## 1966                                       University or other thing
## 1967                                       University or other thing
## 1968                                       University or other thing
## 1969                                                  Some secondary
## 1970                                       University or other thing
## 1971                                       University or other thing
## 1972                                       University or other thing
## 1973                                       University or other thing
## 1974                                       University or other thing
## 1975                                       University or other thing
## 1976                                       University or other thing
## 1977                                       University or other thing
## 1978                                                  Some secondary
## 1979                                       University or other thing
## 1980                                       University or other thing
## 1981                                       University or other thing
## 1982                                       University or other thing
## 1983                                       University or other thing
## 1984                                       University or other thing
## 1985                                       University or other thing
## 1986                                       University or other thing
## 1987                                       University or other thing
## 1988                                       University or other thing
## 1989                                       University or other thing
## 1990                                       University or other thing
## 1991                                       University or other thing
## 1992                                       University or other thing
## 1993                                       University or other thing
## 1994                                       University or other thing
## 1995                                       University or other thing
## 1996                                       University or other thing
## 1997                                       University or other thing
## 1998                                       University or other thing
## 1999                                       University or other thing
## 2000                                       University or other thing
## 2001                                       University or other thing
## 2002                                       University or other thing
## 2003                                       University or other thing
## 2004                                       University or other thing
## 2005                                       University or other thing
## 2006                                                  Some secondary
## 2007                                       University or other thing
## 2008                                                  Some secondary
## 2009                                       University or other thing
## 2010                                       University or other thing
## 2011                                       University or other thing
## 2012                                       University or other thing
## 2013                                       University or other thing
## 2014                                       University or other thing
## 2015                                       University or other thing
## 2016                                       University or other thing
## 2017                                       University or other thing
## 2018                                       University or other thing
## 2019                                       University or other thing
## 2020                                       University or other thing
## 2021                                       University or other thing
## 2022                                       University or other thing
## 2023                                       University or other thing
## 2024                                       University or other thing
## 2025                                       University or other thing
## 2026                                       University or other thing
## 2027                                       University or other thing
## 2028                                                  Some secondary
## 2029                                       University or other thing
## 2030                                       University or other thing
## 2031                                       University or other thing
## 2032                                       University or other thing
## 2033                                       University or other thing
## 2034                                       University or other thing
## 2035                                       University or other thing
## 2036                                       University or other thing
## 2037                                       University or other thing
## 2038                                       University or other thing
## 2039                                       University or other thing
## 2040                                       University or other thing
## 2041                                       University or other thing
## 2042                                       University or other thing
## 2043                                       University or other thing
## 2044                                       University or other thing
## 2045                                       University or other thing
## 2046                                       University or other thing
## 2047                                       University or other thing
## 2048                                       University or other thing
## 2049                                       University or other thing
## 2050                                       University or other thing
## 2051                                       University or other thing
## 2052                                       University or other thing
## 2053                                       University or other thing
## 2054                                                  Some secondary
## 2055                                       University or other thing
## 2056                                       University or other thing
## 2057                                       University or other thing
## 2058                                                  Some secondary
## 2059                                       University or other thing
## 2060                                       University or other thing
## 2061                                       University or other thing
## 2062                                       University or other thing
## 2063                                       University or other thing
## 2064                                                  Some secondary
## 2065                                       University or other thing
## 2066                                                  Some secondary
## 2067                                       University or other thing
## 2068                                       University or other thing
## 2069                                       University or other thing
## 2070                                       University or other thing
## 2071                                       University or other thing
## 2072                                       University or other thing
## 2073                                       University or other thing
## 2074                                       University or other thing
## 2075                                       University or other thing
## 2076                                       University or other thing
## 2077                                       University or other thing
## 2078                                       University or other thing
## 2079                                       University or other thing
## 2080                                       University or other thing
## 2081                                       University or other thing
## 2082                                                  Some secondary
## 2083                                       University or other thing
## 2084                                       University or other thing
## 2085                                       University or other thing
## 2086                                       University or other thing
## 2087                                       University or other thing
## 2088                                       University or other thing
## 2089                                       University or other thing
## 2090                                       University or other thing
## 2091                                       University or other thing
## 2092                                       University or other thing
## 2093                                       University or other thing
## 2094                                       University or other thing
## 2095                                       University or other thing
## 2096                                       University or other thing
## 2097                                       University or other thing
## 2098                                       University or other thing
## 2099                                       University or other thing
## 2100                                       University or other thing
## 2101                                       University or other thing
## 2102                                       University or other thing
## 2103                                       University or other thing
## 2104                                       University or other thing
## 2105                                       University or other thing
## 2106                                       University or other thing
## 2107                                       University or other thing
## 2108                                       University or other thing
## 2109                                       University or other thing
## 2110                                       University or other thing
## 2111                                       University or other thing
## 2112                                       University or other thing
## 2113                                       University or other thing
## 2114                                       University or other thing
## 2115                                       University or other thing
## 2116                                       University or other thing
## 2117                                       University or other thing
## 2118                                       University or other thing
## 2119                                       University or other thing
## 2120                                       University or other thing
## 2121                                       University or other thing
## 2122                                       University or other thing
## 2123                                       University or other thing
## 2124                                                  Some secondary
## 2125                                       University or other thing
## 2126                                       University or other thing
## 2127                                       University or other thing
## 2128                                       University or other thing
## 2129                                                  Some secondary
## 2130                                       University or other thing
## 2131                                       University or other thing
## 2132                                       University or other thing
## 2133                                       University or other thing
## 2134                                       University or other thing
## 2135                                       University or other thing
## 2136                                       University or other thing
## 2137                                       University or other thing
## 2138                                       University or other thing
## 2139                                       University or other thing
## 2140                                       University or other thing
## 2141                                       University or other thing
## 2142                                       University or other thing
## 2143                                       University or other thing
## 2144                                       University or other thing
## 2145                                       University or other thing
## 2146                                       University or other thing
## 2147                                                  Some secondary
## 2148                                       University or other thing
## 2149                                       University or other thing
## 2150                                       University or other thing
## 2151                                       University or other thing
## 2152                                       University or other thing
## 2153                                       University or other thing
## 2154                                       University or other thing
## 2155                                       University or other thing
## 2156                                       University or other thing
## 2157                                       University or other thing
## 2158                                       University or other thing
## 2159                                                  Some secondary
## 2160                                       University or other thing
## 2161                                       University or other thing
## 2162                                       University or other thing
## 2163                                       University or other thing
## 2164                                       University or other thing
## 2165                                       University or other thing
## 2166                                       University or other thing
## 2167                                       University or other thing
## 2168                                                  Some secondary
## 2169                                       University or other thing
## 2170                                       University or other thing
## 2171                                       University or other thing
## 2172                                       University or other thing
## 2173                                       University or other thing
## 2174                                       University or other thing
## 2175                                       University or other thing
## 2176                                       University or other thing
## 2177                                       University or other thing
## 2178                                                  Some secondary
## 2179                                       University or other thing
## 2180                                       University or other thing
## 2181                                       University or other thing
## 2182                                       University or other thing
## 2183                                       University or other thing
## 2184                                       University or other thing
## 2185                                       University or other thing
## 2186                                       University or other thing
## 2187                                       University or other thing
## 2188                                       University or other thing
## 2189                                       University or other thing
## 2190                                       University or other thing
## 2191                                       University or other thing
## 2192                                       University or other thing
## 2193                                       University or other thing
## 2194                                       University or other thing
## 2195                                       University or other thing
## 2196                                       University or other thing
## 2197                                       University or other thing
## 2198                                       University or other thing
## 2199                                       University or other thing
## 2200                                       University or other thing
## 2201                                       University or other thing
## 2202                                       University or other thing
## 2203                                       University or other thing
## 2204                                       University or other thing
## 2205                                                  Some secondary
## 2206                                       University or other thing
## 2207                                       University or other thing
## 2208                                       University or other thing
## 2209                                       University or other thing
## 2210                                       University or other thing
## 2211                                       University or other thing
## 2212                                       University or other thing
## 2213                                       University or other thing
## 2214                                                  Some secondary
## 2215                                       University or other thing
## 2216                                       University or other thing
## 2217                                       University or other thing
## 2218                                       University or other thing
## 2219                                       University or other thing
## 2220                                       University or other thing
## 2221                                       University or other thing
## 2222                                       University or other thing
## 2223                                       University or other thing
## 2224                                                  Some secondary
## 2225                                       University or other thing
## 2226                                       University or other thing
## 2227                                       University or other thing
## 2228                                       University or other thing
## 2229                                       University or other thing
## 2230                                       University or other thing
## 2231                                       University or other thing
## 2232                                       University or other thing
## 2233                                                  Some secondary
## 2234                                       University or other thing
## 2235                                       University or other thing
## 2236                                                  Some secondary
## 2237                                                  Some secondary
## 2238                                       University or other thing
## 2239                                       University or other thing
## 2240                                       University or other thing
## 2241                                       University or other thing
## 2242                                                  Some secondary
## 2243                                       University or other thing
## 2244                                       University or other thing
## 2245                                       University or other thing
## 2246                                       University or other thing
## 2247                                       University or other thing
## 2248                                       University or other thing
## 2249                                       University or other thing
## 2250                                       University or other thing
## 2251                                       University or other thing
## 2252                                       University or other thing
## 2253                                       University or other thing
## 2254                                       University or other thing
## 2255                                       University or other thing
## 2256                                       University or other thing
## 2257                                       University or other thing
## 2258                                       University or other thing
## 2259                                       University or other thing
## 2260                                       University or other thing
## 2261                                       University or other thing
## 2262                                       University or other thing
## 2263                                       University or other thing
## 2264                                       University or other thing
## 2265                                       University or other thing
## 2266                                       University or other thing
## 2267                                       University or other thing
## 2268                                       University or other thing
## 2269                                       University or other thing
## 2270                                       University or other thing
## 2271                                       University or other thing
## 2272                                       University or other thing
##      if_else(Q4 == 7, "Dont know", "No formal education")
## 1                                     No formal education
## 2                                     No formal education
## 3                                     No formal education
## 4                                     No formal education
## 5                                     No formal education
## 6                                     No formal education
## 7                                     No formal education
## 8                                     No formal education
## 9                                     No formal education
## 10                                    No formal education
## 11                                    No formal education
## 12                                    No formal education
## 13                                    No formal education
## 14                                    No formal education
## 15                                    No formal education
## 16                                    No formal education
## 17                                    No formal education
## 18                                    No formal education
## 19                                    No formal education
## 20                                    No formal education
## 21                                    No formal education
## 22                                    No formal education
## 23                                    No formal education
## 24                                    No formal education
## 25                                    No formal education
## 26                                    No formal education
## 27                                    No formal education
## 28                                    No formal education
## 29                                    No formal education
## 30                                    No formal education
## 31                                    No formal education
## 32                                    No formal education
## 33                                    No formal education
## 34                                    No formal education
## 35                                    No formal education
## 36                                    No formal education
## 37                                    No formal education
## 38                                    No formal education
## 39                                    No formal education
## 40                                    No formal education
## 41                                    No formal education
## 42                                    No formal education
## 43                                    No formal education
## 44                                    No formal education
## 45                                    No formal education
## 46                                    No formal education
## 47                                    No formal education
## 48                                    No formal education
## 49                                    No formal education
## 50                                    No formal education
## 51                                    No formal education
## 52                                    No formal education
## 53                                    No formal education
## 54                                    No formal education
## 55                                    No formal education
## 56                                    No formal education
## 57                                    No formal education
## 58                                    No formal education
## 59                                    No formal education
## 60                                    No formal education
## 61                                    No formal education
## 62                                              Dont know
## 63                                    No formal education
## 64                                    No formal education
## 65                                    No formal education
## 66                                    No formal education
## 67                                    No formal education
## 68                                    No formal education
## 69                                    No formal education
## 70                                    No formal education
## 71                                    No formal education
## 72                                    No formal education
## 73                                    No formal education
## 74                                    No formal education
## 75                                    No formal education
## 76                                              Dont know
## 77                                    No formal education
## 78                                    No formal education
## 79                                    No formal education
## 80                                    No formal education
## 81                                    No formal education
## 82                                    No formal education
## 83                                    No formal education
## 84                                    No formal education
## 85                                    No formal education
## 86                                    No formal education
## 87                                    No formal education
## 88                                    No formal education
## 89                                              Dont know
## 90                                    No formal education
## 91                                    No formal education
## 92                                    No formal education
## 93                                    No formal education
## 94                                    No formal education
## 95                                    No formal education
## 96                                    No formal education
## 97                                    No formal education
## 98                                    No formal education
## 99                                    No formal education
## 100                                   No formal education
## 101                                   No formal education
## 102                                   No formal education
## 103                                   No formal education
## 104                                   No formal education
## 105                                   No formal education
## 106                                   No formal education
## 107                                   No formal education
## 108                                   No formal education
## 109                                   No formal education
## 110                                   No formal education
## 111                                   No formal education
## 112                                   No formal education
## 113                                   No formal education
## 114                                   No formal education
## 115                                   No formal education
## 116                                   No formal education
## 117                                   No formal education
## 118                                   No formal education
## 119                                   No formal education
## 120                                   No formal education
## 121                                   No formal education
## 122                                   No formal education
## 123                                   No formal education
## 124                                   No formal education
## 125                                   No formal education
## 126                                   No formal education
## 127                                   No formal education
## 128                                   No formal education
## 129                                   No formal education
## 130                                   No formal education
## 131                                   No formal education
## 132                                   No formal education
## 133                                   No formal education
## 134                                   No formal education
## 135                                   No formal education
## 136                                   No formal education
## 137                                   No formal education
## 138                                   No formal education
## 139                                   No formal education
## 140                                   No formal education
## 141                                   No formal education
## 142                                   No formal education
## 143                                   No formal education
## 144                                   No formal education
## 145                                             Dont know
## 146                                   No formal education
## 147                                   No formal education
## 148                                             Dont know
## 149                                   No formal education
## 150                                   No formal education
## 151                                   No formal education
## 152                                   No formal education
## 153                                   No formal education
## 154                                   No formal education
## 155                                   No formal education
## 156                                   No formal education
## 157                                   No formal education
## 158                                   No formal education
## 159                                   No formal education
## 160                                   No formal education
## 161                                   No formal education
## 162                                   No formal education
## 163                                   No formal education
## 164                                   No formal education
## 165                                   No formal education
## 166                                   No formal education
## 167                                   No formal education
## 168                                   No formal education
## 169                                   No formal education
## 170                                   No formal education
## 171                                   No formal education
## 172                                   No formal education
## 173                                   No formal education
## 174                                   No formal education
## 175                                   No formal education
## 176                                   No formal education
## 177                                   No formal education
## 178                                   No formal education
## 179                                   No formal education
## 180                                   No formal education
## 181                                   No formal education
## 182                                   No formal education
## 183                                   No formal education
## 184                                   No formal education
## 185                                   No formal education
## 186                                   No formal education
## 187                                   No formal education
## 188                                   No formal education
## 189                                   No formal education
## 190                                   No formal education
## 191                                   No formal education
## 192                                   No formal education
## 193                                   No formal education
## 194                                   No formal education
## 195                                   No formal education
## 196                                   No formal education
## 197                                   No formal education
## 198                                   No formal education
## 199                                   No formal education
## 200                                   No formal education
## 201                                   No formal education
## 202                                   No formal education
## 203                                   No formal education
## 204                                   No formal education
## 205                                   No formal education
## 206                                   No formal education
## 207                                   No formal education
## 208                                   No formal education
## 209                                   No formal education
## 210                                   No formal education
## 211                                   No formal education
## 212                                             Dont know
## 213                                   No formal education
## 214                                   No formal education
## 215                                   No formal education
## 216                                   No formal education
## 217                                   No formal education
## 218                                   No formal education
## 219                                   No formal education
## 220                                   No formal education
## 221                                   No formal education
## 222                                   No formal education
## 223                                   No formal education
## 224                                   No formal education
## 225                                   No formal education
## 226                                   No formal education
## 227                                   No formal education
## 228                                   No formal education
## 229                                   No formal education
## 230                                   No formal education
## 231                                   No formal education
## 232                                   No formal education
## 233                                   No formal education
## 234                                   No formal education
## 235                                   No formal education
## 236                                   No formal education
## 237                                   No formal education
## 238                                   No formal education
## 239                                   No formal education
## 240                                   No formal education
## 241                                   No formal education
## 242                                   No formal education
## 243                                   No formal education
## 244                                   No formal education
## 245                                   No formal education
## 246                                   No formal education
## 247                                   No formal education
## 248                                   No formal education
## 249                                   No formal education
## 250                                   No formal education
## 251                                   No formal education
## 252                                   No formal education
## 253                                   No formal education
## 254                                   No formal education
## 255                                   No formal education
## 256                                   No formal education
## 257                                   No formal education
## 258                                   No formal education
## 259                                   No formal education
## 260                                   No formal education
## 261                                   No formal education
## 262                                   No formal education
## 263                                   No formal education
## 264                                   No formal education
## 265                                   No formal education
## 266                                   No formal education
## 267                                   No formal education
## 268                                   No formal education
## 269                                   No formal education
## 270                                   No formal education
## 271                                   No formal education
## 272                                   No formal education
## 273                                             Dont know
## 274                                   No formal education
## 275                                   No formal education
## 276                                   No formal education
## 277                                   No formal education
## 278                                   No formal education
## 279                                   No formal education
## 280                                   No formal education
## 281                                   No formal education
## 282                                   No formal education
## 283                                   No formal education
## 284                                   No formal education
## 285                                   No formal education
## 286                                   No formal education
## 287                                   No formal education
## 288                                   No formal education
## 289                                   No formal education
## 290                                   No formal education
## 291                                   No formal education
## 292                                   No formal education
## 293                                   No formal education
## 294                                   No formal education
## 295                                   No formal education
## 296                                   No formal education
## 297                                   No formal education
## 298                                   No formal education
## 299                                   No formal education
## 300                                   No formal education
## 301                                   No formal education
## 302                                   No formal education
## 303                                             Dont know
## 304                                   No formal education
## 305                                   No formal education
## 306                                   No formal education
## 307                                   No formal education
## 308                                   No formal education
## 309                                   No formal education
## 310                                   No formal education
## 311                                   No formal education
## 312                                   No formal education
## 313                                   No formal education
## 314                                   No formal education
## 315                                   No formal education
## 316                                   No formal education
## 317                                   No formal education
## 318                                   No formal education
## 319                                   No formal education
## 320                                   No formal education
## 321                                   No formal education
## 322                                   No formal education
## 323                                   No formal education
## 324                                   No formal education
## 325                                   No formal education
## 326                                   No formal education
## 327                                   No formal education
## 328                                   No formal education
## 329                                   No formal education
## 330                                   No formal education
## 331                                   No formal education
## 332                                   No formal education
## 333                                   No formal education
## 334                                   No formal education
## 335                                   No formal education
## 336                                   No formal education
## 337                                   No formal education
## 338                                   No formal education
## 339                                   No formal education
## 340                                   No formal education
## 341                                   No formal education
## 342                                   No formal education
## 343                                   No formal education
## 344                                   No formal education
## 345                                   No formal education
## 346                                   No formal education
## 347                                   No formal education
## 348                                   No formal education
## 349                                   No formal education
## 350                                   No formal education
## 351                                   No formal education
## 352                                   No formal education
## 353                                             Dont know
## 354                                   No formal education
## 355                                   No formal education
## 356                                   No formal education
## 357                                   No formal education
## 358                                   No formal education
## 359                                   No formal education
## 360                                   No formal education
## 361                                   No formal education
## 362                                   No formal education
## 363                                   No formal education
## 364                                   No formal education
## 365                                   No formal education
## 366                                   No formal education
## 367                                   No formal education
## 368                                   No formal education
## 369                                   No formal education
## 370                                   No formal education
## 371                                   No formal education
## 372                                   No formal education
## 373                                   No formal education
## 374                                   No formal education
## 375                                   No formal education
## 376                                   No formal education
## 377                                   No formal education
## 378                                   No formal education
## 379                                   No formal education
## 380                                   No formal education
## 381                                   No formal education
## 382                                   No formal education
## 383                                   No formal education
## 384                                   No formal education
## 385                                   No formal education
## 386                                   No formal education
## 387                                   No formal education
## 388                                   No formal education
## 389                                   No formal education
## 390                                   No formal education
## 391                                   No formal education
## 392                                   No formal education
## 393                                   No formal education
## 394                                   No formal education
## 395                                   No formal education
## 396                                   No formal education
## 397                                   No formal education
## 398                                   No formal education
## 399                                   No formal education
## 400                                   No formal education
## 401                                   No formal education
## 402                                   No formal education
## 403                                   No formal education
## 404                                   No formal education
## 405                                   No formal education
## 406                                   No formal education
## 407                                   No formal education
## 408                                   No formal education
## 409                                   No formal education
## 410                                   No formal education
## 411                                   No formal education
## 412                                   No formal education
## 413                                             Dont know
## 414                                   No formal education
## 415                                   No formal education
## 416                                   No formal education
## 417                                   No formal education
## 418                                   No formal education
## 419                                   No formal education
## 420                                   No formal education
## 421                                   No formal education
## 422                                   No formal education
## 423                                   No formal education
## 424                                   No formal education
## 425                                   No formal education
## 426                                   No formal education
## 427                                   No formal education
## 428                                   No formal education
## 429                                   No formal education
## 430                                   No formal education
## 431                                   No formal education
## 432                                   No formal education
## 433                                   No formal education
## 434                                   No formal education
## 435                                   No formal education
## 436                                   No formal education
## 437                                   No formal education
## 438                                   No formal education
## 439                                             Dont know
## 440                                   No formal education
## 441                                   No formal education
## 442                                   No formal education
## 443                                   No formal education
## 444                                   No formal education
## 445                                   No formal education
## 446                                   No formal education
## 447                                   No formal education
## 448                                   No formal education
## 449                                   No formal education
## 450                                   No formal education
## 451                                   No formal education
## 452                                   No formal education
## 453                                   No formal education
## 454                                   No formal education
## 455                                   No formal education
## 456                                   No formal education
## 457                                   No formal education
## 458                                   No formal education
## 459                                   No formal education
## 460                                   No formal education
## 461                                   No formal education
## 462                                   No formal education
## 463                                   No formal education
## 464                                   No formal education
## 465                                   No formal education
## 466                                   No formal education
## 467                                   No formal education
## 468                                   No formal education
## 469                                   No formal education
## 470                                   No formal education
## 471                                   No formal education
## 472                                   No formal education
## 473                                   No formal education
## 474                                   No formal education
## 475                                   No formal education
## 476                                   No formal education
## 477                                   No formal education
## 478                                   No formal education
## 479                                   No formal education
## 480                                   No formal education
## 481                                   No formal education
## 482                                   No formal education
## 483                                   No formal education
## 484                                   No formal education
## 485                                   No formal education
## 486                                   No formal education
## 487                                   No formal education
## 488                                   No formal education
## 489                                   No formal education
## 490                                   No formal education
## 491                                   No formal education
## 492                                   No formal education
## 493                                   No formal education
## 494                                   No formal education
## 495                                   No formal education
## 496                                   No formal education
## 497                                   No formal education
## 498                                   No formal education
## 499                                   No formal education
## 500                                   No formal education
## 501                                   No formal education
## 502                                   No formal education
## 503                                   No formal education
## 504                                   No formal education
## 505                                   No formal education
## 506                                   No formal education
## 507                                   No formal education
## 508                                   No formal education
## 509                                   No formal education
## 510                                   No formal education
## 511                                   No formal education
## 512                                   No formal education
## 513                                   No formal education
## 514                                             Dont know
## 515                                   No formal education
## 516                                   No formal education
## 517                                   No formal education
## 518                                   No formal education
## 519                                   No formal education
## 520                                   No formal education
## 521                                   No formal education
## 522                                   No formal education
## 523                                   No formal education
## 524                                   No formal education
## 525                                   No formal education
## 526                                   No formal education
## 527                                   No formal education
## 528                                             Dont know
## 529                                   No formal education
## 530                                   No formal education
## 531                                   No formal education
## 532                                   No formal education
## 533                                   No formal education
## 534                                   No formal education
## 535                                   No formal education
## 536                                   No formal education
## 537                                   No formal education
## 538                                   No formal education
## 539                                   No formal education
## 540                                   No formal education
## 541                                   No formal education
## 542                                   No formal education
## 543                                   No formal education
## 544                                   No formal education
## 545                                   No formal education
## 546                                   No formal education
## 547                                   No formal education
## 548                                   No formal education
## 549                                   No formal education
## 550                                   No formal education
## 551                                   No formal education
## 552                                   No formal education
## 553                                   No formal education
## 554                                   No formal education
## 555                                   No formal education
## 556                                   No formal education
## 557                                   No formal education
## 558                                   No formal education
## 559                                   No formal education
## 560                                   No formal education
## 561                                   No formal education
## 562                                   No formal education
## 563                                   No formal education
## 564                                   No formal education
## 565                                   No formal education
## 566                                   No formal education
## 567                                   No formal education
## 568                                             Dont know
## 569                                   No formal education
## 570                                   No formal education
## 571                                   No formal education
## 572                                   No formal education
## 573                                   No formal education
## 574                                   No formal education
## 575                                   No formal education
## 576                                   No formal education
## 577                                   No formal education
## 578                                   No formal education
## 579                                   No formal education
## 580                                   No formal education
## 581                                   No formal education
## 582                                   No formal education
## 583                                   No formal education
## 584                                   No formal education
## 585                                   No formal education
## 586                                   No formal education
## 587                                   No formal education
## 588                                   No formal education
## 589                                   No formal education
## 590                                   No formal education
## 591                                   No formal education
## 592                                   No formal education
## 593                                   No formal education
## 594                                   No formal education
## 595                                   No formal education
## 596                                   No formal education
## 597                                   No formal education
## 598                                   No formal education
## 599                                   No formal education
## 600                                   No formal education
## 601                                   No formal education
## 602                                   No formal education
## 603                                   No formal education
## 604                                   No formal education
## 605                                   No formal education
## 606                                   No formal education
## 607                                   No formal education
## 608                                   No formal education
## 609                                   No formal education
## 610                                   No formal education
## 611                                   No formal education
## 612                                   No formal education
## 613                                   No formal education
## 614                                   No formal education
## 615                                   No formal education
## 616                                   No formal education
## 617                                   No formal education
## 618                                   No formal education
## 619                                   No formal education
## 620                                   No formal education
## 621                                   No formal education
## 622                                   No formal education
## 623                                   No formal education
## 624                                   No formal education
## 625                                   No formal education
## 626                                   No formal education
## 627                                   No formal education
## 628                                             Dont know
## 629                                   No formal education
## 630                                   No formal education
## 631                                   No formal education
## 632                                   No formal education
## 633                                   No formal education
## 634                                   No formal education
## 635                                   No formal education
## 636                                   No formal education
## 637                                   No formal education
## 638                                   No formal education
## 639                                   No formal education
## 640                                   No formal education
## 641                                   No formal education
## 642                                   No formal education
## 643                                   No formal education
## 644                                   No formal education
## 645                                   No formal education
## 646                                   No formal education
## 647                                   No formal education
## 648                                   No formal education
## 649                                   No formal education
## 650                                   No formal education
## 651                                   No formal education
## 652                                   No formal education
## 653                                   No formal education
## 654                                   No formal education
## 655                                   No formal education
## 656                                   No formal education
## 657                                   No formal education
## 658                                   No formal education
## 659                                   No formal education
## 660                                   No formal education
## 661                                   No formal education
## 662                                   No formal education
## 663                                   No formal education
## 664                                   No formal education
## 665                                   No formal education
## 666                                   No formal education
## 667                                   No formal education
## 668                                   No formal education
## 669                                   No formal education
## 670                                   No formal education
## 671                                   No formal education
## 672                                   No formal education
## 673                                   No formal education
## 674                                   No formal education
## 675                                   No formal education
## 676                                   No formal education
## 677                                   No formal education
## 678                                   No formal education
## 679                                   No formal education
## 680                                   No formal education
## 681                                             Dont know
## 682                                   No formal education
## 683                                   No formal education
## 684                                   No formal education
## 685                                   No formal education
## 686                                   No formal education
## 687                                   No formal education
## 688                                   No formal education
## 689                                   No formal education
## 690                                   No formal education
## 691                                   No formal education
## 692                                   No formal education
## 693                                   No formal education
## 694                                   No formal education
## 695                                   No formal education
## 696                                   No formal education
## 697                                   No formal education
## 698                                   No formal education
## 699                                   No formal education
## 700                                   No formal education
## 701                                   No formal education
## 702                                   No formal education
## 703                                             Dont know
## 704                                   No formal education
## 705                                   No formal education
## 706                                   No formal education
## 707                                   No formal education
## 708                                   No formal education
## 709                                   No formal education
## 710                                   No formal education
## 711                                   No formal education
## 712                                   No formal education
## 713                                   No formal education
## 714                                   No formal education
## 715                                   No formal education
## 716                                   No formal education
## 717                                   No formal education
## 718                                   No formal education
## 719                                   No formal education
## 720                                   No formal education
## 721                                   No formal education
## 722                                   No formal education
## 723                                   No formal education
## 724                                   No formal education
## 725                                   No formal education
## 726                                   No formal education
## 727                                   No formal education
## 728                                   No formal education
## 729                                   No formal education
## 730                                   No formal education
## 731                                   No formal education
## 732                                   No formal education
## 733                                   No formal education
## 734                                   No formal education
## 735                                   No formal education
## 736                                   No formal education
## 737                                             Dont know
## 738                                   No formal education
## 739                                   No formal education
## 740                                   No formal education
## 741                                   No formal education
## 742                                   No formal education
## 743                                   No formal education
## 744                                   No formal education
## 745                                   No formal education
## 746                                   No formal education
## 747                                   No formal education
## 748                                   No formal education
## 749                                   No formal education
## 750                                   No formal education
## 751                                   No formal education
## 752                                   No formal education
## 753                                   No formal education
## 754                                   No formal education
## 755                                   No formal education
## 756                                   No formal education
## 757                                   No formal education
## 758                                   No formal education
## 759                                   No formal education
## 760                                   No formal education
## 761                                   No formal education
## 762                                   No formal education
## 763                                   No formal education
## 764                                   No formal education
## 765                                   No formal education
## 766                                   No formal education
## 767                                   No formal education
## 768                                   No formal education
## 769                                   No formal education
## 770                                   No formal education
## 771                                   No formal education
## 772                                   No formal education
## 773                                   No formal education
## 774                                   No formal education
## 775                                   No formal education
## 776                                   No formal education
## 777                                   No formal education
## 778                                   No formal education
## 779                                   No formal education
## 780                                   No formal education
## 781                                   No formal education
## 782                                   No formal education
## 783                                   No formal education
## 784                                   No formal education
## 785                                   No formal education
## 786                                   No formal education
## 787                                   No formal education
## 788                                   No formal education
## 789                                   No formal education
## 790                                   No formal education
## 791                                   No formal education
## 792                                             Dont know
## 793                                   No formal education
## 794                                   No formal education
## 795                                   No formal education
## 796                                   No formal education
## 797                                   No formal education
## 798                                   No formal education
## 799                                   No formal education
## 800                                   No formal education
## 801                                   No formal education
## 802                                   No formal education
## 803                                   No formal education
## 804                                   No formal education
## 805                                   No formal education
## 806                                   No formal education
## 807                                   No formal education
## 808                                   No formal education
## 809                                   No formal education
## 810                                   No formal education
## 811                                   No formal education
## 812                                   No formal education
## 813                                   No formal education
## 814                                   No formal education
## 815                                   No formal education
## 816                                   No formal education
## 817                                   No formal education
## 818                                   No formal education
## 819                                   No formal education
## 820                                   No formal education
## 821                                   No formal education
## 822                                   No formal education
## 823                                   No formal education
## 824                                   No formal education
## 825                                   No formal education
## 826                                   No formal education
## 827                                   No formal education
## 828                                   No formal education
## 829                                   No formal education
## 830                                   No formal education
## 831                                   No formal education
## 832                                   No formal education
## 833                                   No formal education
## 834                                   No formal education
## 835                                   No formal education
## 836                                   No formal education
## 837                                   No formal education
## 838                                   No formal education
## 839                                   No formal education
## 840                                   No formal education
## 841                                   No formal education
## 842                                   No formal education
## 843                                   No formal education
## 844                                   No formal education
## 845                                   No formal education
## 846                                   No formal education
## 847                                   No formal education
## 848                                   No formal education
## 849                                   No formal education
## 850                                   No formal education
## 851                                   No formal education
## 852                                   No formal education
## 853                                   No formal education
## 854                                   No formal education
## 855                                   No formal education
## 856                                   No formal education
## 857                                   No formal education
## 858                                   No formal education
## 859                                   No formal education
## 860                                   No formal education
## 861                                   No formal education
## 862                                   No formal education
## 863                                   No formal education
## 864                                   No formal education
## 865                                   No formal education
## 866                                   No formal education
## 867                                   No formal education
## 868                                   No formal education
## 869                                   No formal education
## 870                                   No formal education
## 871                                   No formal education
## 872                                   No formal education
## 873                                   No formal education
## 874                                   No formal education
## 875                                   No formal education
## 876                                   No formal education
## 877                                   No formal education
## 878                                   No formal education
## 879                                   No formal education
## 880                                   No formal education
## 881                                   No formal education
## 882                                   No formal education
## 883                                   No formal education
## 884                                   No formal education
## 885                                   No formal education
## 886                                   No formal education
## 887                                   No formal education
## 888                                   No formal education
## 889                                   No formal education
## 890                                   No formal education
## 891                                   No formal education
## 892                                   No formal education
## 893                                             Dont know
## 894                                   No formal education
## 895                                   No formal education
## 896                                   No formal education
## 897                                   No formal education
## 898                                   No formal education
## 899                                   No formal education
## 900                                   No formal education
## 901                                   No formal education
## 902                                   No formal education
## 903                                   No formal education
## 904                                   No formal education
## 905                                   No formal education
## 906                                   No formal education
## 907                                   No formal education
## 908                                   No formal education
## 909                                   No formal education
## 910                                   No formal education
## 911                                   No formal education
## 912                                   No formal education
## 913                                   No formal education
## 914                                   No formal education
## 915                                   No formal education
## 916                                   No formal education
## 917                                   No formal education
## 918                                   No formal education
## 919                                   No formal education
## 920                                   No formal education
## 921                                   No formal education
## 922                                   No formal education
## 923                                   No formal education
## 924                                   No formal education
## 925                                   No formal education
## 926                                   No formal education
## 927                                   No formal education
## 928                                   No formal education
## 929                                   No formal education
## 930                                   No formal education
## 931                                   No formal education
## 932                                   No formal education
## 933                                   No formal education
## 934                                   No formal education
## 935                                   No formal education
## 936                                   No formal education
## 937                                   No formal education
## 938                                   No formal education
## 939                                   No formal education
## 940                                   No formal education
## 941                                   No formal education
## 942                                   No formal education
## 943                                   No formal education
## 944                                   No formal education
## 945                                   No formal education
## 946                                   No formal education
## 947                                   No formal education
## 948                                   No formal education
## 949                                   No formal education
## 950                                   No formal education
## 951                                   No formal education
## 952                                   No formal education
## 953                                   No formal education
## 954                                   No formal education
## 955                                   No formal education
## 956                                   No formal education
## 957                                   No formal education
## 958                                   No formal education
## 959                                   No formal education
## 960                                   No formal education
## 961                                   No formal education
## 962                                   No formal education
## 963                                   No formal education
## 964                                             Dont know
## 965                                   No formal education
## 966                                   No formal education
## 967                                   No formal education
## 968                                   No formal education
## 969                                   No formal education
## 970                                   No formal education
## 971                                   No formal education
## 972                                   No formal education
## 973                                   No formal education
## 974                                   No formal education
## 975                                   No formal education
## 976                                   No formal education
## 977                                   No formal education
## 978                                   No formal education
## 979                                   No formal education
## 980                                   No formal education
## 981                                   No formal education
## 982                                   No formal education
## 983                                   No formal education
## 984                                   No formal education
## 985                                   No formal education
## 986                                   No formal education
## 987                                   No formal education
## 988                                   No formal education
## 989                                   No formal education
## 990                                   No formal education
## 991                                   No formal education
## 992                                   No formal education
## 993                                   No formal education
## 994                                   No formal education
## 995                                   No formal education
## 996                                   No formal education
## 997                                   No formal education
## 998                                   No formal education
## 999                                   No formal education
## 1000                                  No formal education
## 1001                                  No formal education
## 1002                                  No formal education
## 1003                                  No formal education
## 1004                                  No formal education
## 1005                                  No formal education
## 1006                                  No formal education
## 1007                                  No formal education
## 1008                                  No formal education
## 1009                                  No formal education
## 1010                                  No formal education
## 1011                                  No formal education
## 1012                                  No formal education
## 1013                                  No formal education
## 1014                                  No formal education
## 1015                                  No formal education
## 1016                                  No formal education
## 1017                                  No formal education
## 1018                                  No formal education
## 1019                                  No formal education
## 1020                                  No formal education
## 1021                                  No formal education
## 1022                                  No formal education
## 1023                                  No formal education
## 1024                                  No formal education
## 1025                                  No formal education
## 1026                                  No formal education
## 1027                                  No formal education
## 1028                                  No formal education
## 1029                                  No formal education
## 1030                                  No formal education
## 1031                                  No formal education
## 1032                                  No formal education
## 1033                                  No formal education
## 1034                                  No formal education
## 1035                                  No formal education
## 1036                                  No formal education
## 1037                                  No formal education
## 1038                                  No formal education
## 1039                                  No formal education
## 1040                                  No formal education
## 1041                                  No formal education
## 1042                                  No formal education
## 1043                                  No formal education
## 1044                                  No formal education
## 1045                                  No formal education
## 1046                                  No formal education
## 1047                                  No formal education
## 1048                                  No formal education
## 1049                                  No formal education
## 1050                                  No formal education
## 1051                                  No formal education
## 1052                                  No formal education
## 1053                                  No formal education
## 1054                                  No formal education
## 1055                                  No formal education
## 1056                                  No formal education
## 1057                                  No formal education
## 1058                                  No formal education
## 1059                                  No formal education
## 1060                                  No formal education
## 1061                                  No formal education
## 1062                                  No formal education
## 1063                                  No formal education
## 1064                                  No formal education
## 1065                                  No formal education
## 1066                                  No formal education
## 1067                                  No formal education
## 1068                                  No formal education
## 1069                                  No formal education
## 1070                                  No formal education
## 1071                                  No formal education
## 1072                                  No formal education
## 1073                                  No formal education
## 1074                                  No formal education
## 1075                                  No formal education
## 1076                                  No formal education
## 1077                                  No formal education
## 1078                                  No formal education
## 1079                                  No formal education
## 1080                                  No formal education
## 1081                                  No formal education
## 1082                                  No formal education
## 1083                                  No formal education
## 1084                                  No formal education
## 1085                                  No formal education
## 1086                                            Dont know
## 1087                                  No formal education
## 1088                                  No formal education
## 1089                                  No formal education
## 1090                                  No formal education
## 1091                                  No formal education
## 1092                                  No formal education
## 1093                                  No formal education
## 1094                                  No formal education
## 1095                                  No formal education
## 1096                                  No formal education
## 1097                                  No formal education
## 1098                                  No formal education
## 1099                                  No formal education
## 1100                                  No formal education
## 1101                                  No formal education
## 1102                                  No formal education
## 1103                                  No formal education
## 1104                                  No formal education
## 1105                                  No formal education
## 1106                                  No formal education
## 1107                                  No formal education
## 1108                                  No formal education
## 1109                                  No formal education
## 1110                                  No formal education
## 1111                                  No formal education
## 1112                                  No formal education
## 1113                                  No formal education
## 1114                                  No formal education
## 1115                                  No formal education
## 1116                                  No formal education
## 1117                                  No formal education
## 1118                                  No formal education
## 1119                                  No formal education
## 1120                                  No formal education
## 1121                                  No formal education
## 1122                                  No formal education
## 1123                                  No formal education
## 1124                                  No formal education
## 1125                                  No formal education
## 1126                                  No formal education
## 1127                                  No formal education
## 1128                                  No formal education
## 1129                                  No formal education
## 1130                                            Dont know
## 1131                                  No formal education
## 1132                                  No formal education
## 1133                                  No formal education
## 1134                                  No formal education
## 1135                                  No formal education
## 1136                                            Dont know
## 1137                                  No formal education
## 1138                                  No formal education
## 1139                                  No formal education
## 1140                                  No formal education
## 1141                                  No formal education
## 1142                                  No formal education
## 1143                                  No formal education
## 1144                                  No formal education
## 1145                                  No formal education
## 1146                                  No formal education
## 1147                                  No formal education
## 1148                                  No formal education
## 1149                                  No formal education
## 1150                                  No formal education
## 1151                                  No formal education
## 1152                                  No formal education
## 1153                                  No formal education
## 1154                                  No formal education
## 1155                                  No formal education
## 1156                                  No formal education
## 1157                                  No formal education
## 1158                                  No formal education
## 1159                                  No formal education
## 1160                                  No formal education
## 1161                                  No formal education
## 1162                                  No formal education
## 1163                                            Dont know
## 1164                                  No formal education
## 1165                                  No formal education
## 1166                                  No formal education
## 1167                                  No formal education
## 1168                                  No formal education
## 1169                                  No formal education
## 1170                                  No formal education
## 1171                                  No formal education
## 1172                                  No formal education
## 1173                                  No formal education
## 1174                                  No formal education
## 1175                                  No formal education
## 1176                                  No formal education
## 1177                                  No formal education
## 1178                                  No formal education
## 1179                                  No formal education
## 1180                                  No formal education
## 1181                                  No formal education
## 1182                                  No formal education
## 1183                                  No formal education
## 1184                                  No formal education
## 1185                                  No formal education
## 1186                                  No formal education
## 1187                                  No formal education
## 1188                                  No formal education
## 1189                                  No formal education
## 1190                                  No formal education
## 1191                                  No formal education
## 1192                                  No formal education
## 1193                                  No formal education
## 1194                                  No formal education
## 1195                                  No formal education
## 1196                                  No formal education
## 1197                                  No formal education
## 1198                                  No formal education
## 1199                                  No formal education
## 1200                                  No formal education
## 1201                                  No formal education
## 1202                                  No formal education
## 1203                                  No formal education
## 1204                                  No formal education
## 1205                                  No formal education
## 1206                                  No formal education
## 1207                                  No formal education
## 1208                                  No formal education
## 1209                                  No formal education
## 1210                                  No formal education
## 1211                                  No formal education
## 1212                                  No formal education
## 1213                                  No formal education
## 1214                                  No formal education
## 1215                                  No formal education
## 1216                                  No formal education
## 1217                                  No formal education
## 1218                                  No formal education
## 1219                                  No formal education
## 1220                                  No formal education
## 1221                                  No formal education
## 1222                                  No formal education
## 1223                                  No formal education
## 1224                                  No formal education
## 1225                                  No formal education
## 1226                                  No formal education
## 1227                                  No formal education
## 1228                                  No formal education
## 1229                                  No formal education
## 1230                                  No formal education
## 1231                                  No formal education
## 1232                                  No formal education
## 1233                                  No formal education
## 1234                                  No formal education
## 1235                                  No formal education
## 1236                                  No formal education
## 1237                                  No formal education
## 1238                                  No formal education
## 1239                                  No formal education
## 1240                                  No formal education
## 1241                                  No formal education
## 1242                                  No formal education
## 1243                                  No formal education
## 1244                                  No formal education
## 1245                                  No formal education
## 1246                                  No formal education
## 1247                                  No formal education
## 1248                                  No formal education
## 1249                                  No formal education
## 1250                                  No formal education
## 1251                                  No formal education
## 1252                                  No formal education
## 1253                                  No formal education
## 1254                                  No formal education
## 1255                                  No formal education
## 1256                                  No formal education
## 1257                                  No formal education
## 1258                                  No formal education
## 1259                                  No formal education
## 1260                                  No formal education
## 1261                                  No formal education
## 1262                                  No formal education
## 1263                                  No formal education
## 1264                                  No formal education
## 1265                                  No formal education
## 1266                                  No formal education
## 1267                                  No formal education
## 1268                                  No formal education
## 1269                                  No formal education
## 1270                                  No formal education
## 1271                                  No formal education
## 1272                                  No formal education
## 1273                                  No formal education
## 1274                                  No formal education
## 1275                                  No formal education
## 1276                                  No formal education
## 1277                                  No formal education
## 1278                                  No formal education
## 1279                                  No formal education
## 1280                                  No formal education
## 1281                                  No formal education
## 1282                                  No formal education
## 1283                                  No formal education
## 1284                                  No formal education
## 1285                                  No formal education
## 1286                                  No formal education
## 1287                                  No formal education
## 1288                                  No formal education
## 1289                                  No formal education
## 1290                                  No formal education
## 1291                                  No formal education
## 1292                                  No formal education
## 1293                                  No formal education
## 1294                                  No formal education
## 1295                                  No formal education
## 1296                                  No formal education
## 1297                                  No formal education
## 1298                                  No formal education
## 1299                                  No formal education
## 1300                                  No formal education
## 1301                                  No formal education
## 1302                                  No formal education
## 1303                                  No formal education
## 1304                                  No formal education
## 1305                                  No formal education
## 1306                                  No formal education
## 1307                                  No formal education
## 1308                                  No formal education
## 1309                                  No formal education
## 1310                                  No formal education
## 1311                                            Dont know
## 1312                                  No formal education
## 1313                                  No formal education
## 1314                                  No formal education
## 1315                                  No formal education
## 1316                                  No formal education
## 1317                                  No formal education
## 1318                                  No formal education
## 1319                                  No formal education
## 1320                                  No formal education
## 1321                                  No formal education
## 1322                                  No formal education
## 1323                                  No formal education
## 1324                                  No formal education
## 1325                                            Dont know
## 1326                                  No formal education
## 1327                                  No formal education
## 1328                                  No formal education
## 1329                                  No formal education
## 1330                                  No formal education
## 1331                                  No formal education
## 1332                                  No formal education
## 1333                                  No formal education
## 1334                                  No formal education
## 1335                                  No formal education
## 1336                                  No formal education
## 1337                                  No formal education
## 1338                                  No formal education
## 1339                                  No formal education
## 1340                                  No formal education
## 1341                                  No formal education
## 1342                                  No formal education
## 1343                                  No formal education
## 1344                                  No formal education
## 1345                                  No formal education
## 1346                                  No formal education
## 1347                                  No formal education
## 1348                                  No formal education
## 1349                                  No formal education
## 1350                                  No formal education
## 1351                                  No formal education
## 1352                                  No formal education
## 1353                                  No formal education
## 1354                                  No formal education
## 1355                                  No formal education
## 1356                                  No formal education
## 1357                                  No formal education
## 1358                                  No formal education
## 1359                                  No formal education
## 1360                                  No formal education
## 1361                                  No formal education
## 1362                                  No formal education
## 1363                                  No formal education
## 1364                                  No formal education
## 1365                                  No formal education
## 1366                                  No formal education
## 1367                                  No formal education
## 1368                                  No formal education
## 1369                                  No formal education
## 1370                                  No formal education
## 1371                                  No formal education
## 1372                                  No formal education
## 1373                                  No formal education
## 1374                                  No formal education
## 1375                                  No formal education
## 1376                                  No formal education
## 1377                                  No formal education
## 1378                                  No formal education
## 1379                                  No formal education
## 1380                                  No formal education
## 1381                                  No formal education
## 1382                                  No formal education
## 1383                                  No formal education
## 1384                                  No formal education
## 1385                                  No formal education
## 1386                                  No formal education
## 1387                                  No formal education
## 1388                                  No formal education
## 1389                                  No formal education
## 1390                                  No formal education
## 1391                                  No formal education
## 1392                                  No formal education
## 1393                                  No formal education
## 1394                                  No formal education
## 1395                                  No formal education
## 1396                                  No formal education
## 1397                                  No formal education
## 1398                                  No formal education
## 1399                                  No formal education
## 1400                                  No formal education
## 1401                                  No formal education
## 1402                                  No formal education
## 1403                                  No formal education
## 1404                                            Dont know
## 1405                                  No formal education
## 1406                                  No formal education
## 1407                                  No formal education
## 1408                                  No formal education
## 1409                                  No formal education
## 1410                                  No formal education
## 1411                                  No formal education
## 1412                                  No formal education
## 1413                                  No formal education
## 1414                                  No formal education
## 1415                                  No formal education
## 1416                                  No formal education
## 1417                                  No formal education
## 1418                                  No formal education
## 1419                                  No formal education
## 1420                                  No formal education
## 1421                                  No formal education
## 1422                                  No formal education
## 1423                                  No formal education
## 1424                                  No formal education
## 1425                                  No formal education
## 1426                                  No formal education
## 1427                                  No formal education
## 1428                                  No formal education
## 1429                                  No formal education
## 1430                                  No formal education
## 1431                                  No formal education
## 1432                                  No formal education
## 1433                                  No formal education
## 1434                                  No formal education
## 1435                                  No formal education
## 1436                                  No formal education
## 1437                                  No formal education
## 1438                                  No formal education
## 1439                                  No formal education
## 1440                                  No formal education
## 1441                                  No formal education
## 1442                                  No formal education
## 1443                                  No formal education
## 1444                                  No formal education
## 1445                                  No formal education
## 1446                                  No formal education
## 1447                                  No formal education
## 1448                                  No formal education
## 1449                                  No formal education
## 1450                                  No formal education
## 1451                                  No formal education
## 1452                                            Dont know
## 1453                                  No formal education
## 1454                                  No formal education
## 1455                                  No formal education
## 1456                                  No formal education
## 1457                                  No formal education
## 1458                                  No formal education
## 1459                                  No formal education
## 1460                                  No formal education
## 1461                                  No formal education
## 1462                                  No formal education
## 1463                                  No formal education
## 1464                                  No formal education
## 1465                                  No formal education
## 1466                                  No formal education
## 1467                                  No formal education
## 1468                                  No formal education
## 1469                                  No formal education
## 1470                                  No formal education
## 1471                                  No formal education
## 1472                                  No formal education
## 1473                                  No formal education
## 1474                                  No formal education
## 1475                                  No formal education
## 1476                                  No formal education
## 1477                                  No formal education
## 1478                                  No formal education
## 1479                                  No formal education
## 1480                                  No formal education
## 1481                                  No formal education
## 1482                                  No formal education
## 1483                                  No formal education
## 1484                                  No formal education
## 1485                                  No formal education
## 1486                                  No formal education
## 1487                                  No formal education
## 1488                                  No formal education
## 1489                                  No formal education
## 1490                                  No formal education
## 1491                                  No formal education
## 1492                                  No formal education
## 1493                                  No formal education
## 1494                                  No formal education
## 1495                                  No formal education
## 1496                                  No formal education
## 1497                                  No formal education
## 1498                                  No formal education
## 1499                                  No formal education
## 1500                                            Dont know
## 1501                                  No formal education
## 1502                                  No formal education
## 1503                                  No formal education
## 1504                                  No formal education
## 1505                                  No formal education
## 1506                                  No formal education
## 1507                                  No formal education
## 1508                                  No formal education
## 1509                                  No formal education
## 1510                                  No formal education
## 1511                                  No formal education
## 1512                                  No formal education
## 1513                                  No formal education
## 1514                                  No formal education
## 1515                                  No formal education
## 1516                                  No formal education
## 1517                                  No formal education
## 1518                                  No formal education
## 1519                                  No formal education
## 1520                                  No formal education
## 1521                                  No formal education
## 1522                                  No formal education
## 1523                                  No formal education
## 1524                                  No formal education
## 1525                                  No formal education
## 1526                                  No formal education
## 1527                                  No formal education
## 1528                                  No formal education
## 1529                                            Dont know
## 1530                                  No formal education
## 1531                                  No formal education
## 1532                                  No formal education
## 1533                                  No formal education
## 1534                                  No formal education
## 1535                                  No formal education
## 1536                                  No formal education
## 1537                                  No formal education
## 1538                                  No formal education
## 1539                                  No formal education
## 1540                                  No formal education
## 1541                                  No formal education
## 1542                                  No formal education
## 1543                                  No formal education
## 1544                                  No formal education
## 1545                                  No formal education
## 1546                                  No formal education
## 1547                                  No formal education
## 1548                                  No formal education
## 1549                                  No formal education
## 1550                                  No formal education
## 1551                                  No formal education
## 1552                                  No formal education
## 1553                                  No formal education
## 1554                                  No formal education
## 1555                                  No formal education
## 1556                                  No formal education
## 1557                                  No formal education
## 1558                                  No formal education
## 1559                                  No formal education
## 1560                                  No formal education
## 1561                                  No formal education
## 1562                                  No formal education
## 1563                                  No formal education
## 1564                                  No formal education
## 1565                                  No formal education
## 1566                                  No formal education
## 1567                                  No formal education
## 1568                                  No formal education
## 1569                                  No formal education
## 1570                                  No formal education
## 1571                                  No formal education
## 1572                                  No formal education
## 1573                                  No formal education
## 1574                                  No formal education
## 1575                                  No formal education
## 1576                                  No formal education
## 1577                                  No formal education
## 1578                                  No formal education
## 1579                                  No formal education
## 1580                                  No formal education
## 1581                                  No formal education
## 1582                                  No formal education
## 1583                                  No formal education
## 1584                                  No formal education
## 1585                                  No formal education
## 1586                                  No formal education
## 1587                                  No formal education
## 1588                                  No formal education
## 1589                                  No formal education
## 1590                                  No formal education
## 1591                                  No formal education
## 1592                                  No formal education
## 1593                                  No formal education
## 1594                                  No formal education
## 1595                                  No formal education
## 1596                                  No formal education
## 1597                                  No formal education
## 1598                                  No formal education
## 1599                                  No formal education
## 1600                                  No formal education
## 1601                                  No formal education
## 1602                                  No formal education
## 1603                                  No formal education
## 1604                                  No formal education
## 1605                                  No formal education
## 1606                                  No formal education
## 1607                                  No formal education
## 1608                                  No formal education
## 1609                                  No formal education
## 1610                                  No formal education
## 1611                                            Dont know
## 1612                                  No formal education
## 1613                                  No formal education
## 1614                                  No formal education
## 1615                                  No formal education
## 1616                                  No formal education
## 1617                                  No formal education
## 1618                                  No formal education
## 1619                                  No formal education
## 1620                                  No formal education
## 1621                                  No formal education
## 1622                                  No formal education
## 1623                                  No formal education
## 1624                                  No formal education
## 1625                                  No formal education
## 1626                                  No formal education
## 1627                                  No formal education
## 1628                                  No formal education
## 1629                                  No formal education
## 1630                                  No formal education
## 1631                                  No formal education
## 1632                                  No formal education
## 1633                                  No formal education
## 1634                                  No formal education
## 1635                                  No formal education
## 1636                                  No formal education
## 1637                                  No formal education
## 1638                                  No formal education
## 1639                                  No formal education
## 1640                                  No formal education
## 1641                                  No formal education
## 1642                                  No formal education
## 1643                                  No formal education
## 1644                                  No formal education
## 1645                                  No formal education
## 1646                                  No formal education
## 1647                                  No formal education
## 1648                                  No formal education
## 1649                                            Dont know
## 1650                                  No formal education
## 1651                                  No formal education
## 1652                                  No formal education
## 1653                                  No formal education
## 1654                                  No formal education
## 1655                                  No formal education
## 1656                                  No formal education
## 1657                                            Dont know
## 1658                                  No formal education
## 1659                                  No formal education
## 1660                                  No formal education
## 1661                                  No formal education
## 1662                                  No formal education
## 1663                                  No formal education
## 1664                                  No formal education
## 1665                                  No formal education
## 1666                                  No formal education
## 1667                                  No formal education
## 1668                                  No formal education
## 1669                                  No formal education
## 1670                                  No formal education
## 1671                                  No formal education
## 1672                                  No formal education
## 1673                                  No formal education
## 1674                                  No formal education
## 1675                                  No formal education
## 1676                                  No formal education
## 1677                                  No formal education
## 1678                                  No formal education
## 1679                                  No formal education
## 1680                                  No formal education
## 1681                                  No formal education
## 1682                                            Dont know
## 1683                                  No formal education
## 1684                                  No formal education
## 1685                                  No formal education
## 1686                                  No formal education
## 1687                                  No formal education
## 1688                                  No formal education
## 1689                                  No formal education
## 1690                                  No formal education
## 1691                                  No formal education
## 1692                                  No formal education
## 1693                                  No formal education
## 1694                                  No formal education
## 1695                                  No formal education
## 1696                                  No formal education
## 1697                                  No formal education
## 1698                                  No formal education
## 1699                                  No formal education
## 1700                                  No formal education
## 1701                                  No formal education
## 1702                                  No formal education
## 1703                                  No formal education
## 1704                                  No formal education
## 1705                                  No formal education
## 1706                                  No formal education
## 1707                                  No formal education
## 1708                                  No formal education
## 1709                                  No formal education
## 1710                                  No formal education
## 1711                                  No formal education
## 1712                                  No formal education
## 1713                                  No formal education
## 1714                                  No formal education
## 1715                                  No formal education
## 1716                                  No formal education
## 1717                                  No formal education
## 1718                                  No formal education
## 1719                                  No formal education
## 1720                                  No formal education
## 1721                                  No formal education
## 1722                                  No formal education
## 1723                                  No formal education
## 1724                                  No formal education
## 1725                                  No formal education
## 1726                                  No formal education
## 1727                                  No formal education
## 1728                                  No formal education
## 1729                                  No formal education
## 1730                                  No formal education
## 1731                                  No formal education
## 1732                                  No formal education
## 1733                                  No formal education
## 1734                                  No formal education
## 1735                                  No formal education
## 1736                                  No formal education
## 1737                                  No formal education
## 1738                                  No formal education
## 1739                                  No formal education
## 1740                                  No formal education
## 1741                                  No formal education
## 1742                                  No formal education
## 1743                                  No formal education
## 1744                                  No formal education
## 1745                                  No formal education
## 1746                                  No formal education
## 1747                                  No formal education
## 1748                                  No formal education
## 1749                                  No formal education
## 1750                                  No formal education
## 1751                                  No formal education
## 1752                                  No formal education
## 1753                                  No formal education
## 1754                                  No formal education
## 1755                                  No formal education
## 1756                                  No formal education
## 1757                                  No formal education
## 1758                                  No formal education
## 1759                                  No formal education
## 1760                                  No formal education
## 1761                                  No formal education
## 1762                                  No formal education
## 1763                                            Dont know
## 1764                                  No formal education
## 1765                                  No formal education
## 1766                                  No formal education
## 1767                                            Dont know
## 1768                                  No formal education
## 1769                                  No formal education
## 1770                                  No formal education
## 1771                                  No formal education
## 1772                                  No formal education
## 1773                                  No formal education
## 1774                                  No formal education
## 1775                                  No formal education
## 1776                                  No formal education
## 1777                                  No formal education
## 1778                                  No formal education
## 1779                                  No formal education
## 1780                                  No formal education
## 1781                                  No formal education
## 1782                                  No formal education
## 1783                                  No formal education
## 1784                                  No formal education
## 1785                                  No formal education
## 1786                                  No formal education
## 1787                                  No formal education
## 1788                                  No formal education
## 1789                                  No formal education
## 1790                                  No formal education
## 1791                                  No formal education
## 1792                                  No formal education
## 1793                                  No formal education
## 1794                                  No formal education
## 1795                                  No formal education
## 1796                                  No formal education
## 1797                                  No formal education
## 1798                                  No formal education
## 1799                                  No formal education
## 1800                                  No formal education
## 1801                                  No formal education
## 1802                                  No formal education
## 1803                                  No formal education
## 1804                                  No formal education
## 1805                                  No formal education
## 1806                                  No formal education
## 1807                                  No formal education
## 1808                                  No formal education
## 1809                                  No formal education
## 1810                                  No formal education
## 1811                                  No formal education
## 1812                                  No formal education
## 1813                                  No formal education
## 1814                                  No formal education
## 1815                                  No formal education
## 1816                                  No formal education
## 1817                                  No formal education
## 1818                                  No formal education
## 1819                                  No formal education
## 1820                                  No formal education
## 1821                                  No formal education
## 1822                                  No formal education
## 1823                                  No formal education
## 1824                                  No formal education
## 1825                                  No formal education
## 1826                                  No formal education
## 1827                                  No formal education
## 1828                                            Dont know
## 1829                                  No formal education
## 1830                                  No formal education
## 1831                                  No formal education
## 1832                                  No formal education
## 1833                                            Dont know
## 1834                                  No formal education
## 1835                                  No formal education
## 1836                                  No formal education
## 1837                                  No formal education
## 1838                                  No formal education
## 1839                                  No formal education
## 1840                                  No formal education
## 1841                                  No formal education
## 1842                                  No formal education
## 1843                                  No formal education
## 1844                                  No formal education
## 1845                                  No formal education
## 1846                                  No formal education
## 1847                                  No formal education
## 1848                                            Dont know
## 1849                                  No formal education
## 1850                                  No formal education
## 1851                                            Dont know
## 1852                                  No formal education
## 1853                                  No formal education
## 1854                                  No formal education
## 1855                                  No formal education
## 1856                                  No formal education
## 1857                                  No formal education
## 1858                                            Dont know
## 1859                                  No formal education
## 1860                                  No formal education
## 1861                                  No formal education
## 1862                                  No formal education
## 1863                                  No formal education
## 1864                                  No formal education
## 1865                                  No formal education
## 1866                                  No formal education
## 1867                                  No formal education
## 1868                                  No formal education
## 1869                                  No formal education
## 1870                                  No formal education
## 1871                                  No formal education
## 1872                                  No formal education
## 1873                                  No formal education
## 1874                                  No formal education
## 1875                                  No formal education
## 1876                                  No formal education
## 1877                                  No formal education
## 1878                                  No formal education
## 1879                                  No formal education
## 1880                                  No formal education
## 1881                                  No formal education
## 1882                                  No formal education
## 1883                                  No formal education
## 1884                                  No formal education
## 1885                                  No formal education
## 1886                                  No formal education
## 1887                                            Dont know
## 1888                                  No formal education
## 1889                                  No formal education
## 1890                                  No formal education
## 1891                                  No formal education
## 1892                                  No formal education
## 1893                                  No formal education
## 1894                                  No formal education
## 1895                                  No formal education
## 1896                                  No formal education
## 1897                                  No formal education
## 1898                                  No formal education
## 1899                                  No formal education
## 1900                                  No formal education
## 1901                                  No formal education
## 1902                                  No formal education
## 1903                                  No formal education
## 1904                                  No formal education
## 1905                                  No formal education
## 1906                                  No formal education
## 1907                                  No formal education
## 1908                                  No formal education
## 1909                                  No formal education
## 1910                                  No formal education
## 1911                                  No formal education
## 1912                                  No formal education
## 1913                                  No formal education
## 1914                                            Dont know
## 1915                                  No formal education
## 1916                                  No formal education
## 1917                                  No formal education
## 1918                                  No formal education
## 1919                                  No formal education
## 1920                                  No formal education
## 1921                                  No formal education
## 1922                                            Dont know
## 1923                                  No formal education
## 1924                                  No formal education
## 1925                                  No formal education
## 1926                                  No formal education
## 1927                                  No formal education
## 1928                                  No formal education
## 1929                                  No formal education
## 1930                                  No formal education
## 1931                                            Dont know
## 1932                                            Dont know
## 1933                                  No formal education
## 1934                                  No formal education
## 1935                                  No formal education
## 1936                                  No formal education
## 1937                                  No formal education
## 1938                                  No formal education
## 1939                                  No formal education
## 1940                                  No formal education
## 1941                                  No formal education
## 1942                                  No formal education
## 1943                                  No formal education
## 1944                                  No formal education
## 1945                                  No formal education
## 1946                                  No formal education
## 1947                                  No formal education
## 1948                                  No formal education
## 1949                                  No formal education
## 1950                                  No formal education
## 1951                                  No formal education
## 1952                                  No formal education
## 1953                                  No formal education
## 1954                                  No formal education
## 1955                                  No formal education
## 1956                                  No formal education
## 1957                                  No formal education
## 1958                                  No formal education
## 1959                                  No formal education
## 1960                                  No formal education
## 1961                                  No formal education
## 1962                                  No formal education
## 1963                                  No formal education
## 1964                                  No formal education
## 1965                                  No formal education
## 1966                                  No formal education
## 1967                                  No formal education
## 1968                                  No formal education
## 1969                                  No formal education
## 1970                                  No formal education
## 1971                                  No formal education
## 1972                                  No formal education
## 1973                                  No formal education
## 1974                                  No formal education
## 1975                                  No formal education
## 1976                                  No formal education
## 1977                                  No formal education
## 1978                                  No formal education
## 1979                                  No formal education
## 1980                                  No formal education
## 1981                                  No formal education
## 1982                                  No formal education
## 1983                                  No formal education
## 1984                                  No formal education
## 1985                                  No formal education
## 1986                                  No formal education
## 1987                                  No formal education
## 1988                                  No formal education
## 1989                                  No formal education
## 1990                                  No formal education
## 1991                                  No formal education
## 1992                                  No formal education
## 1993                                  No formal education
## 1994                                  No formal education
## 1995                                            Dont know
## 1996                                  No formal education
## 1997                                  No formal education
## 1998                                  No formal education
## 1999                                  No formal education
## 2000                                  No formal education
## 2001                                  No formal education
## 2002                                  No formal education
## 2003                                  No formal education
## 2004                                  No formal education
## 2005                                  No formal education
## 2006                                  No formal education
## 2007                                  No formal education
## 2008                                  No formal education
## 2009                                  No formal education
## 2010                                  No formal education
## 2011                                  No formal education
## 2012                                  No formal education
## 2013                                  No formal education
## 2014                                  No formal education
## 2015                                  No formal education
## 2016                                  No formal education
## 2017                                  No formal education
## 2018                                  No formal education
## 2019                                  No formal education
## 2020                                  No formal education
## 2021                                  No formal education
## 2022                                  No formal education
## 2023                                            Dont know
## 2024                                  No formal education
## 2025                                  No formal education
## 2026                                  No formal education
## 2027                                  No formal education
## 2028                                  No formal education
## 2029                                  No formal education
## 2030                                  No formal education
## 2031                                  No formal education
## 2032                                  No formal education
## 2033                                  No formal education
## 2034                                  No formal education
## 2035                                  No formal education
## 2036                                  No formal education
## 2037                                  No formal education
## 2038                                  No formal education
## 2039                                  No formal education
## 2040                                  No formal education
## 2041                                  No formal education
## 2042                                  No formal education
## 2043                                  No formal education
## 2044                                  No formal education
## 2045                                  No formal education
## 2046                                  No formal education
## 2047                                  No formal education
## 2048                                  No formal education
## 2049                                  No formal education
## 2050                                  No formal education
## 2051                                  No formal education
## 2052                                  No formal education
## 2053                                  No formal education
## 2054                                  No formal education
## 2055                                  No formal education
## 2056                                  No formal education
## 2057                                  No formal education
## 2058                                  No formal education
## 2059                                  No formal education
## 2060                                  No formal education
## 2061                                  No formal education
## 2062                                  No formal education
## 2063                                  No formal education
## 2064                                  No formal education
## 2065                                            Dont know
## 2066                                  No formal education
## 2067                                  No formal education
## 2068                                  No formal education
## 2069                                  No formal education
## 2070                                  No formal education
## 2071                                  No formal education
## 2072                                  No formal education
## 2073                                  No formal education
## 2074                                  No formal education
## 2075                                  No formal education
## 2076                                  No formal education
## 2077                                  No formal education
## 2078                                            Dont know
## 2079                                  No formal education
## 2080                                  No formal education
## 2081                                  No formal education
## 2082                                  No formal education
## 2083                                  No formal education
## 2084                                  No formal education
## 2085                                  No formal education
## 2086                                  No formal education
## 2087                                  No formal education
## 2088                                  No formal education
## 2089                                  No formal education
## 2090                                  No formal education
## 2091                                  No formal education
## 2092                                  No formal education
## 2093                                  No formal education
## 2094                                  No formal education
## 2095                                  No formal education
## 2096                                  No formal education
## 2097                                  No formal education
## 2098                                  No formal education
## 2099                                  No formal education
## 2100                                  No formal education
## 2101                                  No formal education
## 2102                                  No formal education
## 2103                                  No formal education
## 2104                                  No formal education
## 2105                                  No formal education
## 2106                                  No formal education
## 2107                                  No formal education
## 2108                                  No formal education
## 2109                                  No formal education
## 2110                                  No formal education
## 2111                                  No formal education
## 2112                                  No formal education
## 2113                                  No formal education
## 2114                                  No formal education
## 2115                                  No formal education
## 2116                                  No formal education
## 2117                                  No formal education
## 2118                                  No formal education
## 2119                                  No formal education
## 2120                                  No formal education
## 2121                                  No formal education
## 2122                                  No formal education
## 2123                                  No formal education
## 2124                                  No formal education
## 2125                                  No formal education
## 2126                                  No formal education
## 2127                                  No formal education
## 2128                                  No formal education
## 2129                                  No formal education
## 2130                                  No formal education
## 2131                                  No formal education
## 2132                                  No formal education
## 2133                                  No formal education
## 2134                                  No formal education
## 2135                                  No formal education
## 2136                                  No formal education
## 2137                                  No formal education
## 2138                                  No formal education
## 2139                                  No formal education
## 2140                                  No formal education
## 2141                                  No formal education
## 2142                                  No formal education
## 2143                                  No formal education
## 2144                                  No formal education
## 2145                                  No formal education
## 2146                                            Dont know
## 2147                                  No formal education
## 2148                                  No formal education
## 2149                                  No formal education
## 2150                                  No formal education
## 2151                                  No formal education
## 2152                                  No formal education
## 2153                                  No formal education
## 2154                                  No formal education
## 2155                                            Dont know
## 2156                                  No formal education
## 2157                                  No formal education
## 2158                                  No formal education
## 2159                                  No formal education
## 2160                                  No formal education
## 2161                                  No formal education
## 2162                                            Dont know
## 2163                                  No formal education
## 2164                                  No formal education
## 2165                                  No formal education
## 2166                                  No formal education
## 2167                                  No formal education
## 2168                                  No formal education
## 2169                                  No formal education
## 2170                                  No formal education
## 2171                                  No formal education
## 2172                                  No formal education
## 2173                                  No formal education
## 2174                                  No formal education
## 2175                                  No formal education
## 2176                                            Dont know
## 2177                                  No formal education
## 2178                                  No formal education
## 2179                                  No formal education
## 2180                                  No formal education
## 2181                                  No formal education
## 2182                                  No formal education
## 2183                                  No formal education
## 2184                                  No formal education
## 2185                                  No formal education
## 2186                                  No formal education
## 2187                                  No formal education
## 2188                                  No formal education
## 2189                                  No formal education
## 2190                                  No formal education
## 2191                                  No formal education
## 2192                                  No formal education
## 2193                                  No formal education
## 2194                                  No formal education
## 2195                                  No formal education
## 2196                                  No formal education
## 2197                                  No formal education
## 2198                                  No formal education
## 2199                                  No formal education
## 2200                                  No formal education
## 2201                                  No formal education
## 2202                                            Dont know
## 2203                                  No formal education
## 2204                                  No formal education
## 2205                                  No formal education
## 2206                                  No formal education
## 2207                                  No formal education
## 2208                                  No formal education
## 2209                                  No formal education
## 2210                                  No formal education
## 2211                                  No formal education
## 2212                                  No formal education
## 2213                                  No formal education
## 2214                                  No formal education
## 2215                                  No formal education
## 2216                                  No formal education
## 2217                                  No formal education
## 2218                                  No formal education
## 2219                                  No formal education
## 2220                                  No formal education
## 2221                                  No formal education
## 2222                                  No formal education
## 2223                                  No formal education
## 2224                                  No formal education
## 2225                                  No formal education
## 2226                                  No formal education
## 2227                                  No formal education
## 2228                                  No formal education
## 2229                                            Dont know
## 2230                                  No formal education
## 2231                                  No formal education
## 2232                                  No formal education
## 2233                                  No formal education
## 2234                                  No formal education
## 2235                                  No formal education
## 2236                                  No formal education
## 2237                                  No formal education
## 2238                                  No formal education
## 2239                                  No formal education
## 2240                                  No formal education
## 2241                                  No formal education
## 2242                                  No formal education
## 2243                                  No formal education
## 2244                                  No formal education
## 2245                                  No formal education
## 2246                                  No formal education
## 2247                                  No formal education
## 2248                                  No formal education
## 2249                                  No formal education
## 2250                                  No formal education
## 2251                                  No formal education
## 2252                                  No formal education
## 2253                                  No formal education
## 2254                                  No formal education
## 2255                                  No formal education
## 2256                                  No formal education
## 2257                                  No formal education
## 2258                                  No formal education
## 2259                                  No formal education
## 2260                                  No formal education
## 2261                                  No formal education
## 2262                                  No formal education
## 2263                                  No formal education
## 2264                                  No formal education
## 2265                                  No formal education
## 2266                                  No formal education
## 2267                                  No formal education
## 2268                                  No formal education
## 2269                                  No formal education
## 2270                                  No formal education
## 2271                                  No formal education
## 2272                                  No formal education
##  [ reached 'max' / getOption("max.print") -- omitted 4822 rows ]
### ... 

### Mobile_money_classification
training<-training%>%
mutate(if_else(Q5==1,"You personally own the land","You own the land                                                           with someone"),
       if_else(Q5==3,"A household member owns the land","The land is rented"),
       if_else(Q5==5,"You dont own the land","You dont know"))

training
##        ID Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8_1 Q8_2 Q8_3 Q8_4 Q8_5 Q8_6 Q8_7 Q8_8
## 1    5086 98  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 2    1258 40  1  1  3  5  1  1    1    0    0    0    0    0    0    0
## 3     331 18  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 4    6729 50  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 5    8671 34  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 6    5462 35  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 7    4886 31  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 8     621 23  2  4  5  5  2  1    0    0    1    0    0    0    0    0
## 9    8302 56  2  3  3  3  2  2    0    1    0    1    0    1    0    0
## 10   4704 37  2  1  3  3  2  1    0    1    0    0    0    0    0    1
## 11   2758 18  2  4  5  5  2  1    0    0    0    0    0    0    0    0
## 12   2536 29  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 13   8863 28  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 14   5469 17  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 15   3543 22  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 16   6554 53  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 17   7769 21  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 18   4226 24  2  4  3  1  1  1    0    1    0    0    0    0    0    0
## 19   6997 38  1  4  2  2  2  2    0    1    0    1    0    0    0    0
## 20    987 30  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 21   5576 27  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 22   2272 42  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 23   8277 44  1  1  1  3  2  2    0    1    0    1    0    0    0    0
## 24   3007 76  2  1  1  1  1  2    0    0    0    1    0    0    0    0
## 25    915 19  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 26   1335 29  2  1  3  5  2  2    0    0    1    0    0    0    0    0
## 27   1251 20  2  4  3  4  2  1    0    0    0    1    0    0    0    0
## 28   5036 26  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 29    599 44  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 30    794 32  2  4  2  5  2  1    0    1    0    0    0    0    0    0
## 31   3158 53  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 32   3959 46  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 33   1241 35  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 34   4986 47  1  2  3  1  1  1    0    1    0    0    0    0    0    0
## 35   4109 20  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 36   8121 86  1  1  1  3  1  2    0    1    0    0    0    0    0    0
## 37   3895 18  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 38   8054 19  1  2  2  3  2  1    0    0    0    1    0    0    0    0
## 39   8023 31  2  1  3  5  2  1    0    1    0    1    0    0    0    0
## 40   6933 30  1  1  2  5  2  2    0    1    0    0    0    0    0    0
## 41   7852 17  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 42   6063 30  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 43    755 37  2  1  6  5  2  1    0    1    0    1    0    0    0    0
## 44   6445 38  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 45   8548 35  1  4  3  4  2  2    0    1    0    0    0    0    0    0
## 46   1549 20  2  2  3  3  2  2    1    0    0    0    0    0    0    0
## 47   6617 29  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 48   8467 35  1  1  3  1  2  1    1    1    0    1    0    0    0    0
## 49   4116 46  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 50   8125 25  1  1  3  4  2  2    0    1    0    0    0    0    0    0
## 51   1044 31  2  1  1  2  2  2    0    1    0    0    0    1    0    0
## 52   2535 21  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 53   8950 39  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 54   6099 23  1  1  2  3  2  1    0    1    0    0    0    0    0    0
## 55   5607 21  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 56   8734 25  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 57   4734 72  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 58   7776 65  2  2  1  1  2  1    0    1    0    0    0    0    0    1
## 59   9367 54  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 60   3423 32  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 61   2878 24  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 62   2356 24  2  4  7  1  2  1    0    0    0    0    0    0    0    0
## 63    229 34  1  1  6  3  1  1    1    0    0    0    0    0    0    0
## 64   3406 46  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 65    771 31  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 66    580 26  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 67   6163 45  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 68   6212 31  1  1  6  1  2  1    0    0    1    0    0    0    0    0
## 69   8574 23  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 70   8278 31  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 71   3919 38  2  1  1  5  2  2    0    0    0    0    0    0    0    0
## 72   8883 45  1  1  6  1  2  1    1    1    0    1    0    0    0    0
## 73   5677 27  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 74   9209 32  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 75   7050 25  1  1  6  1  1  1    0    1    0    1    0    0    0    0
## 76   1531 26  1  2  7  5  1  1    0    0    1    1    0    0    0    0
## 77   7922 30  1  4  3  3  2  2    0    1    0    1    0    0    0    0
## 78   4397 18  1  4  1  3  2  1    0    1    0    1    0    0    0    0
## 79   3170 28  1  2  3  4  2  1    0    1    0    1    0    0    0    0
## 80   6376 35  2  1  5  1  2  2    0    0    0    0    0    0    0    0
## 81   5472 50  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 82   9138 30  2  2  3  3  2  1    0    1    0    1    0    0    0    0
## 83   6020 48  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 84   8658 23  2  1  3  4  1  2    0    0    0    1    0    0    0    0
## 85    919 27  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 86   6035 33  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 87   6925 33  1  4  2  5  2  1    0    0    0    0    0    0    0    0
## 88   5146 57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 89   1169 42  1  1  7  1  2  1    1    0    0    0    0    0    0    0
## 90   3449 30  1  1  3  5  2  2    0    1    0    0    0    0    0    0
## 91   5307 30  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 92   1354 29  2  1  4  1  1  1    0    0    1    1    0    0    0    0
## 93    393 25  2  4  3  5  2  1    0    1    0    0    0    0    0    0
## 94    558 48  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 95   1624 29  2  2  3  5  2  2    0    1    0    1    0    0    0    0
## 96    151 44  2  2  3  5  1  1    0    1    0    0    0    0    0    0
## 97   1515 40  1  1  1  3  2  2    0    0    0    1    0    0    0    0
## 98   9233 21  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 99   5230 47  1  1  2  1  2  2    0    1    0    0    0    0    0    1
## 100   862 39  1  2  3  3  2  1    0    1    0    1    0    0    0    0
## 101  3874 51  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 102  8078 26  2  3  3  4  2  1    0    1    0    1    0    0    0    0
## 103  3920 21  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 104  9188 48  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 105  4551 29  2  1  3  4  1  2    0    1    0    0    0    0    0    0
## 106  2620 69  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 107  3975 58  2  2  3  5  2  2    0    1    1    0    0    0    0    0
## 108  1209 36  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 109  3696 19  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 110  2134 51  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 111  9410 65  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 112  8259 53  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 113  4922 52  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 114  4934 60  2  3  1  4  2  1    0    1    0    0    0    0    0    0
## 115  5602 34  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 116   124 50  2  3  3  5  2  1    0    0    0    0    0    0    0    0
## 117  7990 20  2  4  6  3  2  2    0    1    0    0    0    0    0    0
## 118  7735 79  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 119  8847 19  1  4  5  4  2  2    1    0    0    0    0    0    0    0
## 120   804 17  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 121  8065 48  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 122  5901 30  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 123  2196 33  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 124   187 30  2  2  3  4  2  1    0    0    1    0    0    0    0    0
## 125  8676 17  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 126  3656 22  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 127  6728 20  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 128  7751 57  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 129  2448 30  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 130  1426 21  2  1  5  5  2  1    0    0    1    0    0    0    0    0
## 131   966 36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 132  5400 30  2  1  6  4  1  1    1    0    0    0    0    0    0    0
## 133  2666 74  2  3  3  1  2  2    0    0    0    0    0    0    0    0
## 134  2155 70  1  3  2  5  2  2    0    0    0    1    0    0    0    0
## 135  1972 21  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 136  2123 50  2  1  2  1  1  1    0    1    0    1    0    0    0    0
## 137  7064 42  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 138  7074 51  1  1  5  1  2  1    0    1    1    0    1    0    0    0
## 139  8424 25  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 140  4487 66  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 141  3829 32  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 142   190 43  1  1  3  1  1  1    1    0    0    0    0    0    1    0
## 143  1509 42  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 144  8971 25  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 145  1695 22  1  4  7  5  1  1    0    0    0    0    0    0    0    0
## 146  1468 30  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 147  6145 21  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 148  2476 44  2  1  7  2  1  1    0    1    0    0    0    0    0    0
## 149  7818 32  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 150  3421 45  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 151  9328 43  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 152  2149 27  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 153    45 21  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 154   800 34  1  1  2  4  1  2    0    0    0    1    0    0    0    0
## 155  2881 71  2  1  3  5  2  1    0    0    0    0    0    0    1    0
## 156  2324 53  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 157  9069 41  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 158  5106 18  2  4  2  4  2  1    0    0    0    0    0    0    0    0
## 159  2839 30  2  2  3  1  2  2    0    0    0    1    0    0    0    0
## 160  9007 43  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 161   528 18  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 162   364 27  1  1  6  4  1  1    0    1    0    1    0    0    0    0
## 163  1826 42  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 164  8094 28  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 165  2292 23  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 166  3953 36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 167  8297 26  1  4  5  4  2  1    1    0    0    0    0    0    0    0
## 168  3351 40  2  2  1  4  2  2    0    1    0    1    0    0    0    0
## 169  1906 16  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 170  1314 44  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 171  4784 49  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 172  2268 21  2  1  2  3  1  2    0    1    0    0    0    0    0    0
## 173  5930 26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 174  3458 40  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 175   638 23  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 176  4996 45  1  1  6  1  1  1    0    0    1    0    0    0    0    0
## 177  3626 17  1  4  2  5  2  1    0    0    0    0    0    0    0    0
## 178  1208 35  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 179  1853 47  2  1  3  4  2  1    0    0    0    1    0    0    0    0
## 180  1454 47  2  2  3  1  2  1    0    0    1    1    0    0    0    0
## 181   148 22  2  4  3  5  2  1    1    1    0    0    0    0    0    0
## 182  9155 56  1  1  3  2  2  1    0    1    0    0    0    0    0    0
## 183  5000 20  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 184  8828 30  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 185  7455 30  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 186  1541 82  1  1  1  3  2  2    0    1    0    1    0    0    0    0
## 187  4376 50  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 188  6255 45  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 189  7051 34  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 190  1653 39  1  1  6  2  1  1    0    1    0    0    0    0    0    0
## 191  5883 30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 192  5113 26  2  1  5  1  2  2    0    0    0    0    0    0    0    0
## 193  4405 24  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 194  3924 45  2  4  2  1  1  1    0    1    0    0    0    0    0    0
## 195  6642 19  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 196  8330 21  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 197  2550 47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 198  2937 28  1  1  2  4  1  1    0    1    0    0    0    0    0    0
## 199   141 25  1  1  3  5  2  1    1    1    0    0    0    0    0    0
## 200  3657 64  2  3  2  1  2  2    0    1    1    0    0    0    0    0
## 201  8445 57  1  1  2  3  1  1    0    1    0    0    0    0    0    0
## 202  2996 48  2  1  3  2  2  1    0    1    0    1    0    0    0    0
## 203  7040 66  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 204  4660 23  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 205  8846 55  1  3  3  1  2  1    0    1    0    0    0    0    0    0
## 206  3780 47  1  1  3  3  1  2    0    1    0    0    0    0    0    0
## 207  8155 25  2  1  1  2  2  2    0    0    0    1    0    0    0    0
## 208  3807 22  1  4  6  3  2  1    0    1    0    0    0    0    0    0
## 209  3383 37  1  4  2  5  2  2    0    0    0    1    0    0    0    0
## 210  7547 42  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 211   717 50  2  1  2  1  1  1    0    1    0    0    1    0    0    0
## 212   934 43  2  1  7  5  2  1    1    0    0    0    0    0    0    0
## 213  1458 45  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 214  2534 38  2  2  1  5  2  2    0    0    0    1    0    0    0    0
## 215  8102 18  1  4  2  3  2  1    0    1    0    1    0    0    0    0
## 216  2102 25  1  1  2  3  2  1    0    1    0    0    0    0    0    0
## 217  6050 25  2  2  2  5  2  1    0    0    0    0    0    0    0    0
## 218   110 34  1  1  1  4  1  1    0    0    0    1    0    0    0    0
## 219  6151 30  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 220  1629 25  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 221  4434 34  1  1  2  1  1  1    0    1    0    1    0    0    0    0
## 222  7915 36  2  1  2  1  2  2    0    1    1    0    0    0    0    1
## 223  5285 37  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 224   316 70  2  3  2  1  2  2    0    0    0    0    0    0    0    1
## 225  6061 51  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 226  1802 26  1  2  2  1  2  1    0    1    0    1    0    0    0    0
## 227  8761 78  2  2  1  1  2  1    0    1    0    0    0    0    0    0
## 228  9412 59  2  1  1  2  1  1    0    0    0    1    0    0    0    0
## 229  2082 28  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 230  1637 64  2  1  1  1  1  2    0    1    0    1    0    0    0    0
## 231   181 16  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 232  7742 30  1  3  6  3  2  1    0    0    0    1    0    0    0    0
## 233  4277 45  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 234  7527 65  1  2  3  1  1  2    0    1    0    0    0    0    0    1
## 235  1439 41  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 236  4197 30  2  1  3  5  1  1    0    1    1    0    0    0    0    0
## 237  1828 50  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 238  1581 27  1  1  3  3  2  2    0    0    0    1    0    0    0    0
## 239  1878 53  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 240  8408 22  2  1  5  3  2  1    0    0    1    0    0    0    0    0
## 241  4630 47  1  2  3  5  2  1    0    1    0    0    0    0    0    0
## 242  7977 19  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 243  8955 27  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 244  7287 26  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 245   677 33  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 246  7590 55  1  1  4  5  2  1    0    0    0    1    0    0    0    0
## 247  8656 27  2  1  5  4  1  1    0    0    1    0    0    0    0    0
## 248  7726 36  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 249  4023 42  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 250  4684 45  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 251  6066 42  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 252  4688 33  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 253  4942 51  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 254  8257 80  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 255  5025 18  1  4  5  3  2  1    0    1    0    0    0    0    0    0
## 256  9181 50  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 257  6316 94  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 258  2109 24  1  2  3  5  2  1    0    1    0    0    0    0    0    0
## 259  3892 25  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 260  2890 51  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 261  4833 23  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 262  8256 16  2  4  4  3  2  2    0    0    0    0    0    0    0    0
## 263   219 22  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 264  8740 53  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 265  6333 30  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 266  1719 20  1  4  3  3  2  1    0    0    0    0    0    0    0    0
## 267  2116 25  1  2  3  1  2  1    0    1    0    1    0    0    0    0
## 268  2002 35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 269  3532 27  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 270  8170 35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 271  1757 26  2  1  1  5  2  1    0    1    0    0    0    0    0    0
## 272  3792 20  1  4  3  5  2  2    0    0    0    1    0    0    0    0
## 273  8243 29  2  4  7  5  1  1    1    0    0    0    0    0    0    0
## 274  4495 65  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 275  7746 17  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 276  1350 24  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 277  8532 48  1  1  3  1  2  1    0    0    0    0    0    0    0    0
## 278  3965 48  1  3  3  1  2  2    0    0    0    1    0    0    0    0
## 279   106 30  1  1  6  5  1  1    0    0    0    1    0    0    0    0
## 280  9131 40  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 281  9134 40  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 282  7188 31  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 283  5979 29  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 284   560 32  1  1  1  1  2  1    0    0    0    1    0    0    0    0
## 285  3602 38  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 286  5013 72  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 287  1063 22  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 288  8664 55  2  2  1  1  1  2    0    1    0    1    0    0    0    0
## 289  7627 32  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 290  3494 27  1  1  3  3  2  1    1    0    0    0    0    0    0    0
## 291  4927 31  2  1  3  5  1  1    0    0    0    1    0    0    0    0
## 292  7100 18  2  4  3  5  2  2    0    0    0    1    0    0    0    0
## 293   682 41  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 294  8375 42  2  2  3  1  2  2    0    0    0    1    0    0    0    0
## 295  8745 61  2  3  1  3  1  2    0    0    0    1    0    0    0    0
## 296  2750 43  2  2  2  3  2  2    0    1    0    0    0    0    0    0
## 297   249 23  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 298  3538 49  2  2  1  1  2  2    0    0    0    1    0    1    0    0
## 299  4403 18  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 300    51 22  2  4  3  5  2  1    0    0    0    0    0    0    0    0
## 301  9274 32  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 302  1298 32  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 303  7140 30  1  1  7  5  2  1    1    1    0    0    0    0    0    0
## 304  6651 45  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 305  6069 17  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 306  6167 42  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 307  7377 48  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 308  7792 42  2  3  1  3  2  2    0    1    0    0    0    0    0    1
## 309  7512 53  1  1  3  1  2  2    0    1    0    0    1    0    0    0
## 310  8395 80  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 311  4390 23  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 312   253 45  1  1  5  4  1  1    0    0    0    1    0    0    0    0
## 313  4616 36  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 314   656 32  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 315  8624 35  1  1  3  1  1  1    0    1    1    0    0    0    0    0
## 316  8903 24  2  1  6  3  2  1    0    1    1    0    0    0    0    0
## 317  7457 43  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 318  7727 49  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 319   796 18  1  4  5  3  2  2    0    0    0    1    0    0    0    0
## 320  6344 61  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 321  1520 60  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 322  4500 35  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 323  3837 43  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 324  7468 42  2  1  6  5  1  1    1    1    0    0    0    0    0    0
## 325  2162 16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 326  6555 30  1  1  4  1  2  2    0    1    0    1    0    0    0    0
## 327  5366 23  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 328  2998 85  2  3  2  4  2  2    0    0    0    0    0    0    0    0
## 329  2436 27  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 330  8620 30  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 331   297 26  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 332  9228 21  1  4  3  5  2  2    0    0    0    0    0    0    0    0
## 333   925 20  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 334  7079 39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 335  7421 57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 336  6451 35  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 337  2213 36  1  1  5  1  2  1    1    0    0    0    0    0    0    0
## 338  3545 25  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 339  5129 30  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 340   805 33  2  1  2  5  1  1    0    0    0    1    0    0    0    0
## 341  4257 33  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 342   474 43  1  1  6  3  2  1    0    1    0    0    0    0    0    0
## 343  8416 20  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 344  8826 20  2  1  6  4  2  2    0    0    0    0    0    0    0    0
## 345  7054 26  1  1  6  3  2  1    0    0    0    1    0    0    0    0
## 346  9161 61  2  2  2  3  2  1    0    1    0    0    0    0    0    0
## 347  2539 90  1  3  2  1  1  2    0    0    0    0    0    0    0    0
## 348  4000 80  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 349  9113 85  2  2  2  5  2  2    0    0    0    1    0    0    0    1
## 350  8920 77  2  3  1  1  1  2    0    1    0    0    0    0    0    0
## 351  7395 24  2  4  3  1  2  1    0    1    0    0    0    0    0    0
## 352  9126 34  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 353  6301 26  2  4  7  4  2  1    1    0    0    0    0    0    0    0
## 354  3951 61  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 355  1085 28  1  2  1  4  2  1    0    0    1    1    0    0    0    0
## 356  1623 26  2  1  6  4  1  1    0    0    0    0    0    0    0    0
## 357  2046 62  2  3  1  2  2  2    0    0    0    0    0    0    0    0
## 358  4531 36  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 359  4198 35  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 360  7345 25  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 361  6894 45  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 362  1722 52  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 363  9152 50  1  4  3  1  2  2    0    1    0    1    0    0    0    0
## 364  9315 72  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 365  9024 18  2  4  3  1  2  2    0    1    0    1    0    0    0    0
## 366  8858 48  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 367  1759 46  1  1  3  5  1  1    0    0    0    1    0    0    0    0
## 368  6107 71  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 369  1505 19  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 370  7558 18  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 371  2681 25  2  1  3  1  1  2    0    0    0    0    0    0    0    0
## 372  7660 24  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 373  1494 48  2  1  1  3  2  1    0    0    0    0    0    0    0    0
## 374  7840 24  2  4  3  3  2  1    0    0    1    0    0    0    0    0
## 375  7253 31  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 376  4441 35  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 377  3205 30  1  1  6  3  1  1    1    0    0    0    0    0    0    0
## 378  4448 22  2  1  5  5  2  1    0    0    0    0    0    0    0    0
## 379  7642 33  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 380  7011 35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 381  3188 62  1  1  1  5  2  2    0    1    0    0    0    0    0    0
## 382  1037 32  2  1  4  1  2  1    0    1    0    0    0    0    0    0
## 383  9345 33  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 384  7263 17  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 385  4209 23  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 386  5647 45  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 387  1374 62  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 388  2755 21  2  4  6  5  2  1    0    1    0    0    0    0    0    0
## 389  4592 22  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 390  6709 29  1  2  3  3  2  2    0    0    0    1    0    0    0    0
## 391  2603 52  1  1  3  3  2  1    0    0    0    0    0    0    0    0
## 392  6855 32  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 393  3760 31  1  4  1  1  1  2    0    1    0    0    0    0    0    0
## 394  3016 87  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 395  8779 60  2  1  1  3  2  1    0    1    0    1    0    0    0    0
## 396  8649 20  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 397  9429 30  2  4  1  3  2  2    0    0    0    1    0    0    0    0
## 398  1368 32  2  1  6  1  2  1    0    0    1    0    0    0    0    0
## 399  2394 40  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 400   814 32  2  1  6  1  2  1    0    0    0    0    0    0    0    0
## 401  8090 45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 402  6219 20  2  4  5  5  2  1    0    0    0    1    0    0    0    0
## 403  5533 58  1  1  5  3  1  1    0    0    0    0    0    0    1    0
## 404  2398 45  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 405  3867 26  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 406  7959 40  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 407  3144 50  1  1  6  1  1  1    0    1    0    1    0    0    0    0
## 408  3809 37  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 409  1177 16  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 410  1594 27  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 411  8930 38  2  3  2  5  2  2    0    1    0    0    0    0    0    0
## 412  4103 72  1  3  3  5  2  2    0    0    0    0    0    0    0    0
## 413     2 29  2  1  7  5  2  1    0    0    0    0    0    0    0    0
## 414  3384 16  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 415   200 62  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 416  6237 20  1  4  5  3  2  1    0    0    0    0    0    0    0    0
## 417  6187 55  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 418  5483 48  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 419  5902 21  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 420  1952 43  1  1  3  1  1  1    0    0    1    0    0    0    0    0
## 421   671 51  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 422  3769 28  1  1  3  4  2  1    0    0    0    1    0    0    0    0
## 423    12 46  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 424  7453 57  2  1  1  2  2  1    0    1    0    1    0    0    0    0
## 425  1341 31  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 426  5219 26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 427  2869 39  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 428  8823 45  1  1  1  1  2  1    0    0    0    1    0    0    0    0
## 429  7293 41  1  1  3  1  1  1    0    1    1    0    0    0    0    0
## 430  3882 31  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 431   532 23  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 432   893 19  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 433  1264 26  2  1  2  3  2  1    0    0    0    0    0    0    0    0
## 434  9177 70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 435  8352 19  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 436  7090 50  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 437  8567 20  2  1  5  3  1  1    0    1    0    0    0    0    0    0
## 438   417 36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 439  8350 29  1  4  7  5  1  1    0    1    0    0    0    0    0    0
## 440  6117 42  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 441  8755 26  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 442  6266 34  2  2  5  4  2  1    0    1    1    0    0    0    0    0
## 443  3324 43  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 444  8364 50  2  3  3  1  2  1    0    0    0    0    0    0    0    0
## 445  4647 36  1  2  1  1  2  2    0    1    0    1    0    0    0    0
## 446  7838 47  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 447  5330 50  1  1  6  1  2  2    0    0    0    1    0    0    0    0
## 448  3128 17  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 449  5763 19  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 450  1278 31  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 451  9053 33  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 452  1123 65  2  2  1  1  2  1    0    1    0    1    0    0    0    0
## 453  8290 30  2  1  3  5  2  2    0    0    0    1    0    0    0    0
## 454  6121 34  1  1  3  1  1  1    1    1    0    0    0    0    0    0
## 455  6763 42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 456  2847 50  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 457  3279 17  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 458  2930 70  2  3  2  1  1  2    0    0    0    1    0    0    0    0
## 459  1396 21  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 460  9082 65  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 461  1004 42  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 462  4729 32  2  1  3  2  1  1    0    0    1    0    0    0    0    0
## 463  7839 50  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 464  2475 60  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 465  8306 28  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 466  6177 16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 467  8927 70  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 468   675 26  2  2  3  4  2  1    0    0    0    0    0    0    0    0
## 469  1223 65  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 470  8396 35  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 471  7535 35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 472  6941 27  2  3  2  3  2  2    0    1    0    0    0    0    0    0
## 473  1818 49  2  1  3  5  1  1    0    0    0    1    0    0    0    0
## 474  7294 19  1  4  2  5  2  1    0    0    0    1    0    0    0    0
## 475  9019 32  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 476  8265 41  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 477  7647 40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 478  6005 27  2  1  5  5  2  1    0    0    0    0    0    0    0    0
## 479  5780 16  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 480  7030 68  2  1  1  3  2  1    0    1    0    1    0    0    0    0
## 481  5002 22  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 482  4946 76  1  1  6  1  1  1    0    0    0    1    0    0    1    0
## 483  2611 33  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 484  9386 26  1  4  6  5  2  1    1    0    0    0    0    0    0    0
## 485  6485 25  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 486  6458 30  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 487  8176 22  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 488  8594 39  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 489  2504 70  2  3  2  3  1  2    0    0    0    0    0    0    0    0
## 490  3319 35  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 491  5243 23  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 492  7319 48  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 493  4016 72  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 494  4196 25  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 495  9331 48  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 496  2596 26  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 497   782 48  2  3  3  5  1  1    0    1    0    0    0    0    0    0
## 498  6884 66  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 499  2987 16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 500  2576 70  2  2  1  3  2  2    0    0    0    0    0    0    0    1
## 501  1296 26  2  2  3  3  2  2    0    1    0    1    0    0    0    0
## 502  8279 34  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 503  1832 25  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 504  8507 18  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 505  6969 23  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 506  5692 18  2  4  3  1  2  2    0    0    1    0    0    0    0    0
## 507  9240 35  2  1  3  4  1  1    0    1    0    0    0    0    0    0
## 508  6655 33  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 509  5337 35  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 510   980 39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 511  2563 60  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 512  5710 32  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 513  6263 51  2  2  3  1  2  1    0    1    0    0    0    0    0    1
## 514   268 30  2  1  7  5  2  1    1    0    0    0    0    0    0    0
## 515  1067 17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 516  3214 57  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 517  6218 23  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 518  8862 25  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 519  3103 30  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 520  6482 53  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 521  4563 68  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 522   689 31  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 523  3163 40  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 524   296 30  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 525  2910 48  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 526  6238 22  1  1  3  5  1  1    0    0    0    1    0    0    0    0
## 527  5347 35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 528  1963 40  2  1  7  2  2  1    0    0    1    0    0    0    0    0
## 529  6497 60  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 530  8643 43  1  1  3  2  2  2    0    1    0    0    0    0    0    0
## 531  9243 21  1  4  1  3  2  1    0    1    0    0    0    0    0    0
## 532  9154 61  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 533   211 30  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 534  6565 34  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 535  2095 30  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 536  5597 25  1  1  2  3  2  1    0    1    0    1    0    0    0    0
## 537  1830 34  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 538  2083 34  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 539  7098 44  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 540  8134 54  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 541   727 40  2  1  6  1  1  1    1    0    0    0    0    0    0    0
## 542   251 30  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 543  1182 37  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 544  1326 25  1  4  6  4  2  1    1    0    0    0    0    0    0    0
## 545   306 23  2  1  5  4  2  1    0    0    0    1    0    0    0    0
## 546  4804 17  1  4  2  3  2  1    0    0    0    1    0    0    0    0
## 547  4427 18  1  4  2  1  2  2    0    1    0    1    0    0    0    0
## 548  7323 39  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 549    88 26  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 550  3693 30  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 551  7458 32  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 552  7165 40  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 553  6685 21  2  2  5  3  2  2    0    0    0    0    0    0    0    0
## 554   828 46  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 555  8716 22  2  4  3  4  2  1    0    0    0    0    0    0    0    0
## 556   377 20  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 557  9052 48  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 558  6501 79  1  3  2  5  2  2    0    0    0    0    0    0    0    0
## 559  2428 25  1  1  1  1  1  1    0    1    0    1    0    0    0    0
## 560  4333 30  2  1  1  5  2  2    0    1    0    0    0    0    0    1
## 561  1701 42  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 562  5601 19  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 563  1114 47  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 564  7524 55  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 565  4508 24  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 566  2560 35  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 567  2644 20  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 568  5683 25  1  4  7  4  2  1    1    1    0    0    0    0    0    0
## 569  9260 82  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 570  9025 23  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 571  8696 29  2  1  2  2  2  2    0    1    0    1    0    0    0    0
## 572  6888 81  2  3  1  3  2  2    0    0    0    0    0    0    0    0
## 573  5204 50  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 574  8844 45  2  1  3  5  2  2    0    0    0    0    0    0    0    1
## 575  8605 51  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 576  6359 46  2  2  3  1  2  2    0    1    0    1    0    0    0    0
## 577  4163 53  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 578  5958 45  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 579  2060 70  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 580  7000 49  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 581  5277 40  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 582  4713 43  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 583  3332 29  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 584  4274 45  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 585  4168 19  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 586  6553 40  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 587  7469 47  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 588  7089 29  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 589   320 35  2  1  3  4  2  1    0    0    1    0    0    0    0    0
## 590  4211 31  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 591  6847 58  1  1  3  4  2  2    0    0    0    1    0    0    0    0
## 592  4973 43  2  2  2  1  2  1    0    1    0    0    0    0    0    0
## 593  2725 28  2  1  6  4  1  1    0    0    0    0    0    0    0    0
## 594  7489 45  2  2  3  5  2  1    0    0    0    1    0    0    0    0
## 595  9265 32  2  1  2  3  2  1    0    0    0    0    0    0    0    0
## 596  8577 20  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 597  6733 27  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 598  2449 80  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 599  5940 49  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 600  2107 20  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 601  2226 47  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 602  5830 60  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 603  8673 72  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 604  4896 30  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 605   709 28  2  1  3  4  2  2    0    1    0    1    0    0    0    0
## 606  6309 26  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 607  5419 28  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 608  7300 35  2  1  3  4  2  2    0    1    0    1    0    0    0    0
## 609  4051 25  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 610    84 57  1  2  6  1  1  1    0    1    0    0    1    0    0    0
## 611  5768 31  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 612  3301 17  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 613  2325 77  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 614  5107 57  1  1  3  1  1  1    1    0    0    0    0    0    0    0
## 615  8348 30  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 616  2659 25  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 617  7501 29  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 618  7440 70  2  3  2  1  2  2    0    1    0    0    0    0    0    1
## 619  3869 32  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 620  9361 35  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 621  4543 75  1  1  1  1  2  1    0    0    0    0    0    0    0    1
## 622  4243 35  2  1  4  2  2  1    1    0    0    0    0    0    0    0
## 623  5755 32  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 624  9376 70  1  3  1  1  2  2    0    1    0    1    0    0    0    0
## 625  9301 55  2  1  6  1  2  1    1    0    0    0    1    0    0    0
## 626  3461 36  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 627  6652 77  2  3  1  1  2  1    0    1    0    0    0    0    0    1
## 628  8697 37  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 629  1304 27  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 630  1644 40  2  2  3  5  1  2    0    1    0    1    0    0    0    0
## 631  7992 54  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 632    70 60  1  1  3  4  1  1    1    0    0    0    0    0    0    0
## 633  4624 29  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 634   630 63  1  1  3  1  2  1    1    0    0    0    0    0    0    0
## 635  1640 42  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 636  6957 49  1  2  3  1  1  1    0    0    0    1    0    0    0    0
## 637  2289 20  2  1  5  3  2  1    0    0    0    0    0    0    0    0
## 638  4306 46  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 639  9032 32  2  4  2  1  2  2    0    1    0    0    0    0    0    0
## 640  2652 37  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 641  8933 30  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 642  3146 62  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 643  7111 38  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 644  5535 41  2  1  3  5  2  1    0    1    0    1    0    0    0    0
## 645  8325 22  2  1  2  5  2  2    0    1    1    0    0    0    0    0
## 646  1897 16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 647  2488 35  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 648  3984 30  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 649  2751 28  2  1  6  5  2  1    1    0    0    0    0    0    0    0
## 650  3683 35  1  1  2  1  1  1    0    1    0    1    0    0    0    0
## 651  7653 17  2  4  5  3  1  2    0    0    0    0    0    0    0    0
## 652  2554 24  1  4  3  4  2  1    0    0    0    1    0    0    0    0
## 653  7252 17  1  4  5  1  2  2    0    1    0    0    0    0    0    0
## 654  5224 65  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 655  4167 27  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 656  1552 38  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 657  4915 27  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 658  2577 49  1  1  5  4  2  1    0    1    0    0    0    0    0    0
## 659  8829 47  2  3  3  1  2  1    0    1    1    0    0    0    0    0
## 660  3353 33  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 661  2493 39  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 662  9163 70  1  2  2  1  2  2    0    1    0    0    0    0    0    0
## 663  3224 23  1  1  5  5  2  1    0    1    0    0    0    0    0    0
## 664    63 39  1  4  3  5  2  1    0    0    1    0    0    0    0    0
## 665  4680 45  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 666  2463 70  2  2  2  2  2  2    0    1    0    0    0    0    0    0
## 667   107 32  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 668  4425 35  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 669  7711 32  1  1  1  4  2  1    0    0    1    0    0    0    0    0
## 670  5600 19  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 671  2256 53  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 672  9448 33  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 673  9304 41  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 674  5275 36  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 675  8323 36  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 676  1649 42  2  1  3  1  1  2    0    1    0    1    0    0    0    0
## 677  8637 58  2  1  3  5  1  1    0    1    0    0    0    0    0    0
## 678  8233 34  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 679  3731 16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 680  6613 75  1  3  1  3  2  2    0    0    0    0    0    0    0    0
## 681  2294 32  2  1  7  3  2  1    1    0    0    0    0    0    0    0
## 682  3277 33  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 683  6157 25  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 684  4974 79  2  3  3  1  2  2    0    0    0    0    0    0    0    1
## 685   158 22  2  4  3  5  2  2    0    1    0    0    0    0    0    0
## 686  2077 61  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 687  1280 77  1  3  2  1  2  1    0    1    0    0    0    0    0    0
## 688  2399 32  2  4  3  1  2  1    0    0    0    1    0    0    0    0
## 689  3676 43  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 690  3381 25  2  2  3  5  2  2    0    1    0    1    0    0    0    0
## 691  7118 21  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 692  2604 41  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 693  6541 29  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 694  1978 43  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 695   173 16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 696  2857 32  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 697  7083 45  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 698  2764 36  2  2  3  5  2  2    0    1    1    0    0    0    0    0
## 699  6800 68  2  3  1  1  2  2    0    1    0    1    0    0    0    1
## 700  1022 38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 701  2769 55  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 702  3343 24  2  1  6  3  2  1    0    0    0    0    0    0    0    0
## 703  8347 33  2  2  7  5  1  1    1    1    0    0    0    0    0    0
## 704  2310 33  1  1  2  1  2  1    0    0    1    1    0    0    0    0
## 705  7028 33  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 706  4402 38  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 707  5110 25  2  1  1  1  2  1    0    0    0    0    0    0    0    0
## 708  2921 62  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 709  4245 47  1  1  3  5  1  2    0    0    0    1    0    0    0    0
## 710  1238 40  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 711   290 39  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 712   450 28  2  1  6  4  2  1    0    0    1    0    0    0    0    0
## 713  3216 38  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 714  7566 40  1  1  1  2  2  1    0    1    0    0    0    0    0    0
## 715  7157 41  1  2  3  1  1  1    0    1    0    1    0    0    0    0
## 716  6304 52  2  1  3  1  1  1    0    1    0    0    1    0    0    0
## 717  5423 49  2  1  6  1  2  1    0    1    0    1    0    0    0    0
## 718   362 52  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 719  4720 37  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 720  6845 19  2  4  5  5  2  1    0    1    0    1    0    0    0    0
## 721  8910 50  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 722  1118 26  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 723  8081 16  2  4  5  5  2  2    0    1    0    0    0    0    0    0
## 724  4621 21  2  4  6  3  2  1    0    1    0    1    0    0    0    0
## 725  2364 42  2  1  3  1  2  1    1    1    0    0    0    0    0    0
## 726  3415 70  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 727  7505 27  1  1  6  1  2  1    0    1    0    1    0    0    0    0
## 728    98 30  2  1  5  5  2  1    0    0    0    1    0    0    0    0
## 729  6264 24  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 730  7131 50  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 731   373 20  1  4  3  5  2  1    1    0    0    0    0    0    0    0
## 732  5864 38  2  4  5  1  1  2    0    1    0    0    0    0    0    0
## 733  6425 68  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 734  3417 16  2  4  2  3  2  2    0    1    0    0    0    0    0    0
## 735  3367 53  1  3  3  1  2  2    0    1    0    1    0    0    0    0
## 736  4315 27  2  1  2  1  2  2    0    1    0    1    0    0    0    0
## 737  2197 27  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 738  8480 55  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 739  2826 42  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 740  6816 40  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 741  3737 40  1  2  3  3  2  1    0    1    0    1    0    0    0    0
## 742  4762 40  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 743  3606 30  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 744  1055 30  2  4  3  1  2  1    0    1    0    0    0    0    0    0
## 745  9322 65  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 746  1799 58  1  3  2  1  1  1    0    1    0    0    0    0    0    0
## 747  6132 40  2  2  3  3  2  1    0    1    0    0    0    1    0    0
## 748  7166 24  1  1  2  1  2  1    1    0    0    0    0    0    0    0
## 749  5632 70  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 750  6807 36  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 751  1158 25  1  4  6  3  1  1    1    0    0    0    0    0    0    0
## 752  6449 67  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 753  4897 39  2  1  1  3  2  2    1    1    0    0    0    0    0    0
## 754  5130 27  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 755  7475 26  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 756  4205 42  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 757  4836 20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 758  8800 25  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 759  3073 23  2  1  3  2  2  2    0    0    0    0    0    0    0    0
## 760  6965 30  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 761  2527 21  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 762  7077 65  2  1  1  2  2  2    0    1    0    1    0    0    0    0
## 763  2552 24  2  1  5  5  2  1    0    1    0    0    0    0    0    0
## 764  4529 44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 765  6983 47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 766  4055 24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 767  7181 39  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 768   902 26  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 769  4350 24  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 770  2740 47  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 771  7621 48  1  1  3  1  1  1    0    0    1    1    0    0    0    0
## 772  4878 50  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 773  7518 35  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 774  7122 55  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 775  4199 31  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 776  4602 37  2  3  1  1  2  2    0    0    0    1    0    0    0    1
## 777  2013 35  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 778  5213 50  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 779  4848 43  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 780  8876 36  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 781  2895 40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 782    28 35  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 783  3964 23  2  4  6  5  2  2    0    0    1    0    0    0    0    0
## 784  3706 28  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 785  7762 47  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 786  7504 31  2  1  3  5  1  2    0    1    0    1    0    0    0    0
## 787  7280 29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 788  7849 22  1  1  3  3  2  1    0    1    1    0    0    0    0    0
## 789  5971 34  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 790  5291 20  1  4  3  1  2  1    0    1    0    0    0    0    0    0
## 791  8777 40  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 792  3485 25  2  1  7  5  2  1    1    1    0    0    0    0    0    0
## 793  7966 26  1  1  2  4  2  1    0    1    0    0    0    0    0    0
## 794  2888 36  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 795  3640 42  2  4  3  5  2  2    0    1    0    0    0    0    0    1
## 796  9136 56  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 797  1409 52  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 798  4480 18  1  4  3  3  1  1    0    1    0    1    0    0    0    0
## 799  4084 32  2  4  3  1  1  1    0    1    0    1    0    0    0    0
## 800  8505 45  1  1  3  1  2  1    1    0    0    0    0    0    0    0
## 801  7184 19  1  1  3  2  2  2    0    1    0    0    0    0    0    0
## 802  7835 50  1  1  2  1  2  2    0    1    0    0    0    0    0    1
## 803   583 35  1  1  3  5  2  1    0    0    1    0    0    0    0    0
## 804  1189 16  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 805  2636 20  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 806  3868 35  2  1  6  4  2  1    0    0    0    1    0    0    0    0
## 807  5635 80  2  3  2  1  1  1    0    0    0    0    0    0    0    0
## 808  1611 34  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 809  7418 17  1  4  3  3  1  2    0    0    0    0    0    0    0    0
## 810  6650 42  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 811  6327 38  2  2  6  5  2  1    0    1    0    0    0    0    0    0
## 812  4284 75  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 813  9296 48  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 814  6030 50  1  1  2  1  2  1    0    1    1    0    0    0    0    0
## 815  5068 70  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 816  2479 30  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 817  7718 28  1  1  6  3  2  2    0    1    0    1    0    0    0    0
## 818   997 51  1  3  5  1  2  2    0    1    0    0    0    0    0    0
## 819  8069 22  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 820  1554 45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 821   559 22  2  2  3  5  2  1    0    0    0    0    0    0    0    0
## 822  2757 18  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 823  3665 43  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 824   505 50  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 825  2464 82  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 826  2239 62  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 827  3663 20  2  4  5  3  2  1    0    0    0    0    0    0    0    0
## 828  8893 48  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 829  3204 48  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 830   694 21  2  1  6  5  2  1    0    0    0    1    0    0    0    0
## 831  4754 18  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 832  6090 43  1  1  6  1  2  1    0    1    1    0    0    0    0    0
## 833  4828 60  2  3  1  5  2  2    0    1    0    0    0    0    0    0
## 834  5616 28  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 835  4025 23  2  1  5  2  2  2    0    1    0    0    0    0    0    0
## 836  1425 33  2  1  3  5  1  1    0    0    1    0    0    0    0    0
## 837  4105 21  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 838  5764 39  2  1  1  1  1  2    0    1    0    0    0    0    0    0
## 839  5716 18  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 840  2383 39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 841  7281 43  2  3  2  1  2  2    0    0    0    0    0    0    1    0
## 842  1403 30  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 843  6966 45  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 844  4544 38  2  4  1  1  2  2    0    0    0    1    0    0    0    0
## 845  1253 69  2  3  1  2  2  2    0    0    0    0    0    0    0    0
## 846  4356 35  2  1  2  1  2  2    0    0    0    0    0    0    0    0
## 847  7427 34  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 848  9071 26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 849   475 25  2  4  6  5  2  1    0    0    0    1    0    0    0    0
## 850  7859 33  2  1  5  4  2  1    1    0    0    0    0    0    0    0
## 851  8804 27  2  1  2  1  1  2    0    1    0    1    0    0    0    0
## 852  5849 21  1  4  5  1  2  1    0    1    0    0    0    0    0    0
## 853  9129 24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 854   370 16  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 855  3436 27  1  4  3  2  2  1    0    0    0    1    0    0    0    0
## 856   958 57  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 857  5229 17  2  4  1  2  2  2    0    1    0    0    0    0    0    0
## 858  3455 82  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 859  5460 25  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 860  3555 19  2  3  3  5  2  1    0    0    1    0    0    0    0    0
## 861  7753 26  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 862  2889 51  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 863  6945 25  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 864  3454 28  2  1  1  3  2  2    0    0    0    1    0    0    0    0
## 865  7869 32  1  1  3  4  2  1    0    0    1    0    0    0    0    0
## 866   763 16  2  4  3  5  2  2    1    0    0    0    0    0    0    0
## 867  4431 47  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 868  4287 17  2  4  2  5  2  2    0    0    0    0    0    0    0    0
## 869  5934 27  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 870  7847 72  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 871  6468 39  2  2  3  3  2  1    0    1    0    1    0    0    0    0
## 872  2481 29  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 873  5252 42  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 874  8839 34  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 875  5817 65  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 876  5804 40  2  1  2  5  2  1    0    0    0    0    0    0    0    0
## 877  1255 40  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 878  6486 20  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 879  6926 30  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 880  5077 44  1  2  2  4  2  2    0    1    0    1    0    0    0    0
## 881  3218 40  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 882  7999 46  1  1  2  5  2  1    0    1    0    1    0    0    0    0
## 883  6397 49  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 884  8327 28  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 885  8609 70  1  3  1  1  2  2    0    1    0    1    0    0    0    0
## 886   179 27  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 887  4619 38  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 888  6566 22  1  4  3  5  2  1    0    1    0    1    0    0    0    0
## 889  9064 20  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 890  2126 16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 891  7932 26  1  4  5  5  2  1    0    0    0    1    0    0    0    0
## 892  3201 17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 893  2148 32  1  1  7  6  1  1    1    0    0    0    0    0    0    0
## 894  2780 40  1  1  1  3  2  2    0    1    0    1    1    0    0    0
## 895  1764 47  1  3  3  1  2  1    0    1    0    0    0    0    0    0
## 896  1195 33  2  2  3  5  2  1    0    1    0    0    0    0    0    0
## 897  1979 41  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 898  6638 20  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 899  8476 26  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 900  2058 32  2  2  2  1  2  1    0    0    0    1    0    0    0    0
## 901  1932 66  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 902  6912 24  2  1  1  3  2  2    0    1    1    0    0    0    0    0
## 903  9048 29  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 904  3992 26  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 905  6794 54  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 906  7749 50  1  2  3  1  1  2    0    1    0    0    0    0    0    0
## 907  7047 50  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 908  7088 27  2  4  3  5  2  1    1    0    0    1    0    0    0    0
## 909  4940 60  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 910  8703 68  1  1  3  2  2  1    0    1    1    0    0    0    0    0
## 911  5458 78  1  2  3  1  2  2    0    1    0    0    0    0    0    0
## 912   274 21  2  4  6  5  2  1    1    1    0    0    0    0    0    0
## 913   848 23  2  2  2  5  2  1    0    0    1    0    0    0    0    0
## 914  6544 19  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 915  8870 28  1  1  1  3  1  2    0    1    0    1    0    0    0    0
## 916  4604 54  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 917  3400 25  1  1  2  1  1  2    0    1    0    1    0    0    0    0
## 918  7978 40  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 919  1324 21  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 920  8934 32  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 921  5227 30  2  1  1  2  2  2    0    1    0    1    0    0    0    0
## 922  2011 20  2  1  1  5  2  2    0    0    0    1    0    0    0    0
## 923  3361 58  1  3  6  1  2  1    0    0    1    0    0    0    0    0
## 924  5798 63  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 925  7368 85  2  2  1  2  2  1    0    1    0    0    0    0    0    0
## 926  7728 45  1  1  1  3  2  1    0    1    0    0    0    0    0    0
## 927  4383 76  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 928  5509 18  2  4  6  1  2  1    0    0    0    0    0    0    0    0
## 929  4464 22  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 930  6615 25  2  4  5  3  2  1    0    1    0    0    0    0    0    0
## 931  3824 40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 932  3337 19  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 933  7914 43  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 934  7589 23  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 935  4707 22  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 936  5156 51  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 937  6272 58  1  1  6  1  1  1    1    1    0    0    0    0    0    0
## 938  2450 45  1  1  1  1  1  2    0    1    0    1    0    0    0    0
## 939  2712 50  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 940   723 20  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 941  8045 78  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 942  1512 24  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 943  6062 38  1  1  6  4  2  1    0    1    0    1    0    0    0    0
## 944  5596 29  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 945  8098 39  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 946  1718 37  2  3  1  1  1  1    0    1    0    0    0    0    0    0
## 947  4488 25  2  1  6  5  2  1    0    1    0    0    0    0    0    0
## 948  6607 18  1  1  2  3  2  1    0    1    0    1    0    0    0    0
## 949  6562 43  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 950  9005 35  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 951  2393 27  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 952  7636 27  1  4  5  4  2  1    0    1    0    0    0    0    0    0
## 953  5338 50  1  3  3  1  2  2    0    1    0    0    0    0    0    0
## 954  3940 27  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 955  4685 30  2  1  6  5  2  1    0    1    0    1    0    0    0    0
## 956  9232 16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 957  7606 39  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 958  3710 46  2  1  1  4  2  1    0    0    0    1    0    0    0    0
## 959  2532 72  2  3  1  5  2  1    0    0    0    0    0    0    0    0
## 960  7225 35  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 961  2965 59  2  3  3  1  1  1    0    0    0    1    0    0    0    0
## 962  8666 73  2  3  2  1  1  1    0    1    0    0    0    0    0    0
## 963  8321 27  2  1  5  5  2  2    0    1    0    0    0    0    0    0
## 964   895 21  1  4  7  3  2  1    1    0    0    0    0    0    0    0
## 965  4302 80  2  3  1  5  2  2    0    1    0    0    0    0    0    0
## 966  7900 16  2  4  3  6  2  2    1    0    0    0    0    0    0    0
## 967  3897 36  2  1  3  5  1  2    0    0    0    1    0    0    0    0
## 968  6419 24  1  1  3  3  2  1    0    1    1    0    0    0    0    0
## 969  2575 63  1  1  2  1  2  1    0    0    0    0    0    0    0    0
## 970   750 26  1  1  3  4  1  1    1    0    0    0    0    0    0    0
## 971   576 49  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 972  1073 17  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 973  2003 75  2  3  3  1  2  1    0    0    0    0    0    0    0    0
## 974  1243 40  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 975   664 24  2  1  6  2  2  1    0    0    0    0    0    0    0    0
## 976  5228 31  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 977  2167 19  1  1  1  3  2  2    0    0    0    1    0    0    0    0
## 978  4496 16  2  4  5  5  2  1    0    1    0    0    0    0    0    0
## 979  5168 35  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 980   257 30  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 981  3942 49  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 982  4753 34  1  1  3  3  2  2    0    0    0    1    0    0    0    0
## 983  7407 37  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 984  5092 70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 985  3905 53  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 986  5662 65  2  2  3  1  2  1    0    1    0    0    0    0    0    1
## 987  9385 34  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 988  8668 48  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 989  5571 24  2  1  3  4  2  2    0    0    0    1    0    0    0    0
## 990  4825 60  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 991  1204 31  2  2  3  2  1  1    0    1    0    0    0    0    0    0
## 992  9023 19  2  4  6  3  2  1    0    0    0    1    0    0    0    0
## 993  8472 66  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 994  8961 45  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 995  7570 36  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 996  3954 59  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 997  7375 34  2  1  3  5  2  1    1    0    0    0    0    0    0    0
## 998  5564 41  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 999  8570 22  2  4  3  4  2  2    0    1    0    0    0    0    0    0
## 1000 2739 20  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1001 4079 44  2  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1002 7276 38  2  2  2  4  2  2    0    0    0    1    0    0    0    0
## 1003 1969 20  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 1004 9125 35  1  2  3  4  2  2    1    0    0    0    0    0    0    0
## 1005 1161 19  1  4  3  3  2  1    0    0    0    0    0    0    0    0
## 1006  969 20  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1007 8359 23  2  1  3  4  1  1    0    0    1    0    0    0    0    0
## 1008 6918 41  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1009 5660 28  1  4  6  1  2  1    0    1    0    0    0    0    0    0
## 1010 1821 32  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1011  887 45  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 1012 8508 40  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1013 7832 26  1  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1014 5215 28  2  1  3  4  2  2    0    1    1    1    0    0    0    0
## 1015  242 30  1  1  5  5  2  1    0    0    0    1    0    0    0    0
## 1016 5417 65  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 1017 1249 24  1  4  5  4  2  1    0    1    0    0    0    0    0    0
## 1018 1917 36  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1019 7388 18  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1020  868 29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1021 6701 68  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1022 5001 60  1  2  2  5  2  1    0    1    0    0    0    0    0    0
## 1023 5513 36  1  2  5  1  2  2    0    1    0    0    0    0    0    0
## 1024 8730 40  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 1025 1106 32  1  4  3  4  2  2    0    0    0    1    0    0    0    0
## 1026 2157 63  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1027 7953 54  2  1  1  3  2  2    0    1    1    0    0    0    0    0
## 1028 1050 25  1  2  6  4  1  1    0    1    0    0    0    0    0    0
## 1029 5484 33  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1030   10 42  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 1031 5217 24  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 1032 2561 19  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1033 6564 23  2  1  1  3  2  2    0    0    0    0    0    0    0    0
## 1034 5733 57  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1035 3981 30  1  1  5  4  1  1    0    1    0    0    0    0    0    0
## 1036 5240 58  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1037 6275 70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1038 5062 51  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1039 7857 30  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1040 4740 29  1  1  5  5  1  1    0    1    0    0    0    0    0    0
## 1041 3354 46  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1042 2334 36  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1043 6003 63  2  3  2  1  2  1    0    1    0    0    0    0    0    0
## 1044 7831 39  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 1045 7697 50  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1046 9031 27  2  2  2  4  2  1    0    0    1    0    0    0    0    0
## 1047 5362 61  2  1  2  5  2  2    0    1    0    0    0    0    0    0
## 1048 2161 24  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1049 7250 30  1  1  3  1  2  1    0    1    0    1    0    1    0    0
## 1050 7676 59  1  1  2  1  2  1    0    1    0    1    0    0    0    1
## 1051 4782 39  2  1  5  2  2  1    0    0    0    1    0    0    0    0
## 1052  921 49  1  1  5  4  2  1    0    1    0    0    0    0    0    0
## 1053 9112 80  2  3  1  1  2  2    0    0    0    1    1    0    0    0
## 1054 3536 69  1  3  8  1  2  1    0    0    0    1    0    0    0    0
## 1055 6915 81  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 1056 3796 50  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1057 8072 28  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1058 6996 64  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1059 1362 30  1  2  2  3  2  2    0    0    0    1    0    0    0    0
## 1060 5709 70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1061 2471 35  2  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1062 6134 20  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1063 3552 44  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1064 1215 40  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1065 6124 56  2  2  1  1  2  1    0    0    0    1    0    0    0    1
## 1066 6591 58  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1067 5739 29  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1068 4520 42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1069  871 16  2  4  3  3  1  2    0    0    0    0    0    0    0    0
## 1070 2314 36  1  1  3  4  2  1    0    1    0    1    0    0    0    0
## 1071 8515 47  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1072 7933 75  2  3  1  3  2  2    0    0    0    0    0    0    0    0
## 1073  383 35  1  1  1  4  2  1    0    0    0    1    0    0    0    0
## 1074  655 16  1  4  3  3  1  2    0    1    0    0    0    0    0    0
## 1075 8990 27  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1076 2825 43  2  2  2  1  1  2    0    1    0    0    0    0    0    0
## 1077 1840 33  1  4  6  5  2  1    1    0    0    0    0    0    0    0
## 1078 5926 34  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1079 2433 29  1  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1080 7648 27  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1081 5271 58  2  3  2  1  2  1    0    0    0    1    0    0    0    0
## 1082 1021 47  2  1  6  1  2  1    0    0    0    0    0    0    0    0
## 1083 9360 32  1  4  3  4  2  2    0    0    0    1    0    0    0    0
## 1084 3479 27  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1085 1646 35  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1086 4657 25  2  4  7  4  2  1    0    1    0    0    0    0    0    0
## 1087 8142 33  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1088 1787 17  1  4  3  4  2  1    0    0    0    0    0    0    0    0
## 1089 8026 41  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1090 6189 39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1091 1918 30  1  1  6  5  2  1    0    1    0    1    0    0    0    0
## 1092 8052 50  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1093 2835 26  1  3  3  5  2  1    0    1    0    1    0    0    0    0
## 1094 3085 68  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 1095 8095 28  1  1  2  1  2  1    0    0    0    1    0    0    0    0
## 1096 2320 23  1  4  3  5  2  1    0    1    0    0    0    0    0    0
## 1097 7557 37  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1098  659 30  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1099 2217 58  2  3  3  1  2  2    0    0    0    1    0    0    0    0
## 1100 9312 70  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1101 2748 30  2  3  2  1  2  1    0    1    0    1    0    0    0    0
## 1102 8420 21  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1103 4877 16  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 1104  594 24  1  1  6  3  2  1    1    0    0    0    0    0    0    0
## 1105 1122 23  1  4  6  4  2  1    0    1    0    1    0    0    0    0
## 1106 4273 40  2  3  2  1  2  2    0    0    0    0    0    0    0    1
## 1107 4717 50  2  1  3  5  1  2    0    0    0    0    0    0    0    0
## 1108 8157 26  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1109 7960 31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1110 3345 52  1  2  1  1  2  2    0    1    0    1    0    0    0    0
## 1111 9434 35  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1112 5231 40  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1113 3087 58  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1114  392 34  1  4  2  5  1  2    0    0    0    1    0    0    0    0
## 1115 2255 24  1  1  3  4  1  1    0    0    1    0    0    0    0    0
## 1116 2721 22  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1117 2138 22  2  1  1  4  2  2    0    1    0    1    0    0    0    0
## 1118 1159 42  2  3  2  4  2  2    0    1    0    0    0    0    0    0
## 1119 2827 34  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1120 7817 17  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 1121 7408 50  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1122 2789 30  1  1  1  5  1  1    1    0    0    0    0    0    0    0
## 1123  492 23  2  1  3  3  1  2    0    0    0    0    0    0    0    0
## 1124 4192 45  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1125 6708 62  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1126 5650 50  1  1  1  4  1  1    0    0    0    1    0    0    0    0
## 1127 2124 46  2  1  3  3  2  1    0    1    0    0    1    0    0    0
## 1128 7600 17  1  4  1  3  2  2    0    1    0    1    0    0    0    0
## 1129 3913 36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1130 1696 18  2  4  7  5  2  2    0    0    0    0    0    0    0    0
## 1131  554 17  2  4  3  5  2  1    1    0    0    0    0    0    0    0
## 1132 6745 65  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1133  798 70  2  3  1  1  2  1    0    1    0    0    0    0    0    0
## 1134  693 46  1  2  3  5  2  2    0    0    0    1    0    0    0    0
## 1135 6743 36  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1136  908 31  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 1137 4155 75  1  3  1  1  1  2    0    0    0    1    0    0    0    0
## 1138 8698 24  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1139 5695 63  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1140 3979 78  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1141 8260 37  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1142 5006 24  1  1  5  1  2  1    0    1    0    1    0    0    0    0
## 1143 6916 23  2  1  6  3  2  2    0    0    0    1    0    0    0    0
## 1144 4301 63  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1145 8937 38  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1146 7910 50  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1147  903 37  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 1148 8384 35  2  1  2  1  2  1    0    0    1    0    0    0    0    0
## 1149 4903 35  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1150 8022 44  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 1151 7442 23  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 1152 7132 21  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1153 9310 37  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1154 8533 33  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1155 8737 42  1  1  3  3  1  2    0    0    0    1    0    0    0    0
## 1156 6780 28  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1157 1914 17  1  4  2  1  2  2    0    0    0    0    0    0    0    0
## 1158 7825 26  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1159 1029 20  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1160 3140 26  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1161 2938 27  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1162 8901 45  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1163 6790 45  1  1  7  1  1  1    1    0    0    1    0    0    0    0
## 1164 8399 39  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1165 7436 40  2  1  1  2  2  1    0    1    0    0    0    0    0    1
## 1166 1598 19  2  1  2  5  2  2    0    0    1    0    0    0    0    0
## 1167 7562 27  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1168 8836 21  2  4  5  5  2  1    0    0    0    1    0    0    0    0
## 1169 9141 16  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1170  175 45  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1171 5956 20  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1172 5357 63  2  3  1  4  2  1    0    1    0    0    0    0    0    0
## 1173 3111 40  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 1174 2687 25  2  1  3  4  2  1    0    0    0    0    0    0    0    0
## 1175 9117 18  2  1  3  2  2  2    0    0    0    1    0    0    0    0
## 1176 7012 42  1  1  5  1  2  1    1    1    0    0    0    0    0    0
## 1177 2038 37  2  1  2  3  2  2    0    0    1    0    0    0    0    0
## 1178 7484 41  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1179 8856 22  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1180 2472 40  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1181 6636 96  2  3  1  5  2  2    0    0    0    0    0    0    0    0
## 1182 5689 46  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1183 7863 30  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1184 8167 20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1185  801 25  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1186 8921 28  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1187 6491 42  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1188 6851 32  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1189 6992 27  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 1190 2407 38  1  1  1  3  2  1    0    1    0    1    0    0    0    0
## 1191  359 56  1  3  3  2  2  1    0    1    0    0    0    0    0    0
## 1192 5871 44  1  2  2  5  2  1    0    1    0    0    0    0    0    0
## 1193 5361 60  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1194 6835 42  2  2  3  4  2  1    0    1    0    1    0    1    0    0
## 1195   91 26  2  1  5  1  2  1    0    0    0    0    0    0    0    0
## 1196 5988 59  2  2  3  3  2  2    0    1    0    0    0    0    0    0
## 1197 1575 24  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1198 4364 57  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1199 3029 55  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1200 8759 17  1  4  5  1  2  2    0    1    0    0    0    0    0    0
## 1201 8633 40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1202  736 26  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1203 9085 34  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1204 1446 36  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1205 3059 31  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1206 5604 20  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1207 1104 31  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1208 8439 22  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1209 1036 40  2  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1210 1922 24  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1211 9285 27  2  1  3  4  2  1    1    0    0    0    0    0    0    0
## 1212 3130 35  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1213 2009 62  2  3  1  5  1  2    0    0    0    0    0    0    0    0
## 1214 7163 26  2  1  6  1  2  2    0    1    0    0    0    0    0    0
## 1215 2696 25  2  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1216 2519 52  1  1  2  5  2  2    0    1    0    0    0    0    0    0
## 1217 3572 70  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1218 5331 38  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1219 2529 44  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1220 2036 32  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1221 4469 29  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1222 7485 17  1  4  2  3  2  2    0    1    0    0    0    0    0    0
## 1223 6830 28  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1224 6179 72  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1225 6677 58  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1226 4859 41  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1227 5917 32  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1228 1807 51  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1229 5237 19  1  4  3  1  2  1    0    1    0    1    0    0    0    0
## 1230 5456 40  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1231  845 45  1  1  3  5  2  1    1    0    0    0    0    0    0    0
## 1232 2262 31  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1233 4662 34  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1234 3761 27  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1235 6631 25  2  2  3  4  1  1    0    1    0    0    0    0    0    0
## 1236 1651 36  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1237 2724 20  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1238 7433 74  1  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1239  701 27  2  1  4  1  2  1    0    0    0    0    0    0    0    0
## 1240 8717 25  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1241 4036 56  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1242  901 25  2  1  1  3  2  2    0    0    0    1    0    0    0    0
## 1243 1378 29  2  1  5  3  2  1    0    0    0    0    0    0    0    0
## 1244 5435 25  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1245 3173 49  2  1  2  3  2  2    0    1    0    0    0    1    0    0
## 1246 3129 16  1  4  2  3  2  2    0    0    0    0    0    0    0    0
## 1247 6459 54  2  1  3  5  2  1    1    0    0    0    1    0    0    0
## 1248 3083 50  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1249 7592 16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1250 9392 34  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1251 1596 31  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1252 3741 45  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1253  512 17  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1254 4030 54  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1255 7374 29  1  1  6  4  1  1    0    0    0    1    0    0    0    0
## 1256 2635 23  1  4  5  5  1  1    1    0    0    0    0    0    0    0
## 1257 8235 38  2  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1258  872 46  1  1  5  1  2  1    0    0    1    0    0    0    0    0
## 1259 1383 26  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1260 4440 23  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1261 3020 38  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1262 4510 34  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1263 3155 73  2  3  1  1  1  1    0    1    0    0    0    0    0    0
## 1264 3564 50  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1265 1291 17  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1266 1198 82  1  1  4  1  2  1    0    0    0    0    0    0    1    0
## 1267 3450 54  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1268 1958 51  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1269 5122 17  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1270 5983 53  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 1271  690 29  2  1  3  5  1  2    0    1    0    0    0    0    0    0
## 1272 5542 27  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1273 3977 38  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1274 5383 49  2  3  3  3  2  2    0    1    0    0    0    0    0    1
## 1275 1831 23  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1276 5455 33  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1277 8583 50  2  2  1  1  2  2    0    1    0    1    0    0    0    0
## 1278 2269 70  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1279 7532 43  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1280 9200 32  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1281 7884 19  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1282  232 29  1  1  6  5  2  1    1    0    0    0    0    0    0    0
## 1283 7918 28  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1284 1770 55  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1285 1188 38  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1286 8473 76  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 1287 1907 27  2  1  6  5  1  1    0    1    0    0    0    0    0    0
## 1288 5586 28  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1289 1372 30  1  1  6  3  1  1    1    1    0    0    0    0    0    0
## 1290 8064 31  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1291 7321 46  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1292 3209 63  1  2  1  3  2  2    0    1    0    0    0    0    0    0
## 1293 2285 25  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1294   58 33  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1295   27 26  1  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1296 1155 28  1  1  5  1  2  1    0    0    1    0    0    0    0    0
## 1297 3773 51  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1298 8544 29  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1299 8291 38  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1300 2424 20  1  4  3  5  2  1    0    1    0    1    0    0    0    0
## 1301 8756 68  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1302 8524 43  2  1  4  1  2  1    0    1    0    0    0    0    0    0
## 1303 6384 21  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1304 2235 45  2  2  3  5  2  2    0    1    0    0    0    0    0    0
## 1305 5556 49  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1306 7809 48  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1307 5929 60  1  4  1  5  2  2    0    1    0    0    0    0    0    0
## 1308 7996 64  2  3  1  2  2  2    0    0    0    1    0    0    0    0
## 1309 5812 17  1  4  2  4  2  2    0    0    0    1    0    0    0    0
## 1310 1288 20  2  2  1  3  2  1    0    0    0    1    0    0    0    0
## 1311  125 28  2  4  7  5  2  1    0    0    0    0    0    0    0    0
## 1312  799 38  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1313 2042 21  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1314 9358 18  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1315    5 28  2  4  3  3  1  1    0    1    0    0    0    0    0    0
## 1316 2944 32  2  1  1  4  2  2    0    1    0    0    0    0    0    0
## 1317 8938 30  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 1318 4580 19  1  4  3  1  2  1    0    0    0    1    0    0    0    0
## 1319 5067 17  2  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1320 8943 49  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1321  972 65  2  2  3  2  2  2    0    1    0    0    0    0    0    0
## 1322 9302 30  1  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1323 3362 22  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1324 1780 27  2  4  2  3  2  2    0    0    0    1    0    0    0    0
## 1325  156 24  1  4  7  5  2  1    0    0    0    0    0    0    0    0
## 1326 1339 20  2  4  6  4  2  1    1    0    0    0    0    0    0    0
## 1327 6635 36  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 1328 5208 45  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1329 5166 35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1330 3242 75  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1331 7507 28  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1332 8939 28  1  1  1  5  2  1    0    1    0    0    0    0    0    0
## 1333 5158 61  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1334 2914 26  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1335 2021 56  1  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1336 2483 24  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1337 4731 36  2  1  3  5  1  1    0    1    0    0    0    1    0    0
## 1338  183 34  1  4  2  5  2  1    1    0    0    0    0    0    0    0
## 1339 1200 24  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1340 2872 63  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 1341 6155 37  1  1  1  5  2  1    0    1    0    1    0    0    0    0
## 1342 1293 33  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1343 7764 50  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1344 9093 67  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1345 4015 26  1  1  6  2  2  1    0    1    1    0    0    0    0    0
## 1346  792 21  2  4  3  4  2  1    0    0    0    0    0    0    0    0
## 1347 2972 30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1348 2421 52  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1349 3018 26  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1350 5573 40  2  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1351 1839 59  2  2  2  4  1  1    0    0    0    0    0    0    0    0
## 1352 5037 88  2  3  1  5  2  2    0    0    0    0    0    0    0    1
## 1353 5685 53  1  1  2  1  1  1    0    1    0    0    0    0    0    0
## 1354 5526 49  2  3  3  1  2  1    0    0    0    0    0    0    0    1
## 1355 7887 30  2  1  3  5  1  2    0    1    0    1    0    0    0    0
## 1356 7356 41  1  2  1  1  1  2    0    0    0    1    0    0    0    0
## 1357 2010 56  1  4  3  5  2  2    0    1    0    0    0    0    0    0
## 1358 7679 19  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 1359 2624 22  2  4  3  5  2  2    0    0    0    1    0    0    0    0
## 1360 4664 56  2  3  2  5  2  1    0    1    0    0    0    0    0    0
## 1361 5479 24  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1362  731 26  2  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1363 1033 24  2  2  3  5  2  1    0    1    0    1    0    0    0    0
## 1364 4629 65  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1365 6281 18  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 1366 1207 60  2  3  3  5  1  1    0    0    1    0    0    0    0    0
## 1367 3960 24  1  4  3  5  2  2    0    0    0    1    0    0    0    0
## 1368 7070 45  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1369 8464 26  2  1  3  4  1  2    0    0    0    1    0    0    0    0
## 1370 6814 22  2  1  6  3  2  2    0    1    1    1    0    0    0    0
## 1371  702 29  2  4  1  1  2  1    0    0    0    0    0    0    0    0
## 1372  865 36  1  1  3  5  1  1    0    0    1    0    0    0    0    0
## 1373 2699 22  1  4  3  1  2  1    0    1    0    1    0    0    0    0
## 1374 3561 71  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1375 8733 65  2  3  1  1  2  2    0    1    0    1    0    0    0    0
## 1376 8475 40  2  2  3  2  2  1    0    0    0    0    0    0    0    0
## 1377 1572 33  1  1  6  1  1  2    0    1    0    0    0    0    0    0
## 1378 5967 36  1  1  5  4  2  1    1    1    0    0    0    0    0    0
## 1379 6067 45  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1380 4410 32  2  1  2  2  2  1    0    1    0    0    0    0    0    0
## 1381 3226 33  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1382 4895 38  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1383 2402 28  1  4  3  3  2  1    0    1    1    0    0    0    0    0
## 1384 4378 31  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1385  374 22  1  4  3  3  2  1    1    0    0    0    0    0    0    0
## 1386 3707 40  2  1  3  5  2  1    0    0    1    0    0    0    0    0
## 1387 1618 19  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1388 4419 43  2  1  3  2  1  1    0    1    0    0    0    0    0    0
## 1389 4525 28  2  3  1  4  2  1    0    0    0    1    0    0    0    0
## 1390  423 17  1  4  4  3  2  1    0    0    0    1    0    0    0    0
## 1391 4075 29  1  1  6  4  2  2    0    1    0    1    0    0    0    0
## 1392 8911 83  1  1  3  1  2  1    0    0    0    0    0    0    0    0
## 1393 1334 30  1  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1394 3800 42  2  2  3  1  2  2    0    1    0    0    0    0    0    0
## 1395 4171 18  2  4  2  4  2  1    0    0    0    1    0    0    0    0
## 1396 2509 16  1  4  3  3  2  2    0    0    0    1    0    0    0    0
## 1397 3491 46  1  1  3  1  2  1    1    1    0    0    0    0    0    0
## 1398 8043 48  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1399 6990 45  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1400 7551 30  2  1  3  2  2  1    0    0    1    0    0    0    0    0
## 1401 8985 27  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1402 6465 28  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1403 4810 45  2  1  3  3  1  2    0    0    0    1    0    0    0    0
## 1404 5164 42  1  1  7  1  2  1    1    0    0    0    0    0    0    0
## 1405 1678 70  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1406 9211 45  1  1  3  4  1  1    0    1    0    1    0    0    0    0
## 1407 7594 70  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1408 1295 26  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1409 1936 51  1  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1410 8584 52  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1411 3047 25  1  1  5  1  2  1    0    1    0    0    0    0    0    0
## 1412 8560 56  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1413 8492 22  2  1  1  2  2  2    0    0    0    0    0    0    0    0
## 1414 1781 19  1  4  2  5  2  1    0    1    0    1    0    0    0    0
## 1415 7801 58  1  1  2  4  2  1    0    1    0    0    0    0    0    0
## 1416 1965 60  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1417 2345 34  2  1  1  1  1  1    0    1    0    0    0    0    0    0
## 1418 5305 42  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1419 2797 43  2  2  1  1  2  2    0    0    0    1    0    0    0    0
## 1420 8161 49  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1421 6372 50  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1422 8807 71  2  3  1  1  2  2    0    1    0    1    0    0    0    1
## 1423 9396 58  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1424 8488 40  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1425  343 19  2  4  6  5  1  1    0    1    0    0    0    0    0    0
## 1426 3360 38  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1427 7056 60  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1428 3575 31  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1429 7935 43  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1430 8557 19  2  4  1  1  2  2    0    1    0    0    0    0    0    0
## 1431 4484 30  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 1432  348 16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1433 2087 36  1  1  6  1  1  1    0    0    0    1    0    0    0    0
## 1434 1422 16  2  4  2  4  2  2    0    0    0    0    0    0    0    0
## 1435  767 60  2  2  2  5  1  2    0    0    0    0    0    0    0    0
## 1436 3298 63  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1437 4297 29  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1438 7848 25  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1439 5365 35  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1440 8881 65  1  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1441 2950 30  2  1  1  5  2  1    0    0    0    1    0    0    0    0
## 1442 4293 64  1  2  3  5  2  1    1    0    0    0    0    0    0    0
## 1443 8374 34  2  2  3  1  1  1    0    1    0    1    0    0    0    0
## 1444 4902 38  2  4  3  4  1  1    0    0    1    0    0    0    0    0
## 1445   92 44  1  1  2  1  2  1    0    0    0    0    0    0    0    0
## 1446 6403 38  2  1  1  3  2  2    0    1    0    1    0    0    0    1
## 1447 6233 36  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1448 6072 63  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1449 5748 40  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1450 2166 29  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1451 7851 28  2  1  3  3  2  2    0    0    0    0    0    0    0    1
## 1452 6818 43  1  1  7  5  2  1    1    1    0    0    0    0    0    0
## 1453 1495 30  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1454 7392 40  1  1  3  1  2  1    1    1    0    1    0    0    0    0
## 1455 7927 50  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1456 6379 55  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1457 9430 35  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1458 9425 23  1  1  5  4  2  1    0    1    1    0    0    0    0    0
## 1459 4655 33  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1460  105 55  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1461 8402 62  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1462 8625 38  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1463 6716 63  1  1  3  1  2  1    0    1    0    0    1    0    0    0
## 1464 9166 58  1  1  4  5  2  1    1    1    0    0    0    0    0    0
## 1465 7906 20  1  4  3  3  2  1    0    1    0    1    0    0    0    0
## 1466 5913 45  1  1  5  5  2  2    0    1    0    1    0    0    0    0
## 1467 7662 37  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1468 5862 20  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1469 6852 52  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1470 6859 47  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1471 4212 72  1  1  1  1  2  2    0    1    0    0    0    0    0    1
## 1472 8974 45  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1473 1332 43  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1474  375 23  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1475 8762 36  2  1  1  5  2  2    0    1    0    1    0    0    0    0
## 1476 3790 31  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1477 1392 36  2  4  3  4  2  1    0    1    0    1    0    0    0    0
## 1478 6064 48  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1479 1336 27  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1480 1553 58  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1481 3013 17  1  4  6  3  2  2    0    0    0    1    0    0    0    0
## 1482 1891 42  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1483 2787 23  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1484 4381 35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1485 1172 51  1  1  6  1  1  1    1    0    0    0    0    0    0    0
## 1486 4809 50  2  3  1  2  2  1    0    0    0    0    0    0    0    0
## 1487  555 22  2  2  1  5  2  1    0    0    0    0    0    0    0    0
## 1488 8519 23  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1489 5053 33  2  4  3  4  2  1    0    1    0    0    0    0    0    0
## 1490 2309 70  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 1491 4393 48  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1492 6519 23  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1493  600 30  1  1  3  4  1  1    1    1    0    0    0    0    0    0
## 1494 6784 29  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1495 3591 52  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1496 9115 64  1  3  3  1  2  2    0    1    0    1    0    0    0    1
## 1497  279 23  2  2  6  4  2  1    0    0    1    0    0    0    0    0
## 1498 6571 25  2  4  3  4  2  2    0    0    1    0    0    0    0    0
## 1499 6373 21  1  1  5  3  2  1    0    0    0    1    0    0    0    0
## 1500 5029 41  1  1  7  1  2  1    1    1    1    0    0    1    0    0
## 1501 1943 44  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1502 7340 28  2  3  2  3  2  2    0    0    0    0    0    0    0    0
## 1503 3685 53  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 1504  961 83  1  3  2  1  2  2    0    0    0    0    1    0    0    0
## 1505 3751 49  2  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1506 6380 55  1  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1507 6861 48  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1508 5765 32  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1509 3849 69  1  2  3  1  2  1    0    0    0    1    0    0    0    0
## 1510 4577 25  1  1  5  5  2  2    0    1    0    1    0    0    0    0
## 1511 7614 35  2  1  3  3  2  1    0    1    1    0    0    0    0    0
## 1512 4627 70  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1513 1487 22  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 1514 2816 35  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1515 8980 52  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1516 3331 20  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1517 4576 47  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1518 2319 44  2  1  3  5  1  2    0    0    0    0    0    0    0    0
## 1519  278 40  2  3  5  1  1  1    0    1    0    0    0    0    0    0
## 1520 3801 26  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1521 4115 36  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1522 7283 52  2  1  5  1  1  1    0    0    1    0    0    0    0    0
## 1523 5299 35  1  1  3  3  1  1    0    1    0    1    0    0    0    0
## 1524  957 35  1  1  3  1  2  1    0    1    1    1    0    0    0    0
## 1525 4013 39  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1526 5807 40  1  1  6  1  2  1    0    1    1    0    1    0    0    0
## 1527 4281 76  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1528 2522 60  1  1  2  1  2  2    0    1    0    0    0    0    0    0
## 1529  164 23  1  4  7  4  2  1    0    0    0    0    0    0    0    0
## 1530 8448 63  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1531 5115 75  2  2  1  5  2  1    0    1    0    0    0    0    0    0
## 1532 9218 23  2  4  3  5  2  1    0    0    0    1    0    0    0    0
## 1533 5592 22  2  1  2  4  2  2    0    1    0    0    0    0    0    0
## 1534 6530 22  1  4  3  4  2  1    0    1    0    1    0    0    0    0
## 1535 2821 26  1  1  3  4  2  2    0    1    0    0    0    0    0    0
## 1536 3768 34  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1537 3647 32  1  1  4  3  1  2    0    1    0    0    0    0    0    0
## 1538 8356 46  2  1  2  2  2  2    0    1    0    1    0    0    0    0
## 1539 7624 31  1  1  4  1  2  1    0    1    0    1    0    0    0    0
## 1540 2266 24  1  4  1  5  2  1    0    1    0    0    0    0    0    0
## 1541 1142 42  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1542 2678 24  2  1  3  4  2  2    0    0    0    0    0    0    0    0
## 1543 6577 16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1544 5751 59  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1545 4129 26  1  4  6  3  2  2    0    0    0    0    0    0    0    0
## 1546 6667 70  1  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1547 1898 34  2  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1548 5999 25  1  4  6  4  2  1    0    0    1    0    0    0    0    0
## 1549 2308 39  2  3  2  2  2  2    0    0    0    1    0    0    0    0
## 1550 1856 35  2  2  3  4  1  2    0    1    0    0    0    0    0    0
## 1551 6964 48  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1552 1103 21  1  4  6  5  2  1    0    1    0    1    0    0    0    0
## 1553 2286 16  1  4  2  3  2  1    0    1    0    1    0    0    0    0
## 1554  486 23  2  4  3  5  2  1    0    0    1    0    0    0    0    0
## 1555 7254 17  1  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1556 6335 30  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1557 6227 26  2  4  6  5  2  2    0    1    0    0    0    0    0    0
## 1558 6974 39  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1559 2637 36  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1560 2053 63  2  3  1  1  2  2    0    1    1    0    0    0    0    0
## 1561 9387 71  2  3  3  3  2  1    0    1    0    0    0    0    0    0
## 1562 4483 52  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1563 3563 32  2  3  3  5  2  1    0    1    0    0    0    0    0    0
## 1564 2715 38  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1565 2125 45  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1566 2133 42  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1567 3730 47  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1568 6250 65  2  3  1  1  1  2    0    0    0    0    0    0    0    0
## 1569 4591 25  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1570 5315 26  1  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1571 2030 22  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1572 4329 47  2  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1573 2498 35  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1574 5942 42  2  2  1  5  2  1    0    0    0    1    0    0    0    0
## 1575 4190 47  2  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1576 6416 50  1  1  1  1  1  2    0    1    0    0    0    0    0    0
## 1577 5218 52  1  2  2  1  1  2    0    1    0    0    0    0    0    0
## 1578 7174 19  1  4  6  1  2  1    0    0    0    1    0    0    0    0
## 1579 4523 23  1  4  3  3  1  1    0    1    0    0    0    0    0    0
## 1580 9176 75  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1581 3391 39  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1582 8550 45  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1583 4444 34  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1584 4472 27  1  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1585 3510 34  1  1  3  5  1  1    0    1    0    1    0    0    0    0
## 1586 3185 41  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1587 3377 22  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 1588 7853 38  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1589  522 32  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1590 4463 60  1  3  2  1  2  1    0    1    0    0    0    0    0    0
## 1591 5560 38  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1592 2236 28  1  1  3  5  2  2    0    1    0    0    0    0    0    0
## 1593 7471 35  2  1  6  5  1  1    0    1    0    0    0    0    0    0
## 1594 1110 18  2  1  2  1  2  2    0    0    0    1    0    0    0    0
## 1595 3651 28  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1596 6149 20  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1597 9133 60  2  3  3  1  2  1    0    0    0    1    0    0    0    0
## 1598 5924 23  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1599 7706 35  2  1  3  5  2  2    0    1    0    1    0    0    0    0
## 1600 1584 26  1  1  6  5  2  1    0    0    1    0    0    0    0    0
## 1601 5717 24  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1602 9029 39  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 1603 6332 19  2  1  2  4  2  2    0    0    1    0    0    0    0    0
## 1604 7361 19  1  4  5  3  2  2    0    0    0    0    0    0    0    0
## 1605 8050 32  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1606 1460 37  2  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1607  930 37  1  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1608  344 53  2  3  3  1  2  2    0    1    0    0    0    0    0    0
## 1609 8214 19  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1610  186 28  2  4  3  4  2  1    1    0    0    0    0    0    0    0
## 1611 1079 25  2  4  7  4  2  1    0    1    0    0    0    0    0    0
## 1612 8092 32  2  2  3  4  2  1    0    1    0    0    0    0    0    0
## 1613 7799 45  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1614 8758 17  1  1  1  5  2  1    0    0    0    1    0    0    0    0
## 1615 1181 32  2  1  3  1  2  1    0    1    1    0    0    0    0    0
## 1616 4161 31  2  4  3  3  2  2    0    0    0    1    0    0    0    0
## 1617  484 18  2  4  5  3  2  1    0    0    0    1    0    0    0    0
## 1618 4285 17  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1619 8299 38  2  1  2  5  2  2    0    1    0    1    0    0    0    0
## 1620 8456 42  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1621 4938 42  1  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1622 6521 30  2  3  3  1  2  1    0    1    0    1    0    0    0    0
## 1623 2759 86  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1624 8442 30  2  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1625 8667 35  1  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1626 6477 32  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1627 7744 45  2  3  2  1  2  2    0    0    0    1    0    0    0    0
## 1628 4328 26  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1629 7217 38  2  1  3  1  2  2    1    1    0    0    0    0    0    0
## 1630 1751 21  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1631 9417 28  1  1  1  4  2  2    0    0    0    1    0    0    0    0
## 1632  542 35  2  1  3  5  1  1    0    0    0    0    0    0    0    0
## 1633 4907 23  2  1  5  1  1  2    0    0    0    1    0    0    0    0
## 1634 5789 29  2  1  1  3  1  2    0    1    0    1    0    0    0    0
## 1635 6128 25  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1636 3493 40  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1637 8537 25  2  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1638 6195 70  1  1  1  1  2  2    0    1    0    1    0    0    0    0
## 1639 1766 26  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1640  962 41  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1641 1736 29  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1642 6535 25  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1643  524 62  1  1  3  5  1  1    0    1    0    0    0    0    0    0
## 1644 2080 32  2  4  3  5  2  1    0    1    0    1    0    0    0    0
## 1645 8403 26  2  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1646 2836 16  2  3  2  3  2  2    0    1    0    1    0    0    0    0
## 1647 8002 26  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1648 4950 25  2  1  6  3  1  2    0    1    0    0    0    0    0    0
## 1649 1518 23  2  1  7  3  2  1    0    0    0    0    0    0    0    0
## 1650 7947 33  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1651 4182 52  1  1  2  1  2  2    0    1    0    1    0    0    0    0
## 1652 4830 27  2  1  6  5  2  1    0    0    0    0    0    0    0    0
## 1653 2618 73  2  3  1  3  2  1    0    0    1    0    0    0    0    0
## 1654 2247 26  1  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1655 1318 20  2  4  3  4  2  1    1    1    0    0    0    0    0    0
## 1656 1381 38  1  1  5  1  2  1    1    0    0    0    0    0    0    0
## 1657  586 25  1  1  7  5  2  1    0    0    0    0    0    0    0    0
## 1658 2977 26  2  1  6  4  2  1    0    1    0    0    0    0    0    0
## 1659 5823 39  1  1  2  5  2  1    0    1    0    1    0    0    0    0
## 1660 1435 40  1  1  1  3  2  2    0    1    0    0    0    0    0    0
## 1661 4027 65  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1662 6236 20  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1663  672 47  1  1  3  5  1  1    0    1    0    1    0    0    0    0
## 1664 8704 40  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1665 9327 25  1  4  6  3  1  1    0    0    0    0    0    0    0    0
## 1666 8338 31  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1667  504 37  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1668 2625 19  1  4  2  5  2  1    0    1    0    0    0    0    0    0
## 1669 9421 65  2  1  1  2  2  1    0    1    0    0    0    0    0    0
## 1670 9411 59  1  1  1  1  1  1    0    0    0    1    0    0    0    0
## 1671 1322 18  1  4  5  5  2  1    0    0    0    0    0    0    0    0
## 1672  873 30  2  2  3  4  2  2    0    1    0    1    0    0    0    0
## 1673  877 23  2  4  6  3  2  2    0    1    0    0    0    0    0    0
## 1674  134 24  1  1  3  4  2  1    1    0    0    0    0    0    0    0
## 1675 4486 45  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1676 2941 53  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1677  830 29  2  1  3  4  1  1    0    1    0    0    0    0    0    0
## 1678  213 26  1  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1679 1163 21  1  4  5  3  2  1    0    0    1    0    0    0    0    0
## 1680 9344 34  1  1  3  1  2  2    0    0    1    0    0    0    0    0
## 1681  471 36  1  1  3  4  2  1    0    0    1    1    0    0    0    0
## 1682 1323 39  2  2  7  1  2  1    0    1    0    0    0    0    0    0
## 1683 8451 18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1684 2871 41  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1685 1329 34  1  1  2  1  1  1    0    0    0    1    0    0    0    0
## 1686 6258 45  2  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1687 8240 42  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1688 4309 40  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1689 9337 32  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1690 3422 44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1691 8914 28  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1692 7057 80  2  3  1  1  1  2    0    1    0    0    0    0    0    1
## 1693  856 57  2  1  1  3  2  2    0    1    0    1    0    0    0    0
## 1694 7898 40  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1695 8017 40  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 1696  993 30  2  1  2  3  1  1    0    1    0    1    0    0    0    0
## 1697 1456 80  2  3  1  5  2  1    0    0    0    0    0    0    0    0
## 1698 8530 70  2  3  2  1  1  2    0    1    0    0    0    0    0    0
## 1699 8249 74  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1700 8784 30  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1701 4944 45  2  3  1  4  2  2    0    1    0    1    0    0    0    0
## 1702 6405 70  1  1  1  1  1  1    0    0    0    1    0    0    0    0
## 1703 7541 40  2  1  6  1  2  1    0    0    0    1    0    0    0    0
## 1704  333 40  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1705 2653 32  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1706 8042 36  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1707 7102 39  1  1  3  4  2  1    0    1    0    1    0    0    0    0
## 1708 3986 21  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1709 7607 58  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1710 5324 24  1  1  3  3  2  1    0    0    1    1    0    0    0    0
## 1711 4645 42  2  2  5  1  2  1    0    1    0    0    0    0    0    0
## 1712 3252 40  2  1  1  3  2  1    0    1    0    0    0    0    0    0
## 1713 9067 68  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1714 3290 42  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 1715 1090 17  2  1  2  5  2  2    0    0    0    0    0    0    0    0
## 1716 8200 50  1  1  1  1  2  1    0    1    0    0    0    0    0    0
## 1717 5653 60  2  2  1  1  2  1    0    0    0    0    0    0    0    0
## 1718 7286 38  2  2  3  4  2  1    0    1    0    0    0    0    0    0
## 1719 4991 44  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1720 3637 51  2  2  3  1  1  1    0    1    0    0    0    0    0    0
## 1721 2843 42  2  1  2  5  2  1    0    1    0    0    0    0    0    0
## 1722 6296 76  1  3  2  1  2  1    0    1    0    0    0    0    0    1
## 1723 4989 45  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1724   80 43  2  4  3  1  1  1    0    1    0    0    0    0    0    0
## 1725 6777 24  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1726 7391 78  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1727 4721 45  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1728 7938 17  2  1  2  3  2  2    0    0    0    1    0    0    0    0
## 1729 6753 73  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1730 4375 47  1  1  3  5  2  1    0    1    0    1    0    0    0    0
## 1731 8897 39  2  2  3  1  2  1    0    1    1    1    0    0    0    0
## 1732 3608 43  2  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1733 4608 35  2  1  3  2  2  2    0    1    0    1    0    0    0    0
## 1734 7364 47  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1735 5754 22  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1736 1872 18  1  4  3  5  2  1    0    0    0    0    0    0    0    0
## 1737 6401 22  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1738 5727 46  2  4  2  5  2  2    0    1    0    0    0    0    0    0
## 1739 5087 49  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1740 9444 21  1  4  5  5  2  1    0    1    0    1    0    0    0    0
## 1741 3744 38  2  1  2  3  2  1    0    1    0    1    0    0    0    0
## 1742 2430 90  1  3  1  1  1  2    0    1    0    0    0    0    0    0
## 1743 4539 17  2  1  3  5  1  2    0    1    0    0    0    0    0    0
## 1744  214 28  2  4  6  5  2  1    0    1    0    0    0    0    0    0
## 1745 5555 43  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1746  609 19  2  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1747 4509 27  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1748 5950 60  2  3  2  2  2  2    0    1    0    1    0    0    0    0
## 1749 3579 52  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1750 7235 37  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1751 7795 47  2  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1752 4807 20  2  1  3  5  2  2    0    0    0    0    0    0    0    0
## 1753 1098 16  1  4  5  3  2  2    0    1    0    0    0    0    0    0
## 1754 2122 26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1755 2601 32  1  1  3  4  1  1    0    1    0    0    0    0    0    0
## 1756 5675 25  2  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1757 3474 65  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1758 8728 69  2  3  1  1  1  2    0    1    0    0    0    0    0    0
## 1759 2837 17  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1760 5778 43  1  1  3  3  2  2    0    1    0    1    0    0    0    0
## 1761 5886 80  2  3  2  5  2  2    0    0    0    0    0    0    0    0
## 1762 3743 23  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1763 1316 28  2  4  7  4  2  1    0    0    0    0    0    0    0    0
## 1764 6666 47  2  1  1  1  2  2    0    0    0    0    0    0    0    0
## 1765 7059 31  1  1  5  5  2  1    0    1    0    0    0    0    0    0
## 1766 4020 20  2  4  6  3  2  2    0    0    0    0    0    0    0    0
## 1767  130 78  1  3  7  1  2  1    0    0    1    0    0    0    1    0
## 1768 4953 21  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1769 7757 17  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 1770  715 34  1  1  6  4  1  1    0    1    0    0    0    0    0    0
## 1771   74 28  2  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1772 7376 30  1  2  6  1  2  1    1    0    0    0    0    0    0    0
## 1773 6864 25  2  1  2  1  2  1    0    0    0    0    0    0    0    0
## 1774 8111 20  2  1  1  5  2  2    0    1    0    0    0    0    0    0
## 1775 4556 18  2  1  2  5  2  2    0    0    0    0    0    0    0    0
## 1776  824 46  1  1  3  1  2  1    0    0    0    1    0    0    0    0
## 1777 8669 40  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1778 4370 25  2  1  5  3  2  2    0    0    1    0    0    0    0    0
## 1779 7014 28  1  1  3  4  2  1    0    0    0    1    0    0    0    0
## 1780 5614 55  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1781 8293 20  2  1  3  3  2  2    0    0    0    0    0    0    0    0
## 1782 7963 45  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1783 1214 58  1  2  3  5  2  1    0    0    0    1    0    0    0    0
## 1784 6582 27  2  1  5  5  2  1    0    1    0    1    0    0    0    0
## 1785 1667 48  2  3  3  1  2  1    0    0    1    0    0    0    0    0
## 1786 4312 47  2  4  3  1  2  2    0    1    0    0    0    0    0    0
## 1787 4426 20  2  1  3  3  2  1    0    0    0    1    0    0    0    0
## 1788 5945 45  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1789 8421 52  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 1790 9266 75  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1791 9118 57  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1792  680 25  2  4  6  4  2  1    1    0    1    0    0    0    0    0
## 1793  368 66  2  3  1  1  2  1    0    0    0    0    0    0    0    0
## 1794 7320 38  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1795 4313 40  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1796 4513 29  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1797 6337 45  1  1  2  4  1  2    0    0    0    1    0    0    0    0
## 1798 8972 22  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1799 1180 67  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1800 6249 35  2  1  3  1  1  2    0    1    0    1    0    0    0    0
## 1801 6968 38  2  3  6  1  1  2    0    1    0    0    0    0    0    0
## 1802 3789 77  1  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1803 9098 77  2  3  3  3  2  2    0    1    0    0    0    0    0    0
## 1804 7798 18  1  4  5  5  2  2    0    0    0    0    0    0    0    0
## 1805 2419 52  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1806 9284 34  1  4  3  3  2  1    0    1    1    0    0    0    0    0
## 1807 8404 35  2  1  6  3  2  1    1    0    0    0    0    0    0    0
## 1808 4669 22  1  1  2  3  2  2    0    1    0    1    0    0    0    0
## 1809 4983 18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1810 9217 19  2  4  3  3  2  1    0    0    0    0    0    0    0    0
## 1811  256 21  1  4  6  3  2  1    0    0    0    0    0    0    0    0
## 1812 2876 28  2  1  3  5  2  2    0    0    0    1    0    0    0    0
## 1813  986 75  1  1  1  1  2  1    0    0    0    0    0    0    0    0
## 1814 4541 59  2  1  1  1  1  1    0    1    0    0    0    0    0    0
## 1815 8802 40  2  2  3  1  1  2    0    0    0    0    0    0    0    0
## 1816 4746 48  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1817 4540 60  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1818 1956 70  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1819 7707 43  1  1  6  1  2  1    0    1    1    0    0    0    0    0
## 1820 2410 24  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1821  171 37  1  1  2  4  1  1    1    1    0    1    0    0    0    0
## 1822 4559 35  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1823 4446 25  1  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1824 3884 32  1  2  3  3  2  1    0    1    0    0    0    0    0    0
## 1825 2520 50  2  3  1  1  2  1    0    0    0    0    0    0    0    1
## 1826 8636 29  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1827 3980 17  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 1828 5411 32  2  4  7  5  2  1    1    0    0    0    0    0    0    0
## 1829 1900 27  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 1830 6324 38  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1831 3174 45  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1832 1292 68  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 1833  166 28  2  4  7  5  2  1    0    0    0    1    0    0    0    0
## 1834 2669 26  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1835 2845 39  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1836 9215 50  1  1  3  1  1  1    0    0    0    1    0    0    0    0
## 1837 4786 34  1  2  3  1  2  1    0    1    0    0    0    0    0    0
## 1838 7596 18  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 1839 4750 22  2  1  5  3  2  1    0    1    0    0    0    0    0    0
## 1840 6363 80  1  1  1  1  2  2    0    0    0    1    0    0    0    0
## 1841 5444 35  1  1  1  5  2  1    0    1    0    1    0    0    0    0
## 1842 1434 50  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1843  113 19  2  4  3  5  2  1    0    0    1    0    0    0    0    0
## 1844 2584 37  1  2  4  1  2  1    0    1    0    1    0    0    0    0
## 1845 6431 58  2  1  1  2  2  2    0    1    0    0    0    0    0    0
## 1846 6407 34  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1847  569 22  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1848 8711 35  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 1849  526 50  1  1  6  1  2  1    1    0    0    0    0    0    0    0
## 1850 4242 35  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 1851 8525 24  2  4  7  1  2  1    0    0    0    0    0    0    0    0
## 1852 8585 50  1  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1853 3900 55  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 1854 9189 26  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1855 5171 18  2  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1856 4948 37  2  1  2  3  2  1    0    1    0    0    0    0    0    0
## 1857 5887 60  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1858  503 71  1  1  7  1  1  1    0    0    0    0    0    0    1    0
## 1859 8205 38  2  1  6  4  1  1    0    0    0    1    0    0    0    0
## 1860 7214 45  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1861 8743 60  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1862 8024 80  2  3  1  1  2  2    0    0    0    0    0    0    0    0
## 1863 9008 28  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1864 5381 43  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1865 7053 38  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1866 1745 50  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1867 4700 60  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 1868 1599 20  2  1  5  3  2  2    0    0    0    1    0    0    0    0
## 1869 3791 18  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1870 3227 50  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1871 3107 25  1  2  5  3  1  1    0    0    0    1    0    0    0    0
## 1872 1715 29  2  1  1  3  1  2    0    1    0    0    0    0    0    0
## 1873 6161 38  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1874 8535 38  2  1  1  1  2  1    0    1    0    1    0    0    0    0
## 1875 3859 20  2  4  5  3  2  1    0    0    0    1    0    0    0    0
## 1876 2957 22  1  2  3  3  2  2    0    1    0    1    0    0    0    0
## 1877 6208 38  1  1  6  4  2  1    1    0    0    0    0    0    0    0
## 1878  776 40  2  3  3  5  2  2    0    0    0    1    0    0    0    0
## 1879 1441 52  2  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1880 2859 50  1  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1881 8720 46  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1882 2728 34  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1883 2723 36  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1884 6967 43  2  1  3  3  1  2    0    1    0    0    0    0    0    0
## 1885  519 32  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 1886  318 36  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1887 3498 52  1  1  7  5  1  1    1    1    0    0    0    0    0    0
## 1888 3352 19  2  4  1  1  2  1    0    0    0    0    0    0    0    0
## 1889 8521 23  2  1  3  3  2  1    0    1    0    1    0    0    0    0
## 1890 6693 66  2  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1891 8945 92  2  3  1  1  2  2    0    0    0    0    0    0    0    1
## 1892 5245 36  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1893 9292 25  2  4  6  5  2  1    0    0    0    1    0    0    0    0
## 1894 4201 80  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 1895 1603 40  1  1  2  1  1  2    0    1    1    1    0    0    0    0
## 1896 3931 58  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1897   65 30  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 1898 3487 35  1  1  1  3  2  1    0    0    0    1    0    0    0    0
## 1899 6895 43  2  2  2  1  2  2    0    1    0    0    0    0    0    0
## 1900  909 29  2  1  3  5  2  1    0    1    1    0    0    0    0    0
## 1901 7327 37  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1902 5367 24  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1903 3623 22  2  1  3  2  2  1    0    1    0    0    0    0    0    0
## 1904 8797 58  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1905 1660 32  1  2  3  1  2  1    0    1    0    1    0    0    0    0
## 1906 8367 59  2  3  3  1  1  1    0    0    1    0    0    0    0    0
## 1907 3723 20  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 1908  596 19  2  4  1  5  2  1    0    0    0    1    0    0    0    0
## 1909 7556 32  2  2  3  1  1  2    0    1    0    1    0    0    0    0
## 1910  116 19  2  4  5  3  2  1    0    0    0    0    0    0    0    0
## 1911 3280 59  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1912 6317 32  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1913 5891 25  1  4  3  5  2  2    0    0    0    0    0    0    0    0
## 1914 1684 28  1  4  7  3  2  1    0    0    0    0    0    0    0    0
## 1915  633 65  2  1  1  1  2  2    0    1    0    0    0    0    0    1
## 1916 5779 46  2  1  3  4  1  1    0    0    0    1    0    0    0    0
## 1917 4447 28  2  1  6  5  1  1    0    0    0    0    0    0    0    0
## 1918 5634 65  2  3  2  1  1  1    0    1    0    0    0    0    0    0
## 1919  613 26  1  1  6  3  2  1    0    1    1    1    0    0    0    0
## 1920 3658 41  2  1  3  5  2  1    1    0    0    1    0    0    0    0
## 1921 2094 25  1  4  4  3  2  1    1    1    0    0    0    0    0    0
## 1922  354 28  1  1  7  5  2  1    0    1    0    0    0    0    0    0
## 1923  301 20  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 1924 4048 22  2  1  3  1  2  2    0    0    0    0    0    0    0    0
## 1925 9272 24  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 1926 5358 35  2  3  2  3  2  1    0    0    0    1    0    0    0    0
## 1927 9100 70  1  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1928 7496 40  1  1  3  1  2  2    0    0    1    0    0    0    0    0
## 1929 8622 57  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1930 5103 31  1  1  3  3  2  2    0    1    0    0    0    0    0    0
## 1931 7855 55  1  1  7  5  1  1    1    0    0    0    0    0    0    0
## 1932 7784 29  1  1  7  4  2  1    1    1    0    0    0    0    0    0
## 1933 8919 78  1  1  6  2  1  1    0    1    0    1    0    0    0    0
## 1934 5180 38  2  1  1  5  2  2    0    0    0    1    0    0    0    0
## 1935 5889 26  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 1936 7696 36  2  2  3  5  2  1    0    0    1    0    0    0    0    0
## 1937 5342 45  2  1  3  3  2  1    0    1    0    0    0    0    0    0
## 1938 3056 28  2  2  3  4  2  2    0    0    0    1    0    0    0    0
## 1939 6446 35  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1940 4981 60  1  2  3  1  2  2    0    1    0    1    0    0    0    0
## 1941 7687 45  2  3  3  5  2  2    0    0    0    0    0    0    0    0
## 1942 8651 21  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1943 5899 78  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 1944 6455 44  2  1  3  5  2  1    0    1    0    0    0    0    0    0
## 1945 8462 42  1  1  3  1  2  1    0    1    0    0    1    0    0    0
## 1946 8581 25  1  1  3  5  2  1    0    0    0    1    0    0    0    0
## 1947 6927 28  2  1  3  1  2  2    0    0    0    1    0    0    0    0
## 1948 6759 24  1  1  5  5  1  1    1    0    0    0    0    0    0    0
## 1949 7515 32  2  1  3  3  1  1    0    1    0    0    0    0    0    0
## 1950 7654 28  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 1951 6022 21  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1952  165 21  1  4  6  5  2  1    0    0    0    0    0    0    0    0
## 1953 4899 45  2  3  3  3  2  2    0    1    0    1    0    0    0    0
## 1954 2108 25  2  1  3  3  1  1    0    0    0    0    0    0    0    0
## 1955 9178 74  2  3  2  1  2  2    0    0    0    0    0    0    0    0
## 1956 2141 36  2  1  3  1  2  1    0    1    0    1    0    0    0    0
## 1957 7426 25  2  1  3  2  2  2    0    0    0    0    0    0    0    0
## 1958 7604 23  2  2  3  5  2  1    0    1    0    1    0    0    0    0
## 1959 6269 55  2  3  1  3  2  2    0    1    0    0    0    0    0    0
## 1960 2812 24  2  1  6  1  1  1    0    0    1    0    0    0    0    0
## 1961 5933 28  2  1  5  3  2  2    0    0    0    0    0    0    0    0
## 1962 2736 24  2  4  3  3  2  1    0    0    1    0    0    0    0    0
## 1963 6913 74  1  1  3  1  2  1    0    1    0    0    0    0    0    1
## 1964 9156 19  2  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1965 8803 30  2  2  3  1  1  2    0    0    0    0    0    0    0    0
## 1966  339 17  1  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1967 3601 32  2  4  3  4  2  2    0    1    0    0    0    0    0    0
## 1968 4906 35  2  1  2  1  2  1    0    1    0    0    0    0    0    0
## 1969 4067 35  1  4  5  1  2  1    0    0    0    1    0    0    0    0
## 1970 7819 70  1  2  1  1  2  1    0    0    0    0    0    0    0    0
## 1971 5226 19  2  4  2  3  2  1    0    0    0    0    0    0    0    0
## 1972 3472 24  1  4  6  3  2  1    0    0    0    1    0    0    0    0
## 1973 1582 33  2  1  3  3  1  2    0    0    1    0    0    1    0    0
## 1974 5323 57  2  2  1  1  2  2    0    1    0    0    0    0    0    0
## 1975 6438 20  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1976   18 41  2  1  2  5  2  1    0    0    0    0    0    0    0    0
## 1977 7943 38  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1978 7650 19  1  4  5  6  2  2    0    0    0    0    0    0    0    0
## 1979 3127 47  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 1980 3061 29  2  1  2  3  2  2    0    0    0    0    0    0    0    0
## 1981 4676 32  1  1  6  5  2  1    0    1    0    0    0    0    0    0
## 1982 6879 52  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1983 5354 31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 1984 5800 70  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1985 2241 16  2  4  3  3  2  2    0    0    0    0    0    0    0    0
## 1986 3135 34  2  1  3  3  2  1    0    0    1    0    0    0    0    0
## 1987 4527 25  1  1  3  4  2  1    0    1    0    0    0    0    0    0
## 1988 3303 45  1  1  3  1  1  2    0    0    0    1    0    0    0    0
## 1989 4389 58  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 1990 7704 30  1  1  3  1  1  1    0    1    0    1    0    0    0    0
## 1991 5912 24  2  1  6  3  2  2    0    0    0    0    0    0    0    0
## 1992 9241 57  2  2  3  4  1  1    0    0    0    1    0    0    0    0
## 1993 6977 35  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 1994 6775 18  1  4  3  3  2  1    0    1    0    0    0    0    0    0
## 1995  748 35  1  1  7  4  1  1    1    0    0    0    0    0    0    0
## 1996 5681 30  1  1  6  5  2  1    0    0    0    1    0    0    0    0
## 1997 4703 66  2  3  1  1  2  2    0    1    0    0    0    0    0    1
## 1998 8236 28  2  1  2  5  2  1    0    0    1    0    0    0    0    0
## 1999 5059 25  1  1  3  1  2  2    0    0    0    1    0    0    0    0
## 2000 9263 30  2  1  2  4  2  1    0    0    0    0    0    1    0    0
## 2001 8871 31  1  1  3  3  1  2    0    1    0    0    0    0    0    0
## 2002 5998 52  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2003 8774 49  1  1  1  1  2  2    0    1    0    0    0    0    0    0
## 2004 1128 35  2  1  3  5  2  1    0    0    0    1    0    0    0    0
## 2005 1592 26  1  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2006 1011 16  2  4  5  3  2  2    0    0    0    0    0    0    0    0
## 2007  742 35  2  3  6  1  2  1    0    1    0    0    0    0    0    0
## 2008 2088 43  1  1  5  1  2  1    0    0    0    1    0    0    0    0
## 2009 2253 25  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2010 6103 41  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2011 9258 28  2  1  3  5  2  1    0    0    1    0    0    0    0    0
## 2012 6871 43  2  3  3  3  2  1    0    0    0    1    0    0    0    0
## 2013 5246 27  2  1  6  3  2  1    0    0    0    1    0    0    0    0
## 2014 6808 36  2  1  3  5  2  1    0    0    0    0    0    0    0    0
## 2015 6326 46  1  1  2  1  2  2    0    0    0    1    0    0    0    0
## 2016 4159 37  2  2  3  2  2  1    0    1    0    0    0    0    0    0
## 2017 2906 34  1  1  1  1  2  2    1    0    0    0    0    0    0    0
## 2018 5267 36  1  1  3  1  2  1    0    1    1    0    0    0    0    0
## 2019 6539 23  2  4  3  3  2  1    0    0    0    1    0    0    0    0
## 2020 9319 20  1  4  3  1  2  2    0    0    0    1    0    0    0    0
## 2021 5242 39  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2022 5421 40  2  1  2  1  2  1    0    1    0    1    0    0    0    0
## 2023 2468 31  2  1  7  5  2  1    1    0    0    1    0    0    0    0
## 2024   38 35  1  1  3  3  1  1    0    1    0    0    0    0    0    0
## 2025 6930 48  2  1  1  1  2  1    0    1    0    0    0    0    0    0
## 2026 3646 26  2  1  3  1  2  2    0    1    0    0    0    0    0    0
## 2027 1694 24  1  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2028 4218 22  2  1  5  3  2  2    0    0    0    0    0    0    0    0
## 2029 8423 26  1  4  3  3  2  2    0    1    0    1    0    0    0    0
## 2030 5260 22  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2031  146 60  1  1  3  1  2  1    0    0    1    0    0    0    0    0
## 2032 3405 35  2  2  3  4  1  1    0    0    0    1    0    0    0    0
## 2033 4279 47  2  1  3  1  2  1    0    0    0    1    0    0    0    0
## 2034 7683 22  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2035  399 16  2  4  3  4  2  2    0    0    0    0    0    0    0    0
## 2036 7409 29  1  1  2  1  2  1    0    1    0    1    0    0    0    0
## 2037 5355 38  2  1  1  3  2  1    0    0    0    1    0    0    0    0
## 2038 1437 30  1  1  3  5  2  1    0    1    0    0    0    0    0    0
## 2039 4574 33  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2040  263 28  2  1  6  4  2  1    0    1    0    1    0    0    0    0
## 2041 5197 25  2  1  3  2  2  2    0    1    0    0    0    0    0    0
## 2042 5606 27  2  1  1  5  1  2    0    1    0    0    0    0    0    0
## 2043   41 70  1  1  2  1  1  1    0    0    0    0    1    0    0    0
## 2044 5799 51  2  1  3  1  2  2    0    1    0    1    0    0    0    0
## 2045 3259 21  2  4  6  3  2  1    0    1    0    0    0    0    0    0
## 2046  403 35  1  1  6  1  1  1    0    0    1    0    0    0    0    0
## 2047 5088 19  2  1  3  3  2  1    0    0    0    0    0    0    0    0
## 2048  308 23  2  2  3  5  2  1    1    0    0    0    0    0    0    0
## 2049 5239 73  2  3  2  1  2  2    0    1    0    0    0    0    0    0
## 2050 8063 45  2  2  3  1  2  2    0    1    0    0    0    0    0    1
## 2051 4812 63  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2052  476 56  1  3  3  4  2  1    1    0    0    0    0    0    0    0
## 2053 7824 75  2  3  1  1  2  2    0    0    0    1    0    0    0    0
## 2054 5910 18  1  4  5  3  2  1    0    1    0    0    0    0    0    0
## 2055 9081 55  1  1  3  2  2  1    0    1    0    1    0    0    0    0
## 2056 4998 32  2  4  6  4  2  1    0    0    0    1    0    0    0    0
## 2057 3451 20  2  1  3  3  2  2    0    0    0    1    0    0    0    0
## 2058 4111 19  2  1  5  2  2  1    0    1    1    0    0    0    0    0
## 2059 5478 73  2  3  3  1  2  1    0    0    0    0    0    0    1    0
## 2060 8133 39  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2061 2609 62  1  1  1  4  2  1    0    0    1    0    0    0    0    0
## 2062  943 59  1  2  3  1  1  2    0    1    0    0    0    0    0    0
## 2063 2121 29  1  1  6  1  2  1    0    1    0    0    0    0    0    0
## 2064 5583 24  1  1  5  3  2  1    0    1    0    1    0    0    0    0
## 2065  109 34  2  1  7  3  1  1    0    1    0    1    1    0    0    0
## 2066 3268 20  2  4  5  4  2  1    0    1    0    0    0    0    0    0
## 2067 2591 65  2  3  2  3  2  2    0    0    0    0    0    0    0    1
## 2068 6068 20  1  4  2  3  2  2    0    1    0    1    0    0    0    0
## 2069 9318 37  2  2  3  1  2  1    0    0    1    0    0    0    0    0
## 2070 7191 31  2  1  2  3  2  2    0    1    0    1    0    0    0    0
## 2071 3865 30  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2072 9012 47  1  2  3  1  2  2    0    1    1    0    0    0    0    0
## 2073 4188 38  1  4  2  3  2  1    0    1    0    0    0    0    0    0
## 2074 4054 65  2  2  2  1  2  2    0    1    0    1    0    0    0    0
## 2075 2304 32  1  1  2  5  2  2    0    1    0    1    0    0    0    0
## 2076 4215 67  1  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2077 2257 42  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2078 4098 35  1  1  7  1  2  1    1    1    0    0    0    0    0    0
## 2079 2224 57  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 2080 3036 17  2  4  2  3  2  1    0    1    1    0    0    0    0    0
## 2081 8663 20  2  4  6  1  2  2    0    1    0    1    0    0    0    0
## 2082 6428 21  2  1  5  2  2  2    0    0    0    0    0    0    0    0
## 2083 3349 24  1  4  1  3  2  2    0    0    0    1    0    0    0    0
## 2084 3100 27  2  1  2  2  2  2    0    1    0    0    0    0    0    0
## 2085 4643 60  1  1  2  1  1  2    0    1    0    0    0    0    0    0
## 2086 1685 54  1  1  3  1  1  2    0    1    0    0    0    0    0    0
## 2087 7137 24  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2088 8145 19  2  4  6  4  2  2    0    0    0    0    0    0    0    0
## 2089 3596 40  2  2  3  5  2  1    0    0    0    1    0    0    0    0
## 2090 7297 24  2  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2091 7775 32  2  2  3  3  2  1    0    0    1    0    0    0    0    0
## 2092  642 40  1  1  1  4  1  1    0    0    1    0    0    0    0    0
## 2093 5075 66  1  1  1  2  1  1    0    1    0    0    0    0    0    0
## 2094 7790 64  1  1  1  1  1  1    0    1    0    0    0    0    0    0
## 2095 3302 36  2  1  3  3  2  2    0    1    0    0    0    0    0    0
## 2096 3089 17  1  4  2  1  2  2    0    0    0    0    0    0    0    0
## 2097 6427 31  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2098 8077 56  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2099 6102 19  1  4  3  3  2  2    0    0    0    1    0    0    0    0
## 2100 3282 47  2  3  3  1  2  2    0    1    0    1    0    0    0    0
## 2101 6054 84  1  1  2  1  2  1    0    1    0    0    0    0    0    0
## 2102 4864 25  1  1  3  4  2  2    0    1    0    1    0    0    0    0
## 2103 7770 46  1  1  6  1  1  1    0    1    0    0    0    0    0    0
## 2104 1360 38  1  1  6  4  2  1    0    1    0    0    0    0    0    0
## 2105 1924 36  1  1  3  5  1  1    0    0    1    0    0    0    0    0
## 2106 5752 27  1  1  3  3  2  1    0    1    0    0    0    0    0    0
## 2107 4789 65  2  3  2  1  2  1    0    1    0    0    0    0    0    0
## 2108 4516 48  1  1  3  1  2  2    0    1    1    0    0    0    0    0
## 2109 7923 35  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2110 7895 88  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2111 4386 50  1  1  6  1  1  1    1    0    0    0    0    0    0    0
## 2112 6454 59  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2113 3095 54  2  3  3  1  2  2    0    1    0    1    0    0    0    1
## 2114 4972 18  2  1  2  3  1  1    0    0    0    0    0    0    0    0
## 2115 4835 44  1  1  3  1  2  1    0    1    0    1    0    0    0    0
## 2116  990 53  1  1  3  1  2  1    0    1    0    0    0    0    0    0
## 2117 2076 26  1  1  3  2  2  1    0    1    0    1    0    0    0    0
## 2118 5973 20  2  1  2  3  2  2    0    1    0    0    0    0    0    0
## 2119 1001 36  2  1  6  1  2  1    1    0    1    0    0    0    0    0
## 2120 3364 23  1  4  3  3  2  2    0    1    0    0    0    0    0    0
## 2121 1273 49  1  1  3  1  1  1    0    1    0    0    0    0    0    0
## 2122 6400 45  2  3  3  1  2  1    0    1    0    0    0    0    0    0
## 2123 7095 28  2  2  6  5  2  2    0    1    0    1    0    0    0    0
## 2124 8136 16  2  4  5  1  2  2    0    0    0    0    0    0    0    0
## 2125 7085 38  2  3  1  1  2  2    0    1    0    0    0    0    0    0
## 2126 1714 31  2  2  3  4  2  2    0    1    0    0    0    0    0    0
## 2127 4573 60  1  1  3  1  2  2    0    1    0    0    0    0    0    0
##      Q8_9 Q8_10 Q8_11 Q9 Q10 Q11 Q12 Q13 Q14 Q15 Q16 Q17 Q18 Q19
## 1       1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2       0     0     0  1  -1  -1   1   4   1   5   4   4   1   4
## 3       1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 4       0     0     0 -1  -1  -1   1   2   2  -1   4  -1   1   4
## 5       0     0     0 -1   1  -1   2  -1   1   1   1  -1   1   4
## 6       0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   1
## 7       0     0     0 -1   1  -1   1   5   1   3   1  -1   1   2
## 8       0     0     0 -1  -1   1   1   4   1   4   5   1   2   2
## 9       0     0     0 -1   1  -1   1   5   1   6   5  -1   1   1
## 10      1     0     0 -1   1  -1   1   3   1   4   5  -1   1   4
## 11      0     1     0 -1  -1  -1   1   6   1   6   1  -1   1   1
## 12      0     0     0 -1  -1  -1   1   4   1   5   1   1   1   4
## 13      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 14      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 15      1     0     0 -1  -1  -1   1   4   1   3   1  -1   1   1
## 16      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 17      0     1     0 -1  -1  -1   2  -1   1   5   1  -1   1   1
## 18      0     0     0 -1   7  -1   1   4   1   6   1  -1   1   1
## 19      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 20      0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   1
## 21      1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 22      0     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 23      0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 24      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 25      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 26      1     0     0 -1  -1   1   1   5   1   4   1  -1   1   1
## 27      0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   3
## 28      0     0     0  3  -1  -1   1   4   1   5   1  -1   1   1
## 29      0     0     0 -1  -1   5   1   6   1   2   5  -1   5   5
## 30      0     0     0 -1  10  -1   1   2   1   1   3  -1   5   5
## 31      0     0     0 -1   5  -1   1   3   2  -1   4  -1   1   4
## 32      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 33      0     0     0 -1   6  -1   1   3   1   4   1   4   1   1
## 34      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 35      0     0     0 -1   1  -1   1   2   2  -1   1  -1   4   4
## 36      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 37      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   1
## 38      0     0     0 -1  -1  -1   1   2   2  -1   1  -1   4   4
## 39      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 40      0     0     0 -1   4  -1   2  -1   1   4   1  -1   5   5
## 41      0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   3
## 42      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 43      0     0     0 -1   1  -1   1   4   1   3   3  -1   1   1
## 44      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 45      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 46      0     0     0  6  -1  -1   2  -1   2  -1   5  -1   1   4
## 47      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 48      0     0     0  2   1  -1   1   2   2  -1   4   4   1   2
## 49      1     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 50      0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 51      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 52      0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 53      1     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 54      0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 55      0     0     0 -1  -1  -1   2  -1   1   6   5  -1   1   2
## 56      0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   2
## 57      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 58      1     0     0 -1   3  -1   2  -1   1   5   1  -1   4   4
## 59      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 60      0     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   4
## 61      0     0     0 -1   6  -1   1   2   1   3   1  -1   1   4
## 62      1     0     0 -1  -1  -1   1   2   1   5   1   1   1   1
## 63      0     0     0  1  -1  -1   2  -1   2  -1   4   2   1   1
## 64      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 65      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 66      0     0     0 -1  -1   7   1   3   1   3   1   5   1   4
## 67      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 68      0     0     0 -1  -1   7   2  -1   2  -1   1   1   1   5
## 69      0     0     0 -1  -1  -1   2  -1   1   5   4  -1   2   2
## 70      1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 71      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 72      0     0     0  1   1  -1   2  -1   1   2   1   4   1   1
## 73      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 74      0     0     0 -1   1  -1   1   4   1   3   1  -1   1   3
## 75      0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 76      0     0     0 -1  -1  12   2  -1   1   3   5  -1   1   1
## 77      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 78      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 79      0     0     0 -1   6  -1   1   6   2  -1   1  -1   1   4
## 80      1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 81      1     0     0 -1   1  -1   1   3   2  -1   1  -1   1   1
## 82      0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 83      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 84      0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 85      0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 86      0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 87      0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 88      0     0     0 -1   1  -1   1   3   1   2   4  -1   1   4
## 89      0     0     0  2  -1  -1   2  -1   2  -1   5   5   1   1
## 90      0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 91      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 92      0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 93      0     0     0 -1   7  -1   1   6   1   2   4   3   1   1
## 94      1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 95      0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 96      0     0     0 -1   1  -1   1   3   1   1   5   3   1   3
## 97      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 98      0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 99      0     0     0 -1   1  -1   1   6   1   6   5  -1   4   4
## 100     0     0     0 -1   1  -1   2  -1   1   3   4  -1   1   2
## 101     0     0     0 -1   1  -1   1   3   2  -1   4   5   1   1
## 102     0     0     0 -1   1  -1   1   2   1   2   5  -1   1   1
## 103     1     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   3
## 104     0     0     0  1  -1  -1   1   4   2  -1   4   5   1   1
## 105     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 106     0     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 107     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 108     0     0     0  3  -1  -1   1   2   2  -1   3  -1   1   4
## 109     0     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 110     0     0     0 -1  -1  -1   1   5   2  -1   1  -1   4   4
## 111     0     0     0 -1   1  -1   2  -1   1   3   3  -1   1   4
## 112     0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 113     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 114     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 115     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 116     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 117     1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 118     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 119     0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   1
## 120     0     1     0 -1  -1  -1   2  -1   1   5   5  -1   1   1
## 121     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 122     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 123     0     0     0 -1   6  -1   2  -1   2  -1   5  -1   1   4
## 124     0     0     0 -1  -1   5   1   2   2  -1   4   1   1   4
## 125     0     1     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 126     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 127     0     1     0 -1  -1  -1   1   3   1   3   4  -1   1   1
## 128     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 129     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 130     0     0     0 -1  -1   1   1   4   1   4   1  -1   1   1
## 131     0     0     0 -1   2  -1   1   3   2  -1   4  -1   1   4
## 132     0     0     0  1  -1  -1   1   5   1   2   5   5   1   4
## 133     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 134     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   4
## 135     0     0     0 -1   6  -1   2  -1   1   6   1  -1   1   4
## 136     0     0     0 -1   1  -1   2  -1   1   5   5  -1   4   4
## 137     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 138     0     0     0 -1   1   5   2  -1   1   4   1   1   1   1
## 139     0     0     0 -1   3  -1   1   3   2  -1   5  -1   1   1
## 140     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 141     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 142     0     0     0  2  -1  -1   1   3   1   3   4   4   1   1
## 143     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 144     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 145     1     0     0 -1  -1  -1   1   3   1   4   3   3   1   1
## 146     0     0     0 -1  -1  -1   1   5   2  -1   4   4   1   4
## 147     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 148     0     0     0 -1   6  -1   1   3   1   2   5   5   1   1
## 149     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 150     1     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 151     0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   4
## 152     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 153     0     0     0 -1   5  -1   1   2   1   3   3   4   1   1
## 154     0     0     0 -1  -1  -1   1   5   2  -1   1   1   2   2
## 155     0     0     0 -1  -1  -1   2  -1   1   4   1   1   1   5
## 156     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 157     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 158     0     1     0 -1  -1  -1   2  -1   2  -1   5  -1   1   1
## 159     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 160     0     0     0 -1  -1  -1   1   3   1   2   1   1   1   1
## 161     1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 162     0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   1
## 163     0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   5
## 164     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 165     0     0     0 -1   6  -1   1   3   2  -1   5  -1   1   1
## 166     0     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 167     0     0     0  2  -1  -1   1   4   1   6   5  -1   1   1
## 168     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 169     0     1     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 170     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 171     0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 172     1     0     0 -1   1  -1   1   6   1   3   1  -1   4   4
## 173     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 174     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 175     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 176     0     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 177     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 178     1     0     0 -1  -1  -1   1   5   2  -1   4  -1   1   4
## 179     0     0     0 -1  -1  -1   1   5   1   3   1  -1   2   4
## 180     1     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 181     0     0     0  2   1  -1   2  -1   2  -1   5   1   1   4
## 182     0     0     0 -1   1  -1   1   5   1   1   1   5   1   4
## 183     1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 184     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 185     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 186     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 187     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 188     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 189     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 190     0     0     0 -1   7  -1   1   2   1   3   4  -1   1   1
## 191     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 192     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   5   4
## 193     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 194     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 195     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 196     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 197     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 198     0     0     0 -1   5  -1   1   1   2  -1   1   1   1   1
## 199     0     0     0  2   6  -1   1   2   1   6   4   4   1   4
## 200     0     0     0 -1   1   5   2  -1   2  -1   1  -1   4   4
## 201     0     0     0 -1   2  -1   2  -1   1   5   1  -1   1   4
## 202     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 203     0     0     0 -1  -1   7   1   4   2  -1   5  -1   1   1
## 204     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 205     0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   5
## 206     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 207     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 208     0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   1
## 209     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 210     0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 211     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 212     0     0     0  1  -1  -1   1   3   2  -1   4   5   1   1
## 213     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 214     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 215     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   2
## 216     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 217     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 218     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 219     1     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 220     0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 221     0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 222     0     0     0 -1   1   5   2  -1   2  -1   1  -1   4   4
## 223     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 224     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 225     0     0     0 -1   3  -1   1   3   2  -1   1  -1   1   4
## 226     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 227     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 228     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 229     0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 230     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 231     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 232     0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 233     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 234     0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   4
## 235     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 236     0     0     0 -1   1   1   2  -1   2  -1   1  -1   1   1
## 237     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 238     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 239     0     0     0 -1  -1  -1   1   3   1   3   4   1   1   2
## 240     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 241     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 242     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 243     0     0     0 -1   1  -1   1   3   1   4   1  -1   1   3
## 244     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 245     0     0     0 -1  -1  -1   2  -1   2  -1   1   2   1   4
## 246     0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   2
## 247     0     0     0 -1  -1   1   1   5   1   4   5   4   4   4
## 248     0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 249     0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 250     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 251     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 252     0     0     0 -1   1  -1   1   4   1   4   1  -1   4   4
## 253     0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 254     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 255     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 256     0     0     0 -1   9  -1   2  -1   2  -1   1  -1   1   4
## 257     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 258     0     0     0 -1  -1  -1   1   4   1   4   1  -1   1   1
## 259     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 260     0     0     0 -1   1  -1   1   2   2  -1   1  -1   1   4
## 261     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 262     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 263     0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   1
## 264     0     0     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 265     0     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 266     1     0     0 -1  -1  -1   1   5   1   2   5  -1   1   4
## 267     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 268     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 269     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 270     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 271     0     0     0 -1   2  -1   2  -1   2  -1   1  -1   4   4
## 272     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 273     0     0     0  1  -1  -1   1   4   2  -1   3  -1   1   1
## 274     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 275     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   1
## 276     0     0     0 -1   1  -1   1   5   2  -1   5  -1   4   4
## 277     0     0     1 -1  -1  -1   1   3   1   3   4  -1   1   2
## 278     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 279     0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 280     0     0     0 -1   6  -1   1   1   1   3   3   3   1   3
## 281     0     0     0 -1   4   4   1   3   1   3   4   4   1   1
## 282     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 283     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 284     0     0     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 285     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 286     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 287     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 288     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 289     0     0     0 -1   1  -1   1   3   2  -1   4  -1   4   4
## 290     0     0     0  6  -1  -1   1   3   2  -1   1  -1   1   1
## 291     0     0     0 -1  -1  -1   1   3   2  -1   1   1   1   1
## 292     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 293     1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 294     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 295     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 296     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 297     0     0     0 -1  -1  -1   2  -1   1   5   4   1   1   4
## 298     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 299     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 300     1     0     0 -1  -1  -1   2  -1   2  -1   1   3   1   1
## 301     0     1     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 302     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 303     0     0     0  1   1  -1   1   2   2  -1   1  -1   1   1
## 304     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 305     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 306     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 307     0     0     0 -1   1  -1   1   4   1   6   1  -1   4   4
## 308     0     0     0 -1   8  -1   1   3   2  -1   1  -1   4   4
## 309     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 310     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 311     0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 312     1     0     0 -1  -1  -1   1   2   1   2   3   3   1   1
## 313     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 314     0     0     0 -1   6  -1   1   4   1   6   1   1   1   4
## 315     0     0     0 -1   1   4   1   2   1   3   1  -1   1   2
## 316     0     0     0 -1   1   7   1   3   1   6   4   4   1   1
## 317     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 318     0     0     0 -1   1  -1   2  -1   1   2   5  -1   4   4
## 319     0     0     0 -1  -1  -1   2  -1   2  -1   5   1   1   1
## 320     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 321     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   3
## 322     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 323     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 324     0     0     0  1   1  -1   1   3   2  -1   5  -1   1   1
## 325     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 326     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 327     0     0     0 -1  10  -1   1   4   2  -1   1   1   1   2
## 328     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 329     0     0     0 -1   6  -1   1   6   2  -1   1  -1   1   1
## 330     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 331     0     0     0 -1   6  -1   2  -1   1   2   3  -1   1   4
## 332     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 333     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   5
## 334     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 335     0     0     0 -1   1  -1   2  -1   1   3   4  -1   1   4
## 336     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   1
## 337     0     0     0  2  -1  -1   1   4   1   3   3   4   5   1
## 338     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 339     0     0     0 -1   1  -1   1   5   1   4   1  -1   1   2
## 340     0     0     0 -1  -1  -1   2  -1   2  -1   5   5   1   4
## 341     0     0     0 -1   1  -1   1   4   1   4   4  -1   1   2
## 342     0     0     0 -1   1  -1   1   2   1   3   5   4   1   1
## 343     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 344     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 345     0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 346     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 347     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 348     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 349     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 350     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 351     0     0     0 -1   1  -1   1   2   1   3   5  -1   1   4
## 352     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   3
## 353     0     0     0  6  -1  -1   1   2   1   2   5   5   1   1
## 354     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 355     0     0     0 -1  -1   7   1   3   1   2   1  -1   4   4
## 356     0     0     1 -1  -1  -1   1   2   1   2   4   4   1   4
## 357     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 358     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 359     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   4
## 360     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 361     1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 362     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 363     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 364     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 365     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 366     0     0     0 -1   8  -1   1   3   1   4   5   5   1   1
## 367     0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 368     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 369     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 370     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 371     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 372     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 373     0     1     0 -1  -1  -1   2  -1   1   2   5  -1   4   4
## 374     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 375     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 376     0     0     0 -1   7  -1   2  -1   1   3   1  -1   4   4
## 377     0     0     0  1  -1  -1   1   3   2  -1   1   1   1   2
## 378     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 379     0     0     0 -1  -1  -1   2  -1   1   6   1   1   1   1
## 380     0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   5
## 381     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 382     0     0     0 -1   1  -1   1   3   1   3   1  -1   1   1
## 383     0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   2
## 384     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 385     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 386     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 387     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 388     0     0     0 -1   4  -1   1   4   1   5   5  -1   1   4
## 389     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 390     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 391     1     0     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 392     0     0     0 -1   6  -1   1   5   2  -1   4   4   1   2
## 393     0     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 394     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 395     0     0     0 -1   8  -1   1   3   2  -1   1  -1   4   4
## 396     0     0     0  3  -1  -1   1   3   2  -1   1  -1   1   1
## 397     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 398     0     0     0 -1  -1   1   1   2   1   2   1   1   1   1
## 399     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 400     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 401     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 402     1     0     0 -1  -1  -1   2  -1   1   5   5  -1   1   4
## 403     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 404     0     0     0 -1  -1  -1   2  -1   1   2   5  -1   4   5
## 405     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 406     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 407     0     0     0 -1   2  -1   1   2   1   4   4  -1   1   1
## 408     0     0     0 -1   2  -1   1   5   2  -1   5  -1   1   4
## 409     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 410     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 411     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 412     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   5   5
## 413     1     0     0 -1  -1  -1   1   3   2  -1   3   3   1   1
## 414     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 415     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   4
## 416     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 417     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 418     0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 419     0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 420     0     0     0 -1  -1  -1   1   2   1   3   4   4   1   5
## 421     0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 422     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   2
## 423     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 424     0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 425     0     0     0 -1   8  -1   2  -1   1   2   1  -1   1   4
## 426     0     0     0 -1   1  -1   1   1   1   2   1  -1   1   4
## 427     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 428     0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 429     0     0     0 -1   4   5   1   4   1   2   4   4   1   2
## 430     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 431     0     0     0  1  -1  -1   2  -1   2  -1   1   1   1   1
## 432     0     0     0 -1   5  -1   2  -1   1   3   1  -1   1   2
## 433     1     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 434     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 435     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 436     0     0     0 -1   6  -1   2  -1   2  -1   4  -1   1   4
## 437     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 438     1     0     0 -1   6  -1   1   2   1   2   5   5   1   1
## 439     0     0     0 -1   1  -1   1   6   1   2   5  -1   1   1
## 440     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 441     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 442     0     0     0 -1   1   7   2  -1   2  -1   1  -1   1   4
## 443     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 444     1     0     0 -1  -1  -1   2  -1   1   2   1   4   1   4
## 445     0     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 446     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 447     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 448     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 449     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 450     0     0     0 -1  -1  -1   1   5   1   6   1  -1   1   4
## 451     0     0     0 -1   1  -1   1   4   1   2   1  -1   1   4
## 452     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 453     0     0     0 -1  -1  -1   2  -1   1   4   4  -1   1   2
## 454     0     0     0  2   1  -1   2  -1   2  -1   1  -1   1   4
## 455     0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 456     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 457     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 458     0     0     0 -1  -1  -1   2  -1   1   5   5  -1   4   4
## 459     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 460     0     0     0 -1   3  -1   1   1   1   6   1  -1   1   4
## 461     0     0     0 -1   1  12   1   3   1   3   1  -1   1   2
## 462     0     0     0 -1  -1   7   1   4   1   4   5  -1   1   1
## 463     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 464     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 465     1     0     0 -1   5  -1   2  -1   1   2   5  -1   1   4
## 466     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 467     0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 468     1     0     0 -1  -1  -1   1   3   1   1   5   5   1   4
## 469     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 470     0     0     0 -1   5  -1   1   6   1   5   5  -1   1   4
## 471     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 472     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 473     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 474     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 475     1     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 476     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 477     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 478     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 479     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 480     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 481     0     0     0 -1   6  -1   1   4   1   4   1  -1   1   1
## 482     0     0     0 -1  -1  -1   1   3   2  -1   4   4   1   1
## 483     0     0     0 -1   5  -1   2  -1   1   6   1  -1   1   4
## 484     0     0     0  2  -1  -1   1   3   1   3   4   4   1   1
## 485     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 486     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 487     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 488     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 489     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 490     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 491     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 492     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 493     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 494     0     0     0 -1   4  -1   2  -1   2  -1   4   4   1   1
## 495     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 496     0     0     0 -1  -1  -1   2  -1   1   4   4   1   1   1
## 497     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 498     0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   4
## 499     0     1     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 500     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 501     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 502     0     0     0 -1   5  -1   1   2   1   5   1  -1   1   4
## 503     1     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   5
## 504     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 505     0     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 506     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   1
## 507     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 508     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 509     0     0     0 -1  -1  -1   1   5   1   4   1  -1   1   1
## 510     0     0     0 -1   1  -1   1   4   1   4   3  -1   4   2
## 511     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 512     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 513     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 514     0     0     0  2  -1  -1   1   3   1   3   4  -1   1   1
## 515     0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 516     0     0     0 -1  -1  -1   1   3   2  -1   4  -1   1   2
## 517     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 518     1     0     0 -1  -1  -1   2  -1   1   5   5  -1   1   1
## 519     0     0     0 -1   4  -1   1   4   2  -1   5  -1   1   5
## 520     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 521     0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 522     0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 523     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 524     0     0     1 -1  -1  -1   1   6   1   4   4  -1   1   4
## 525     1     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 526     0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 527     0     0     0 -1   4  -1   1   4   1   3   5  -1   1   4
## 528     0     0     0 -1  -1   3   1   3   2  -1   4   4   1   1
## 529     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 530     0     0     0 -1   9  -1   1   3   2  -1   5  -1   1   4
## 531     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 532     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 533     1     0     0 -1   1  -1   1   2   1   4   4  -1   1   4
## 534     0     0     0 -1   1  -1   1   4   1   4   1  -1   1   2
## 535     1     0     0 -1  -1  -1   1   4   2  -1   5   5   1   4
## 536     0     0     0 -1   1  -1   1   3   1   1   5  -1   1   1
## 537     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 538     0     0     0 -1   1  -1   2  -1   2  -1   5   5   1   4
## 539     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 540     0     0     0 -1   1  -1   1   4   1   5   1  -1   1   4
## 541     0     0     0  1  -1  -1   1   2   2  -1   4  -1   1   1
## 542     0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   1
## 543     0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 544     1     0     0  3  -1  -1   1   2   1   3   3   5   1   1
## 545     0     0     0 -1  -1  -1   1   5   2  -1   1   5   1   1
## 546     1     0     0 -1  -1  -1   2  -1   1   3   5  -1   2   4
## 547     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 548     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 549     0     1     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 550     0     0     0 -1   3  -1   1   3   1   5   1  -1   4   4
## 551     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 552     1     0     0 -1   4  -1   2  -1   1   2   4   4   4   4
## 553     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 554     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 555     1     0     0 -1  -1  -1   1   4   1   3   5  -1   1   4
## 556     0     0     0 -1  10  -1   1   5   1   3   5  -1   1   1
## 557     0     0     0 -1   6  -1   1   3   1   4   1   1   1   4
## 558     0     1     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 559     0     0     0 -1   1  -1   1   3   2  -1   5  -1   4   4
## 560     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 561     0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 562     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 563     1     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 564     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 565     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 566     0     0     0 -1   1  -1   1   5   2  -1   5  -1   1   4
## 567     0     0     0 -1   1  -1   2  -1   1   3   4  -1   4   4
## 568     0     0     0  1   1  -1   1   4   1   2   3   4   1   1
## 569     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 570     1     0     0 -1  -1  -1   1   3   1   4   1  -1   1   1
## 571     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 572     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 573     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 574     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 575     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 576     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 577     1     0     0 -1   1  -1   1   3   1   4   5  -1   1   2
## 578     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 579     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   4
## 580     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 581     0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 582     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 583     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 584     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 585     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 586     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 587     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 588     0     1     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 589     0     0     0 -1  -1   1   2  -1   1   6   1   4   1   4
## 590     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 591     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 592     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 593     1     0     0 -1  -1  -1   1   3   1   3   4   4   1   1
## 594     0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 595     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 596     1     0     0 -1  -1  -1   1   2   1   3   5  -1   1   4
## 597     0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 598     0     0     0 -1   1  -1   2  -1   1   5   4  -1   1   1
## 599     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 600     1     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 601     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 602     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 603     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 604     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 605     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 606     1     0     0 -1   7  -1   2  -1   2  -1   5  -1   1   4
## 607     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 608     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 609     0     1     0 -1  -1  -1   1   6   1   5   4  -1   1   4
## 610     0     0     0 -1   2  -1   1   3   1   3   5   4   1   1
## 611     0     0     0 -1  -1  -1   1   5   1   5   1  -1   1   4
## 612     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 613     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 614     0     0     0  2  -1  -1   1   2   2  -1   5  -1   1   1
## 615     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 616     0     0     0 -1   4  -1   1   3   2  -1   1  -1   1   2
## 617     0     0     0 -1   1  -1   1   3   1   4   1  -1   1   1
## 618     1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 619     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 620     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 621     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 622     1     0     0  2  -1  -1   1   2   2  -1   4  -1   1   1
## 623     0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 624     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 625     0     0     0  1  -1  -1   1   3   1   5   5   5   1   1
## 626     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   2
## 627     1     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 628     0     0     0  2  -1  -1   1   3   1   5   5   5   1   1
## 629     0     0     0 -1   6  -1   1   2   2  -1   3  -1   1   4
## 630     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 631     0     0     0 -1   1  -1   2  -1   1   4   4   4   1   2
## 632     0     0     0  2  -1  -1   1   1   2  -1   5   5   1   1
## 633     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 634     0     0     0  2  -1  -1   2  -1   2  -1   4  -1   1   4
## 635     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 636     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 637     0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 638     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 639     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 640     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 641     0     0     0  1  -1  -1   1   3   2  -1   1  -1   1   1
## 642     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 643     0     0     0 -1   1  -1   1   3   1   4   4  -1   1   1
## 644     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 645     1     0     0 -1   7   7   2  -1   2  -1   1  -1   1   4
## 646     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 647     0     0     0 -1   1  -1   2  -1   1   3   5   1   1   4
## 648     0     0     0 -1   1  -1   1   3   1   5   1  -1   1   4
## 649     0     0     0  1  -1  -1   1   3   1   6   4  -1   1   1
## 650     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 651     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 652     0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 653     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 654     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 655     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 656     1     0     0 -1   1  -1   2  -1   2  -1   4   4   4   4
## 657     0     1     0 -1  -1  -1   1   6   2  -1   3   1   1   1
## 658     0     0     0 -1   5  -1   1   6   1   4   1  -1   1   1
## 659     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 660     0     0     0 -1  -1  -1   1   4   1   6   5  -1   1   4
## 661     0     0     0 -1   1  -1   1   4   1   4   5   1   1   4
## 662     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 663     0     0     0 -1   1  -1   2  -1   1   6   4  -1   1   1
## 664     0     0     0 -1  -1   4   1   4   2  -1   1   1   1   2
## 665     0     0     0 -1   1  -1   2  -1   1   2   5  -1   4   4
## 666     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 667     0     0     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 668     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 669     0     0     0 -1  -1   4   2  -1   1   6   1  -1   4   4
## 670     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 671     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 672     0     0     0 -1   4  -1   2  -1   1   6   5  -1   1   4
## 673     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   4
## 674     0     0     0 -1   1  -1   2  -1   1   4   5   5   1   4
## 675     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 676     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 677     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 678     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 679     1     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 680     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 681     0     0     0  1  -1  -1   2  -1   2  -1   4   4   1   1
## 682     0     0     0 -1   1  -1   1   2   1   2   4   3   1   1
## 683     0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 684     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 685     0     0     0 -1   6  -1   1   3   2  -1   1  -1   1   4
## 686     0     0     0 -1   1  -1   2  -1   1   1   5  -1   1   4
## 687     0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 688     0     0     0 -1  -1  -1   2  -1   1   5   4  -1   1   5
## 689     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 690     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 691     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 692     1     0     0 -1   6  -1   2  -1   1   6   1  -1   1   4
## 693     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 694     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 695     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 696     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   3
## 697     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 698     0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 699     0     0     0 -1   1  -1   2  -1   1   3   4  -1   4   4
## 700     0     0     0 -1   1  -1   1   3   2  -1   1   1   1   4
## 701     0     0     0 -1  -1  -1   2  -1   1   6   5  -1   1   4
## 702     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   1
## 703     0     0     0  1   6  -1   2  -1   2  -1   5   1   1   1
## 704     0     0     0 -1  -1   4   2  -1   2  -1   1  -1   4   4
## 705     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 706     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 707     0     1     0 -1  -1  -1   1   4   2  -1   5  -1   4   4
## 708     1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 709     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 710     0     0     0 -1   6  -1   2  -1   1   3   1   1   1   1
## 711     1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 712     1     0     0 -1  -1   1   1   3   1   3   1   1   1   1
## 713     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 714     0     0     0 -1   4  -1   2  -1   2  -1   1  -1   5   5
## 715     0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 716     1     0     0 -1   1  -1   1   6   1   3   5  -1   1   1
## 717     0     0     0 -1   1  -1   1   1   1   3   1  -1   1   2
## 718     0     0     0 -1   1  -1   1   3   2  -1   4   1   1   1
## 719     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 720     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   1
## 721     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 722     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 723     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 724     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 725     0     0     0  1   1  -1   1   2   1   2   3  -1   1   2
## 726     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 727     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 728     0     0     0 -1  -1  -1   1   4   2  -1   5  -1   1   1
## 729     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 730     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 731     0     0     0  2  -1  -1   1   2   2  -1   1  -1   1   4
## 732     1     0     0 -1   6  -1   2  -1   1   3   1  -1   1   1
## 733     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 734     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 735     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 736     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 737     0     0     0  1  -1  -1   1   3   1   1   4   4   1   1
## 738     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 739     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 740     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 741     0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 742     0     0     0 -1   5  -1   2  -1   1   2   5  -1   1   4
## 743     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 744     0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   4
## 745     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 746     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 747     1     0     0 -1   3  -1   1   2   1   5   5  -1   1   2
## 748     0     0     0  2  -1  -1   2  -1   1   5   3  -1   1   4
## 749     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 750     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 751     0     0     0  2  -1  -1   1   3   1   1   2  -1   1   1
## 752     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 753     0     0     0  6   1  -1   2  -1   1   3   1  -1   4   4
## 754     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 755     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   5
## 756     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 757     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 758     0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 759     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 760     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 761     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 762     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 763     0     0     0 -1   6  -1   1   4   1   5   1  -1   1   1
## 764     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 765     0     0     0 -1   6  -1   1   4   1   5   1  -1   1   4
## 766     1     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 767     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 768     0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   4
## 769     0     0     0 -1   1  -1   1   5   1   4   5  -1   1   1
## 770     0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 771     0     0     0 -1  -1   5   1   5   1   5   4   4   1   2
## 772     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 773     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 774     0     0     0 -1  -1   5   2  -1   1   6   5   1   1   4
## 775     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 776     0     0     0 -1  -1  -1   1   3   2  -1   4  -1   4   4
## 777     0     0     0 -1  -1  -1   1   4   1   2   3   3   1   4
## 778     0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 779     0     0     0 -1   1  -1   1   3   1   3   5  -1   1   4
## 780     0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 781     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 782     0     0     0 -1  -1   5   1   6   1   2   5   1   1   2
## 783     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   1
## 784     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 785     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 786     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 787     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 788     0     0     0 -1   1   7   1   5   2  -1   1  -1   1   4
## 789     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 790     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 791     0     0     0 -1   3  -1   2  -1   1   6   1  -1   2   4
## 792     0     0     0  1   3  -1   1   4   1   3   5   1   1   1
## 793     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 794     0     0     0 -1  -1  -1   1   1   1   1   2  -1   1   1
## 795     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   2   4
## 796     1     0     0 -1   1  -1   1   3   1   3   4  -1   1   4
## 797     0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 798     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 799     0     0     0 -1   5  -1   2  -1   2  -1   5  -1   1   2
## 800     0     0     0  2  -1  -1   2  -1   2  -1   5  -1   1   4
## 801     0     0     0 -1   1  -1   1   3   1   6   1  -1   1   1
## 802     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 803     0     0     0 -1  -1   4   1   1   1   2   1  -1   1   4
## 804     1     0     0 -1  -1  -1   2  -1   1   2   4  -1   1   1
## 805     1     0     0 -1  -1  -1   1   5   1   3   4  -1   1   1
## 806     0     0     0 -1  -1  -1   1   4   1   2   3  -1   1   1
## 807     1     0     0 -1  -1  -1   2  -1   2  -1   4  -1   4   4
## 808     0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   4
## 809     0     1     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 810     0     0     0 -1   3  -1   2  -1   2  -1   5  -1   1   1
## 811     0     0     0 -1   4  -1   1   4   1   3   1  -1   1   1
## 812     0     0     0 -1   1  -1   2  -1   1   6   1  -1   2   2
## 813     0     0     0 -1   6  -1   2  -1   1   1   5   4   1   1
## 814     0     0     0 -1   1   7   2  -1   2  -1   1  -1   4   4
## 815     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 816     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 817     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 818     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   1
## 819     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 820     0     0     0 -1   3  -1   2  -1   1   6   4  -1   1   1
## 821     1     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   4
## 822     0     1     0 -1  -1  -1   1   3   1   2   5  -1   1   1
## 823     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 824     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 825     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 826     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 827     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 828     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 829     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 830     0     0     0 -1  -1  -1   1   3   2  -1   3  -1   1   4
## 831     0     1     0 -1  -1  -1   2  -1   1   4   1  -1   1   1
## 832     0     0     0 -1   6   5   1   2   1   5   1   4   1   1
## 833     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 834     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 835     0     0     0 -1   6  -1   1   4   2  -1   1  -1   1   1
## 836     0     0     0 -1  -1   1   2  -1   1   6   1  -1   2   4
## 837     0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 838     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 839     0     0     0 -1  -1  -1   1   3   1   6   5  -1   1   1
## 840     0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 841     1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 842     0     0     0 -1   4  -1   1   3   1   3   4  -1   1   2
## 843     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 844     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 845     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 846     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 847     0     0     0 -1   1  -1   1   4   1   4   5  -1   1   4
## 848     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 849     0     0     0 -1  -1  -1   1   2   2  -1   4  -1   1   4
## 850     1     0     0  1  -1  -1   1   3   1   3   1   1   1   1
## 851     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 852     0     0     0 -1  -1  -1   1   3   1   3   4   5   1   1
## 853     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 854     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 855     0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 856     1     0     0 -1   1  -1   2  -1   1   1   3   5   1   4
## 857     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 858     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 859     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 860     0     0     0 -1  -1   1   2  -1   2  -1   1  -1   1   4
## 861     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 862     0     0     0 -1   1  -1   1   6   1   5   1  -1   1   1
## 863     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 864     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 865     0     0     0 -1  -1  -1   1   3   1   4   4   4   1   2
## 866     0     0     0  6  -1  -1   2  -1   2  -1   1  -1   1   2
## 867     0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   2
## 868     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 869     0     0     0 -1   4  -1   2  -1   2  -1   1   1   4   4
## 870     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 871     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 872     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 873     0     0     0 -1   9  -1   1   6   2  -1   5  -1   1   2
## 874     0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 875     1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   1
## 876     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 877     1     0     0 -1   1  -1   1   2   1   4   3  -1   1   1
## 878     0     0     0 -1   6  -1   2  -1   1   6   5  -1   1   4
## 879     0     0     0 -1   1  -1   1   5   2  -1   1  -1   4   4
## 880     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 881     0     0     0 -1  -1  -1   1   3   1   3   4  -1   1   4
## 882     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 883     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 884     1     0     0 -1   1  -1   1   5   1   5   4   4   1   4
## 885     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 886     0     0     0  2  -1  -1   2  -1   2  -1   1   1   1   1
## 887     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 888     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 889     0     0     0 -1   1  -1   1   6   1   2   4  -1   1   1
## 890     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 891     0     0     0 -1  -1  -1   1   4   1   3   5  -1   1   1
## 892     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 893     0     0     0  1  -1  -1   1   3   2  -1   1  -1   1   1
## 894     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 895     0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   1
## 896     0     0     0 -1   6  -1   2  -1   1   3   4   1   1   2
## 897     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 898     0     0     0 -1   3  -1   1   4   2  -1   1  -1   1   2
## 899     0     0     0 -1   5  -1   1   5   2  -1   1  -1   1   4
## 900     0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 901     0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   1
## 902     0     0     0 -1   1   5   1   6   1   4   1  -1   1   4
## 903     1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 904     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 905     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 906     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 907     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 908     1     0     0  6  -1  -1   1   6   1   6   5  -1   1   4
## 909     0     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 910     1     0     0 -1   1   1   2  -1   1   3   1  -1   1   4
## 911     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 912     1     0     0  2   1  -1   1   3   1   3   5   1   1   1
## 913     0     0     0 -1  -1   5   1   3   1   3   5  -1   1   4
## 914     1     0     0 -1  -1  -1   2  -1   1   5   1   5   1   4
## 915     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 916     0     0     0 -1   1  -1   2  -1   1   2   4  -1   1   4
## 917     0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 918     0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 919     0     0     0  3  -1  -1   1   3   2  -1   5  -1   1   2
## 920     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 921     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 922     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 923     0     0     0 -1  -1   5   1   3   2  -1   1  -1   1   1
## 924     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 925     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 926     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 927     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 928     1     0     0 -1  -1  -1   1   5   1   4   1  -1   1   1
## 929     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 930     0     0     0 -1   5  -1   2  -1   1   3   1  -1   1   1
## 931     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 932     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 933     0     0     0 -1   1  -1   1   5   1   3   4  -1   1   4
## 934     0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 935     0     0     0 -1   1  -1   1   5   1   6   1  -1   1   1
## 936     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 937     0     0     0  1   1  -1   1   5   1   6   5   5   1   1
## 938     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 939     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 940     1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 941     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 942     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 943     0     0     0 -1   1  -1   1   4   1   3   4   4   1   1
## 944     0     0     0 -1   2  -1   1   5   2  -1   4  -1   1   4
## 945     0     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 946     0     0     0 -1   2  -1   1   3   1   3   1   3   4   4
## 947     0     0     0 -1   5  -1   2  -1   1   3   5  -1   1   2
## 948     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 949     0     0     0 -1   3  -1   2  -1   2  -1   1  -1   2   4
## 950     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 951     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 952     0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   1
## 953     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 954     0     0     0 -1   1  -1   1   2   1   2   5   4   4   4
## 955     1     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 956     0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 957     0     0     0 -1   1  -1   1   5   1   5   1  -1   1   2
## 958     0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 959     0     1     0 -1  -1  -1   2  -1   1   3   3  -1   4   4
## 960     0     0     0 -1   4   5   1   6   1   5   1  -1   1   4
## 961     1     0     0 -1  -1  -1   2  -1   2  -1   2   1   1   4
## 962     1     0     0 -1   1  -1   2  -1   2  -1   4  -1   1   4
## 963     0     0     0 -1   1  -1   1   5   1   6   1  -1   1   4
## 964     0     0     0  2  -1  -1   1   1   1   4   3   3   1   1
## 965     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 966     1     0     0  6  -1  -1   1   2   2  -1   1  -1   1   1
## 967     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 968     0     0     0 -1   1   4   1   5   1   5   1  -1   1   4
## 969     1     0     0 -1  -1  -1   2  -1   1   3   4  -1   2   4
## 970     0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   4
## 971     1     0     0 -1   1  -1   1   4   1   3   3   4   1   2
## 972     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 973     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 974     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 975     0     1     0 -1  -1  -1   1   3   1   2   3   4   1   1
## 976     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 977     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 978     0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 979     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 980     0     0     0 -1   6  -1   2  -1   2  -1   3   1   1   4
## 981     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 982     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 983     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 984     1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 985     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 986     0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 987     0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   1
## 988     0     0     0 -1  -1  -1   2  -1   1   5   1   1   1   4
## 989     0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 990     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 991     0     0     0 -1   7  -1   1   4   1   4   5  -1   1   4
## 992     0     0     0 -1  -1  -1   1   3   1   2   4   4   1   1
## 993     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 994     0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 995     0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 996     0     0     0 -1   1  -1   2  -1   1   2   5  -1   1   4
## 997     0     0     0  2  -1  -1   1   3   2  -1   1  -1   1   4
## 998     1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 999     0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1000    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1001    0     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1002    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1003    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1004    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   4   4
## 1005    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1006    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1007    0     0     0 -1  -1   1   2  -1   1   2   1   5   1   4
## 1008    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1009    0     0     0 -1   1  -1   1   2   2  -1   5  -1   1   1
## 1010    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1011    0     0     0 -1  -1  -1   1   4   1   5   4  -1   1   1
## 1012    0     0     0 -1   5  -1   1   6   1   6   1  -1   1   4
## 1013    0     0     0  6  -1  -1   2  -1   1   3   1   1   1   4
## 1014    0     0     0 -1   1   5   2  -1   2  -1   1  -1   1   4
## 1015    0     0     0 -1  -1  -1   2  -1   1   5   3  -1   1   1
## 1016    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 1017    0     0     0 -1   6  -1   2  -1   1   4   4   5   1   1
## 1018    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1019    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1020    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1021    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1022    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1023    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 1024    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1025    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1026    0     0     0 -1   5  -1   2  -1   1   3   5   5   1   2
## 1027    0     0     0 -1   3   7   2  -1   2  -1   1  -1   4   4
## 1028    0     0     0 -1   6  -1   1   5   2  -1   4  -1   1   2
## 1029    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1030    0     0     0 -1  -1  -1   1   3   1   3   2  -1   1   4
## 1031    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1032    1     0     0 -1   9  -1   2  -1   2  -1   1  -1   1   2
## 1033    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1034    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1035    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   2
## 1036    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1037    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1038    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1039    1     0     0 -1   5  -1   1   2   2  -1   4   4   1   2
## 1040    0     0     0 -1   1  -1   1   6   1   6   4  -1   1   1
## 1041    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1042    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1043    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1044    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1045    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1046    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   4   4
## 1047    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1048    0     0     0 -1  -1  -1   1   2   1   3   1  -1   1   5
## 1049    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1050    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1051    0     0     0 -1  -1  -1   1   2   2  -1   4   4   1   4
## 1052    0     0     0 -1   8  -1   1   3   2  -1   1  -1   1   4
## 1053    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1054    0     0     0 -1  -1  -1   2  -1   1   1   1  -1   1   1
## 1055    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1056    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1057    0     0     0 -1   1  -1   1   3   1   3   5  -1   1   3
## 1058    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1059    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1060    1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1061    0     0     0 -1   1  -1   1   4   1   2   5   1   1   2
## 1062    0     1     0 -1  -1  -1   1   4   2  -1   1  -1   1   1
## 1063    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   1
## 1064    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1065    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1066    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 1067    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1068    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1069    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1070    0     0     0 -1   1  -1   1   6   1   6   4  -1   1   4
## 1071    0     0     0 -1   5  -1   1   4   1   3   5  -1   1   4
## 1072    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1073    0     0     0 -1  -1  -1   2  -1   2  -1   4   4   4   4
## 1074    0     0     0 -1   1  -1   1   2   1   5   1  -1   1   4
## 1075    1     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 1076    0     0     0 -1   6  -1   1   3   2  -1   5  -1   2   4
## 1077    0     0     0  2  -1  -1   1   3   2  -1   5   5   1   1
## 1078    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1079    0     1     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 1080    0     1     0 -1  -1  -1   1   3   1   3   5  -1   1   4
## 1081    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1082    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1083    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1084    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1085    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1086    0     0     0 -1   6  -1   1   6   1   2   5  -1   1   1
## 1087    0     0     0 -1  -1  -1   1   4   1   4   1  -1   1   4
## 1088    1     0     0 -1  -1  -1   2  -1   1   2   5  -1   1   4
## 1089    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1090    0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 1091    0     0     0 -1   1  -1   1   4   1   1   3  -1   1   1
## 1092    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 1093    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1094    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1095    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1096    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   2
## 1097    0     0     0 -1   1  -1   1   6   2  -1   1  -1   4   4
## 1098    1     0     0 -1   7  -1   2  -1   2  -1   1   1   1   4
## 1099    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1100    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1101    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1102    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1103    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1104    0     0     0  2  -1  -1   1   6   1   5   4   4   1   1
## 1105    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   1
## 1106    0     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   1
## 1107    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1108    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1109    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1110    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1111    0     0     0 -1   4  -1   1   1   1   1   5  -1   1   4
## 1112    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1113    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1114    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1115    0     0     0 -1  -1   7   1   5   2  -1   5  -1   1   2
## 1116    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1117    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1118    1     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1119    0     0     0 -1  10  -1   2  -1   2  -1   1  -1   1   4
## 1120    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 1121    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1122    0     0     0  1  -1  -1   1   1   2  -1   5   1   1   1
## 1123    0     1     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1124    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1125    1     0     0 -1   1  -1   1   3   1   3   1  -1   1   1
## 1126    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1127    1     0     0 -1   6  -1   1   3   1   3   5  -1   1   1
## 1128    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   4
## 1129    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1130    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 1131    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   4
## 1132    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1133    0     0     0 -1   5  -1   2  -1   2  -1   1   1   4   4
## 1134    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1135    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1136    0     0     0  2  -1  -1   1   3   2  -1   5   4   1   1
## 1137    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1138    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1139    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1140    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   5
## 1141    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1142    0     0     0 -1   1  -1   1   5   1   3   1  -1   1   1
## 1143    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1144    0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 1145    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1146    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1147    0     0     0 -1   1  -1   2  -1   1   3   4   1   1   4
## 1148    0     0     0 -1  -1   5   1   5   2  -1   1  -1   4   4
## 1149    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1150    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1151    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   3
## 1152    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1153    0     0     0 -1   1  -1   1   4   1   3   3  -1   1   4
## 1154    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1155    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1156    1     0     0 -1  -1  -1   2  -1   1   2   4   4   1   1
## 1157    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1158    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1159    0     0     0 -1  -1  -1   1   3   1   2   1  -1   1   4
## 1160    0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1161    1     0     0  2  -1  -1   1   6   1   2   3   4   1   1
## 1162    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1163    0     0     0  1  -1  -1   1   3   2  -1   1   1   1   1
## 1164    1     0     0 -1   5  -1   2  -1   1   3   4   1   1   4
## 1165    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1166    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1167    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1168    1     0     0 -1  -1  -1   1   6   1   3   1  -1   1   1
## 1169    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1170    0     0     0 -1   2  -1   1   5   1   2   2   2   1   1
## 1171    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1172    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1173    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1174    1     0     0 -1  -1  -1   1   5   1   5   4  -1   1   1
## 1175    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1176    0     0     0  1   1  -1   2  -1   2  -1   1  -1   5   5
## 1177    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   4   4
## 1178    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1179    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1180    0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 1181    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1182    0     0     0 -1   6  -1   2  -1   1   2   5  -1   1   4
## 1183    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1184    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   5   4
## 1185    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1186    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1187    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1188    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   1
## 1189    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1190    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1191    0     0     0 -1   7  -1   1   4   1   2   4   4   1   2
## 1192    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1193    1     0     0 -1   1  -1   2  -1   1   2   1   1   5   4
## 1194    0     0     0 -1   1  -1   1   5   1   2   1  -1   1   2
## 1195    1     0     0 -1  -1  -1   1   3   1   4   3   1   1   1
## 1196    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   2   4
## 1197    0     0     0 -1   6  -1   2  -1   2  -1   1   1   1   4
## 1198    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   3
## 1199    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1200    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1201    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1202    0     0     0 -1   8  -1   2  -1   2  -1   1   1   4   4
## 1203    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   2
## 1204    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1205    0     0     0 -1  -1  -1   1   4   2  -1   5   1   1   1
## 1206    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1207    0     0     0 -1   6  -1   2  -1   2  -1   5   3   1   4
## 1208    0     0     0 -1   2  -1   2  -1   2  -1   1  -1   1   4
## 1209    1     0     0 -1   6  -1   1   6   2  -1   1  -1   2   4
## 1210    0     0     0 -1   6  -1   1   3   1   3   5  -1   1   2
## 1211    1     0     0  2  -1  -1   1   3   2  -1   5  -1   1   4
## 1212    0     0     0 -1   1  -1   2  -1   1   3   5  -1   2   4
## 1213    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1214    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1215    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 1216    0     0     0 -1   7  -1   2  -1   2  -1   5  -1   1   2
## 1217    1     0     0 -1   1  -1   2  -1   1   4   1  -1   2   2
## 1218    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   1
## 1219    0     0     0 -1   1  -1   2  -1   2  -1   3   4   1   4
## 1220    0     0     0 -1  -1  -1   2  -1   1   6   5   1   1   4
## 1221    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1222    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1223    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   2
## 1224    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1225    0     1     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1226    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1227    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1228    0     0     0 -1  -1  -1   1   4   1   3   1  -1   1   1
## 1229    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1230    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1231    0     0     0  1  -1  -1   1   4   2  -1   5   1   1   4
## 1232    1     0     0 -1   9  -1   2  -1   2  -1   1  -1   4   4
## 1233    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1234    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1235    0     0     0 -1   5  -1   1   5   1   1   5   5   1   4
## 1236    0     1     0 -1  -1  -1   1   6   2  -1   5   4   1   4
## 1237    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1238    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1239    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   1
## 1240    0     0     0 -1  -1  -1   1   4   1   4   5   5   1   1
## 1241    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   4
## 1242    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1243    0     1     0 -1  -1  -1   2  -1   1   6   5   4   1   1
## 1244    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1245    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1246    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1247    0     0     0  1  -1  -1   1   4   1   4   1  -1   1   1
## 1248    0     0     0 -1   1  -1   1   6   1   3   4   4   1   4
## 1249    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1250    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1251    0     0     0 -1   1  -1   1   4   1   3   1  -1   1   4
## 1252    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1253    0     1     0 -1  -1  -1   2  -1   1   4   5  -1   1   1
## 1254    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 1255    0     0     0 -1  -1  -1   1   5   1   3   5  -1   1   1
## 1256    0     0     0  6  -1  -1   1   3   2  -1   5   5   1   2
## 1257    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1258    0     0     0 -1  -1   4   2  -1   2  -1   1   1   1   1
## 1259    0     0     0  2  -1  -1   1   5   2  -1   1   1   1   2
## 1260    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   2
## 1261    0     0     0 -1  -1  -1   2  -1   2  -1   5   1   1   1
## 1262    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   1
## 1263    0     0     0 -1   1  -1   2  -1   1   5   3  -1   4   4
## 1264    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1265    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1266    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1267    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1268    0     0     0 -1   1  -1   1   4   1   2   1  -1   1   4
## 1269    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 1270    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1271    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1272    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1273    0     0     0 -1   1  -1   1   5   1   3   1  -1   1   2
## 1274    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   5
## 1275    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 1276    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1277    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1278    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1279    0     0     0 -1   1  -1   1   4   1   2   4   3   1   1
## 1280    0     0     0 -1   1  -1   2  -1   2  -1   1   5   1   4
## 1281    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1282    0     0     0  2  -1  -1   1   4   1   5   4   4   1   1
## 1283    1     0     0 -1   1  -1   1   6   1   3   4  -1   1   4
## 1284    0     0     0 -1   1  -1   1   6   1   4   1  -1   1   4
## 1285    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1286    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1287    0     0     0 -1   1  -1   2  -1   1   1   5   4   1   1
## 1288    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1289    0     0     0  2   2  -1   1   1   1   5   5   4   1   1
## 1290    1     0     0 -1   1  -1   2  -1   1   1   1  -1   4   4
## 1291    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1292    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1293    0     0     0 -1   1  -1   1   5   1   5   1  -1   1   4
## 1294    0     0     0 -1  10  -1   1   4   2  -1   3   1   1   4
## 1295    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1296    0     0     0 -1  -1   4   2  -1   1   4   1  -1   1   2
## 1297    0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 1298    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 1299    0     0     0 -1   3  -1   1   6   1   2   1   4   1   4
## 1300    0     0     0 -1   1  -1   1   3   1   5   1  -1   1   1
## 1301    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1302    0     0     0 -1   6  -1   1   3   2  -1   5   5   1   1
## 1303    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1304    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1305    0     0     0 -1   6  -1   1   5   1   3   5   5   1   4
## 1306    0     0     0  2  -1  -1   1   2   1   2   4   4   1   1
## 1307    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1308    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1309    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1310    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1311    1     0     0 -1  -1  -1   2  -1   1   3   1   1   1   1
## 1312    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1313    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1314    1     0     0 -1  -1  -1   1   4   1   3   1  -1   1   4
## 1315    0     0     0 -1   1  -1   1   2   1   3   1   1   1   4
## 1316    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   4   4
## 1317    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1318    0     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 1319    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1320    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1321    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1322    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1323    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1324    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1325    1     0     0 -1  -1  -1   1   3   2  -1   3   5   1   1
## 1326    0     0     0  1  -1  -1   1   4   2  -1   4   1   2   1
## 1327    0     0     0 -1  -1   4   2  -1   1   3   1   4   1   4
## 1328    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1329    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   4
## 1330    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1331    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1332    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1333    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1334    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1335    0     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   4
## 1336    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1337    1     0     0 -1   6  -1   1   3   1   3   5   5   1   2
## 1338    0     0     0  2  -1  -1   1   2   2  -1   4  -1   4   4
## 1339    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1340    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1341    0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 1342    1     0     0 -1  -1  -1   1   3   1   3   4  -1   1   4
## 1343    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1344    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1345    0     0     0 -1   6   4   1   3   2  -1   1   5   1   1
## 1346    1     0     0 -1  -1  -1   1   5   1   5   1  -1   1   4
## 1347    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1348    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1349    0     0     0 -1   1  -1   2  -1   2  -1   1   1   1   4
## 1350    0     0     0 -1   5  -1   2  -1   1   1   5  -1   1   1
## 1351    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1352    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1353    0     0     0 -1   1  -1   1   3   1   2   4  -1   1   1
## 1354    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1355    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1356    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1357    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1358    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1359    0     0     0 -1  -1  -1   1   5   1   3   1  -1   2   1
## 1360    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1361    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1362    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   3   4
## 1363    0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   2
## 1364    0     0     0 -1   3  -1   2  -1   1   6   5  -1   4   4
## 1365    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1366    0     0     0 -1  -1   9   2  -1   2  -1   4  -1   1   4
## 1367    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 1368    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 1369    0     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   4
## 1370    0     0     0 -1   8   5   1   4   1   4   5  -1   1   2
## 1371    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1372    0     0     0 -1  -1   1   1   3   1   5   5   5   1   2
## 1373    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1374    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1375    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1376    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1377    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1378    0     0     0  1   1  -1   1   3   1   2   3  -1   1   1
## 1379    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1380    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1381    0     0     0 -1   1  -1   1   4   2  -1   4  -1   1   4
## 1382    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1383    0     0     0 -1   1   1   1   5   1   5   1  -1   1   2
## 1384    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1385    0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   2
## 1386    0     0     0 -1  -1   5   1   3   1   2   4   4   1   4
## 1387    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1388    0     0     0 -1   1  -1   1   2   2  -1   1  -1   1   2
## 1389    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1390    1     0     0 -1  -1  -1   1   6   1   3   3  -1   1   1
## 1391    0     0     0 -1   1  -1   2  -1   1   5   5  -1   1   1
## 1392    1     0     0 -1  -1  -1   2  -1   1   2   1   5   1   1
## 1393    0     0     0 -1  -1  -1   1   3   1   2   3  -1   1   2
## 1394    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1395    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1396    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1397    0     0     0  2   1  -1   1   4   1   4   1   4   1   4
## 1398    0     0     0  1  -1  -1   1   4   1   3   1  -1   1   1
## 1399    0     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 1400    0     0     0 -1  -1   5   2  -1   1   3   5  -1   1   4
## 1401    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1402    0     0     0 -1   1  -1   1   3   2  -1   5  -1   4   4
## 1403    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   2   5
## 1404    0     0     0  2  -1  -1   1   2   1   3   4   4   1   1
## 1405    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   5
## 1406    0     0     0 -1   1  -1   1   3   1   3   1  -1   1   4
## 1407    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1408    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1409    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1410    0     0     0 -1   1  -1   1   5   1   5   5  -1   1   4
## 1411    0     0     0 -1   1  -1   2  -1   1   4   4  -1   1   1
## 1412    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1413    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1414    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1415    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1416    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1417    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1418    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1419    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1420    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1421    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   4   4
## 1422    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1423    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1424    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 1425    0     0     0 -1   5  -1   1   2   1   3   3   3   1   2
## 1426    1     0     0 -1   1  -1   1   6   1   4   1  -1   1   1
## 1427    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1428    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1429    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1430    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1431    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1432    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 1433    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1434    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1435    0     1     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 1436    1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   2
## 1437    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1438    0     0     0 -1  -1  -1   2  -1   1   6   1   1   1   4
## 1439    0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 1440    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1441    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1442    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   4
## 1443    0     0     0 -1   6  -1   1   4   1   4   4   5   1   4
## 1444    0     0     0 -1  -1   1   1   2   1   1   1  -1   1   4
## 1445    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1446    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1447    0     0     0 -1   3  -1   2  -1   2  -1   5  -1   1   4
## 1448    0     0     0 -1   1  -1   1   4   2  -1   1   4   1   4
## 1449    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1450    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1451    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1452    0     0     0  1   1  -1   1   6   1   6   4  -1   1   3
## 1453    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1454    0     0     0  1   1  -1   1   6   1   6   1  -1   1   2
## 1455    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1456    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1457    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1458    0     0     0 -1   1   4   1   4   2  -1   4  -1   1   1
## 1459    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1460    1     0     0 -1   6  -1   2  -1   1   2   5  -1   1   4
## 1461    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1462    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1463    0     0     0 -1   8  -1   1   5   1   3   1   1   1   2
## 1464    0     0     0  1   1  -1   1   1   1   3   4   4   1   1
## 1465    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1466    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   5   5
## 1467    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1468    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1469    0     0     0 -1   3  -1   1   4   1   2   1   1   1   1
## 1470    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 1471    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1472    0     0     0 -1   3  -1   1   3   2  -1   1  -1   4   4
## 1473    0     0     0 -1  -1  -1   2  -1   1   3   4   1   1   1
## 1474    0     0     0 -1  -1  -1   2  -1   2  -1   2   4   1   1
## 1475    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1476    0     0     0 -1   1  -1   1   4   1   5   1  -1   1   4
## 1477    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   4
## 1478    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 1479    0     0     0 -1   5  -1   1   3   1   3   4  -1   1   1
## 1480    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1481    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1482    0     0     0 -1  10  -1   1   1   1   3   5   5   1   1
## 1483    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1484    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1485    0     0     0  1  -1  -1   1   3   2  -1   1   1   1   1
## 1486    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1487    1     0     0 -1  -1  -1   2  -1   1   2   1  -1   4   4
## 1488    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1489    0     0     0 -1   6  -1   1   3   1   3   5  -1   1   4
## 1490    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1491    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1492    0     1     0 -1  -1  -1   1   3   1   6   5  -1   1   1
## 1493    0     0     0  3   1  -1   1   2   2  -1   2   4   1   4
## 1494    0     0     0 -1  -1  -1   1   1   1   4   5  -1   1   4
## 1495    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1496    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1497    0     0     0 -1  -1   5   1   3   1   3   1   1   1   4
## 1498    0     0     0 -1  -1   5   1   3   1   2   5  -1   1   5
## 1499    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   5
## 1500    0     0     0  2   1   4   1   2   1   2   1   1   1   1
## 1501    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1502    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1503    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1504    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 1505    0     0     0 -1   1  -1   1   3   1   2   4   4   1   2
## 1506    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1507    0     0     0 -1   1  -1   1   2   1   2   1  -1   1   2
## 1508    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1509    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1510    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1511    1     0     0 -1   1   7   2  -1   2  -1   1  -1   1   1
## 1512    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1513    0     0     0 -1   1  -1   1   6   1   6   5  -1   1   1
## 1514    0     0     0 -1   5  -1   1   4   2  -1   5  -1   1   4
## 1515    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1516    0     1     0 -1  -1  -1   2  -1   1   4   5  -1   4   4
## 1517    1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1518    1     0     0 -1  -1  -1   2  -1   1   2   5  -1   4   4
## 1519    0     0     0 -1   6  -1   2  -1   2  -1   5   1   4   1
## 1520    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1521    0     0     0 -1   1  -1   1   4   1   6   1  -1   1   1
## 1522    0     0     0 -1  -1   5   1   6   2  -1   5  -1   1   1
## 1523    0     0     0 -1   1  -1   1   3   1   4   5  -1   1   1
## 1524    0     0     0 -1   1  -1   1   4   1   3   5  -1   1   4
## 1525    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1526    0     0     0 -1   1   4   1   3   1   6   1  -1   1   1
## 1527    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1528    0     0     0 -1   1  -1   1   3   2  -1   1   1   4   4
## 1529    1     0     0 -1  -1  -1   1   4   1   4   2   1   1   1
## 1530    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1531    0     0     0 -1   9  -1   2  -1   1   3   5  -1   2   4
## 1532    0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   4
## 1533    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1534    0     0     0 -1   1  -1   1   4   2  -1   4   4   1   2
## 1535    0     0     0 -1   4  -1   1   5   1   4   1  -1   1   2
## 1536    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1537    0     0     0 -1   4  -1   1   6   1   3   1  -1   1   4
## 1538    0     0     0 -1   1  -1   1   3   2  -1   1  -1   4   4
## 1539    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   1
## 1540    0     0     0 -1   6  -1   2  -1   1   2   1  -1   1   4
## 1541    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1542    0     1     0 -1  -1  -1   2  -1   2  -1   2  -1   1   4
## 1543    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1544    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1545    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1546    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   4   4
## 1547    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   4
## 1548    0     0     0 -1  -1   5   1   3   1   4   4   1   1   1
## 1549    0     0     0 -1  -1  -1   2  -1   1   6   5  -1   4   4
## 1550    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   2
## 1551    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1552    1     0     0 -1   5  -1   1   5   2  -1   5  -1   1   1
## 1553    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1554    0     0     0 -1  -1   7   1   3   1   1   1  -1   2   2
## 1555    0     1     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1556    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1557    0     0     0 -1   5  -1   2  -1   1   5   5   5   1   1
## 1558    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1559    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 1560    0     0     0 -1   3   7   2  -1   2  -1   1  -1   1   1
## 1561    0     0     0 -1   6  -1   2  -1   1   3   1  -1   1   5
## 1562    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   1
## 1563    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1564    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   4
## 1565    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1566    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1567    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1568    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1569    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1570    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 1571    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1572    0     0     0 -1   1  -1   2  -1   2  -1   1   1   4   4
## 1573    0     0     0 -1   1  -1   2  -1   1   2   3  -1   1   4
## 1574    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1575    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1576    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1577    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1578    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   1
## 1579    0     0     0 -1   1  -1   1   6   1   6   2  -1   1   2
## 1580    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1581    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1582    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1583    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1584    0     0     0 -1   3  -1   1   4   1   4   1  -1   4   4
## 1585    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1586    0     0     0 -1   1  -1   1   2   1   3   4  -1   1   4
## 1587    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1588    0     0     0 -1   1  -1   2  -1   1   6   1  -1   4   4
## 1589    0     0     0 -1   5  -1   1   5   1   2   5  -1   1   4
## 1590    0     0     0 -1   7  -1   1   4   1   2   1  -1   1   4
## 1591    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1592    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1593    1     0     0 -1   6  -1   1   3   1   3   5  -1   1   1
## 1594    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1595    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 1596    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1597    0     0     0 -1  -1  -1   1   4   1   3   1  -1   1   2
## 1598    0     0     0 -1   1  -1   1   5   1   6   5  -1   1   1
## 1599    1     0     0 -1   3  -1   2  -1   2  -1   1   1   4   4
## 1600    0     0     0 -1  -1   4   1   2   1   6   5   4   1   1
## 1601    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   5
## 1602    0     0     0 -1   1   4   2  -1   1   2   1  -1   1   2
## 1603    0     0     0 -1  -1   7   2  -1   2  -1   1  -1   4   4
## 1604    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1605    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1606    0     0     0 -1  -1  -1   1   3   1   3   5  -1   1   4
## 1607    0     0     0 -1   2  -1   2  -1   2  -1   5  -1   1   4
## 1608    0     0     0 -1   6  -1   2  -1   1   3   1   1   1   4
## 1609    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1610    0     0     0  2  -1  -1   1   4   1   4   1   1   1   2
## 1611    1     0     0 -1   6  -1   1   2   1   3   2   3   1   1
## 1612    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   2
## 1613    1     0     0 -1   1  -1   1   6   1   4   1  -1   4   4
## 1614    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1615    0     0     0 -1   3   4   1   1   1   4   4   4   1   4
## 1616    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1617    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1618    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1619    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1620    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1621    0     0     0 -1   2  -1   1   3   1   3   1  -1   1   4
## 1622    0     0     0 -1   6  -1   1   3   1   6   3  -1   1   4
## 1623    1     0     0 -1   1  -1   2  -1   1   6   4   4   1   1
## 1624    1     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 1625    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1626    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1627    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1628    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   1   2
## 1629    0     0     0  5   1  -1   1   3   2  -1   1  -1   1   1
## 1630    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1631    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   4   4
## 1632    1     0     0 -1  -1  -1   2  -1   1   4   3   1   1   4
## 1633    0     0     0 -1  -1  -1   2  -1   1   2   1  -1   1   4
## 1634    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1635    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1636    0     0     0  1  -1  -1   1   4   1   6   4   4   1   1
## 1637    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1638    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1639    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1640    0     0     0 -1  -1  -1   1   5   1   5   1  -1   1   3
## 1641    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1642    1     0     0 -1   1  -1   1   5   2  -1   1  -1   1   1
## 1643    0     0     0 -1   5  -1   2  -1   1   3   1   1   1   4
## 1644    1     0     0 -1   6  -1   1   3   1   3   3  -1   1   2
## 1645    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   2
## 1646    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1647    1     0     0 -1   5  -1   1   5   1   6   1  -1   1   4
## 1648    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1649    0     1     0 -1  -1  -1   1   6   2  -1   5  -1   1   1
## 1650    0     0     0 -1   3  -1   1   4   1   3   5  -1   1   2
## 1651    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1652    0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 1653    0     0     0 -1  -1   1   2  -1   2  -1   1   1   1   4
## 1654    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1655    0     0     0  3   1  -1   1   2   2  -1   5  -1   1   4
## 1656    0     0     0  2  -1  -1   1   1   2  -1   2   4   1   1
## 1657    1     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   1
## 1658    0     0     0 -1   1  -1   1   1   1   3   4   4   1   1
## 1659    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1660    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1661    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1662    1     0     0 -1  -1  -1   1   3   1   4   5  -1   1   1
## 1663    0     0     0 -1   3  -1   2  -1   1   3   1  -1   1   2
## 1664    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1665    0     1     0 -1  -1  -1   1   5   1   5   4  -1   1   1
## 1666    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   2
## 1667    0     0     0 -1  -1  -1   1   2   1   3   4   4   1   4
## 1668    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 1669    1     0     0 -1   3  -1   1   6   1   4   5  -1   1   4
## 1670    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1671    1     0     0 -1  -1  -1   2  -1   2  -1   4  -1   1   1
## 1672    0     0     0 -1   6  -1   2  -1   2  -1   1   3   1   4
## 1673    0     0     0 -1   7  -1   1   5   2  -1   4  -1   1   1
## 1674    0     0     0  3  -1  -1   2  -1   1   2   4   4   1   2
## 1675    0     0     0 -1   1  -1   1   4   1   1   5   4   1   1
## 1676    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1677    0     0     0 -1   1  -1   2  -1   1   4   5  -1   4   4
## 1678    0     0     0 -1   6  -1   1   3   2  -1   2   4   1   1
## 1679    0     0     0 -1  -1   7   2  -1   1   4   5   4   1   1
## 1680    0     0     0 -1  -1   7   1   2   1   4   1  -1   1   2
## 1681    0     0     0 -1  -1   4   1   2   2  -1   1   1   1   2
## 1682    0     0     0 -1   1  -1   2  -1   1   5   1   1   1   4
## 1683    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1684    0     0     0 -1   1  -1   2  -1   2  -1   3  -1   1   5
## 1685    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1686    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1687    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1688    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1689    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1690    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1691    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1692    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1693    0     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1694    1     0     0 -1   1  -1   1   6   2  -1   4  -1   1   4
## 1695    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   3   3
## 1696    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 1697    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1698    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1699    0     0     0 -1   1  -1   1   6   1   6   5  -1   1   4
## 1700    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1701    0     0     0 -1   1  -1   2  -1   1   6   5  -1   4   4
## 1702    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1703    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1704    0     0     0 -1   6  -1   1   4   1   6   3   1   1   4
## 1705    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   5   5
## 1706    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1707    0     0     0 -1   1  -1   1   4   1   4   1   4   1   4
## 1708    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1709    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1710    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1711    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1712    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1713    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1714    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1715    0     1     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1716    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1717    0     1     0 -1  -1  -1   1   5   2  -1   5  -1   4   4
## 1718    0     0     0 -1   9  -1   2  -1   2  -1   5  -1   1   4
## 1719    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1720    0     0     0 -1   1  -1   1   4   1   4   5  -1   1   4
## 1721    1     0     0 -1  -1  -1   1   2   1   6   1  -1   1   4
## 1722    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   3
## 1723    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 1724    0     0     0 -1   6  -1   2  -1   1   2   1   1   1   4
## 1725    0     0     0 -1  -1  -1   2  -1   1   3   1   1   1   2
## 1726    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1727    0     0     0 -1   4  -1   2  -1   1   3   4  -1   1   4
## 1728    1     0     0 -1  -1  -1   2  -1   2  -1   5  -1   4   4
## 1729    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1730    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1731    0     0     0 -1   1   7   1   4   2  -1   1  -1   1   4
## 1732    1     0     0 -1   6  -1   2  -1   1   4   1  -1   1   4
## 1733    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   1
## 1734    0     0     0 -1   1  -1   1   3   2  -1   1  -1   2   4
## 1735    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   1   4
## 1736    0     1     0 -1  -1  -1   2  -1   1   3   3  -1   4   3
## 1737    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 1738    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1739    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1740    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   5
## 1741    0     0     0 -1   1  -1   1   3   2  -1   1   1   2   5
## 1742    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1743    0     0     0 -1   1  -1   1   6   1   3   1  -1   1   4
## 1744    1     0     0 -1   6  -1   1   2   1   1   3   3   1   1
## 1745    0     0     0 -1   3  -1   2  -1   1   1   1  -1   4   4
## 1746    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1747    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 1748    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1749    0     1     0 -1  -1  -1   2  -1   1   6   1   4   1   4
## 1750    1     0     0 -1   1  -1   1   3   1   6   1  -1   4   4
## 1751    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   4   4
## 1752    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1753    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1754    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 1755    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1756    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1757    0     0     0 -1   1  -1   1   5   1   5   1  -1   1   4
## 1758    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1759    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1760    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1761    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1762    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1763    1     0     0 -1  -1  -1   2  -1   1   3   3   3   1   1
## 1764    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1765    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1766    1     0     0 -1  -1  -1   2  -1   1   3   5  -1   1   1
## 1767    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 1768    1     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1769    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1770    0     0     0 -1   1  -1   1   2   2  -1   2   2   1   1
## 1771    1     0     0 -1  -1  -1   1   2   2  -1   1  -1   1   4
## 1772    0     0     0  2  -1  -1   1   3   1   4   1  -1   1   1
## 1773    1     0     0 -1  -1  -1   2  -1   1   3   5  -1   4   4
## 1774    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1775    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1776    0     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 1777    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1778    0     0     0 -1  -1   5   1   5   1   5   1  -1   1   2
## 1779    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1780    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1781    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1782    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1783    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1784    1     0     0 -1   1  -1   1   3   1   2   1   5   1   1
## 1785    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 1786    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1787    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1788    0     0     0 -1   6  -1   1   4   2  -1   5   1   1   2
## 1789    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1790    0     0     0 -1   1  -1   1   4   1   3   5   1   1   4
## 1791    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 1792    0     0     0  2  -1   7   1   3   1   4   1  -1   1   1
## 1793    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1794    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1795    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1796    0     0     0 -1   1  -1   1   1   1   5   5   1   1   4
## 1797    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1798    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 1799    0     0     0 -1   1  -1   2  -1   2  -1   3   1   1   4
## 1800    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1801    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1802    0     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 1803    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1804    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1805    0     0     0 -1   1  -1   1   2   1   3   1  -1   1   1
## 1806    0     0     0 -1   1   7   1   3   2  -1   4  -1   1   4
## 1807    0     0     0  1  -1  -1   1   4   2  -1   1   1   1   1
## 1808    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1809    0     0     0 -1   1  -1   2  -1   1   1   1  -1   1   4
## 1810    0     1     0 -1  -1  -1   1   3   2  -1   1   4   1   4
## 1811    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1812    0     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   4
## 1813    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   4   4
## 1814    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1815    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1816    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   5
## 1817    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1818    1     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1819    1     0     0 -1   1   7   1   4   1   3   4   4   1   1
## 1820    0     0     0 -1   1  -1   2  -1   1   5   4  -1   1   4
## 1821    0     0     0  2   1  -1   1   3   1   6   4  -1   4   4
## 1822    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1823    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1824    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 1825    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1826    0     0     0 -1   5  -1   1   4   1   2   1  -1   4   4
## 1827    0     0     0 -1   1  -1   1   2   2  -1   1  -1   4   4
## 1828    0     0     0  2  -1  -1   1   4   2  -1   3   3   1   1
## 1829    0     0     0 -1   5  -1   1   6   1   5   3   3   1   1
## 1830    0     0     0  7  -1  -1   1   5   1   3   4   4   1   1
## 1831    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1832    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1833    0     0     0 -1  -1  -1   2  -1   2  -1   1   2   1   1
## 1834    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1835    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1836    0     0     0 -1  -1  -1   1   3   1   3   5   5   1   5
## 1837    0     0     0 -1   1  -1   1   2   1   2   2  -1   1   1
## 1838    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1839    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   3   1
## 1840    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1841    0     0     0 -1   1  -1   1   5   2  -1   1  -1   4   4
## 1842    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1843    0     0     0 -1  -1   1   1   5   2  -1   1  -1   5   5
## 1844    0     0     0 -1   1  -1   1   2   1   4   1  -1   1   1
## 1845    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1846    1     0     0 -1  -1  -1   2  -1   1   3   4   4   1   4
## 1847    0     1     0 -1  -1  -1   2  -1   2  -1   4  -1   1   4
## 1848    0     0     0  1  -1  -1   1   3   1   3   5   5   1   1
## 1849    0     0     0  1  -1  -1   1   3   1   3   3   4   1   1
## 1850    0     0     0 -1   1  -1   2  -1   1   3   5  -1   5   5
## 1851    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 1852    0     0     0 -1   1  -1   1   5   2  -1   5  -1   1   4
## 1853    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1854    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   4
## 1855    1     0     0 -1  -1  -1   1   5   1   2   4  -1   1   1
## 1856    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   4
## 1857    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1858    1     0     0 -1  -1  -1   1   6   1   3   4   4   1   1
## 1859    0     0     0 -1  -1  -1   1   6   2  -1   4  -1   1   1
## 1860    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1861    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1862    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   4   4
## 1863    1     0     0 -1  -1  -1   1   5   2  -1   1  -1   1   4
## 1864    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   5
## 1865    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1866    0     0     0 -1   1  -1   1   4   1   3   5   5   1   4
## 1867    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1868    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1869    1     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 1870    0     0     0 -1   1  -1   1   4   2  -1   5  -1   1   4
## 1871    0     0     0 -1  -1  -1   1   3   1   3   1  -1   1   5
## 1872    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1873    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1874    0     0     0 -1   9  -1   2  -1   2  -1   1  -1   4   4
## 1875    1     0     0 -1  -1  -1   1   4   1   2   4  -1   1   2
## 1876    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   1
## 1877    0     0     0  1  -1  -1   2  -1   2  -1   5  -1   1   1
## 1878    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1879    0     0     0 -1   1  -1   1   4   1   4   4  -1   3   4
## 1880    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1881    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 1882    0     0     0 -1   1  -1   1   3   2  -1   1  -1   1   1
## 1883    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   1
## 1884    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 1885    0     0     0 -1  -1  -1   1   4   1   6   4  -1   1   1
## 1886    0     0     0 -1  -1  -1   2  -1   1   2   5  -1   1   2
## 1887    0     0     0  1   1  -1   1   3   1   6   3   3   1   1
## 1888    0     1     0 -1  -1  -1   1   3   1   3   5  -1   1   1
## 1889    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 1890    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1891    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1892    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   1
## 1893    1     0     0 -1  -1  -1   1   3   2  -1   5  -1   1   1
## 1894    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1895    0     0     0 -1   1  -1   2  -1   1   3   1  -1   4   4
## 1896    0     0     0 -1   1  -1   2  -1   1   4   4  -1   1   4
## 1897    0     0     0 -1  -1  -1   1   3   1   3   1   4   1   4
## 1898    0     0     0 -1  -1  -1   1   3   1   4   5  -1   1   1
## 1899    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1900    0     0     0 -1   1   7   1   3   1   4   1  -1   1   3
## 1901    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1902    1     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1903    1     0     0 -1   5  -1   1   4   1   5   1  -1   1   1
## 1904    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1905    0     0     0 -1   1  -1   1   6   2  -1   5  -1   1   4
## 1906    0     0     0 -1  -1   5   1   5   1   2   1   4   1   4
## 1907    0     0     0 -1  -1  -1   1   5   2  -1   5  -1   1   4
## 1908    0     0     0 -1  -1  -1   2  -1   1   4   5  -1   4   4
## 1909    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1910    1     0     0 -1  -1  -1   2  -1   1   3   4  -1   1   1
## 1911    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1912    0     0     0 -1   1  -1   1   6   2  -1   5  -1   4   4
## 1913    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1914    0     1     0 -1  -1  -1   1   6   1   2   1  -1   1   1
## 1915    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1916    0     0     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 1917    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   2
## 1918    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 1919    0     0     0 -1   4   1   1   3   2  -1   5   1   1   1
## 1920    0     0     0  3  -1  -1   1   2   1   4   1  -1   4   4
## 1921    0     0     0  2   2  -1   1   3   2  -1   1  -1   1   1
## 1922    0     0     0 -1   7  -1   1   3   1   1   2   2   1   1
## 1923    1     0     0 -1  -1  -1   2  -1   2  -1   1   1   1   3
## 1924    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1925    0     1     0 -1  -1  -1   1   6   1   6   1  -1   1   4
## 1926    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1927    0     0     0 -1   5  -1   2  -1   2  -1   1  -1   4   4
## 1928    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   1
## 1929    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1930    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1931    0     0     0  1  -1  -1   2  -1   2  -1   1   5   1   1
## 1932    0     0     0  1   1  -1   1   4   1   3   1  -1   1   1
## 1933    0     0     0 -1   1  -1   2  -1   1   3   1   4   1   1
## 1934    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1935    0     0     0 -1   1  -1   2  -1   1   3   5  -1   1   1
## 1936    0     0     0 -1  -1   5   1   3   1   4   5   5   1   4
## 1937    1     0     0 -1   6  -1   2  -1   1   6   5  -1   1   4
## 1938    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1939    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1940    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1941    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1942    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1943    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1944    0     0     0 -1   1  -1   2  -1   1   2   1  -1   4   4
## 1945    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 1946    0     0     0 -1  -1  -1   1   1   1   4   1  -1   1   4
## 1947    0     0     0 -1  -1  -1   2  -1   1   4   5  -1   1   4
## 1948    0     0     0  2  -1  -1   2  -1   2  -1   1  -1   1   1
## 1949    0     0     0 -1   1  -1   1   4   1   4   1  -1   1   4
## 1950    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1951    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1952    1     0     0 -1  -1  -1   1   3   1   4   3   4   1   1
## 1953    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   2   4
## 1954    1     0     0 -1  -1  -1   2  -1   1   2   3  -1   1   4
## 1955    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1956    0     0     0 -1   1  -1   1   4   2  -1   5  -1   2   4
## 1957    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1958    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 1959    1     0     0 -1   8  -1   2  -1   2  -1   1  -1   4   4
## 1960    0     0     0 -1  -1   5   1   6   1   4   1  -1   1   1
## 1961    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   3
## 1962    0     0     0 -1  -1   1   2  -1   1   5   1  -1   1   4
## 1963    1     0     0 -1   1  -1   1   3   1   6   1  -1   1   4
## 1964    0     0     0 -1   1  -1   1   6   1   5   1  -1   1   4
## 1965    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   5
## 1966    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1967    0     0     0 -1   5  -1   2  -1   1   3   5  -1   1   4
## 1968    0     0     0 -1   1  -1   2  -1   1   4   5  -1   1   4
## 1969    0     0     0 -1  -1  -1   1   4   1   5   1  -1   1   1
## 1970    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 1971    1     0     0 -1  -1  -1   2  -1   1   5   1  -1   1   4
## 1972    0     0     0 -1  -1  -1   1   6   2  -1   5  -1   1   4
## 1973    1     0     0 -1  -1   4   1   4   1   4   5   5   1   2
## 1974    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 1975    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1976    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 1977    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1978    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1979    0     0     0 -1   1  -1   1   6   2  -1   1  -1   1   4
## 1980    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1981    0     0     0 -1   1  -1   1   2   1   6   5  -1   1   1
## 1982    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1983    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1984    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 1985    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 1986    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 1987    0     0     0 -1   1  -1   2  -1   1   6   5  -1   1   4
## 1988    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 1989    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1990    0     0     0 -1   1  -1   1   5   1   3   5  -1   1   4
## 1991    0     1     0 -1  -1  -1   1   3   2  -1   5  -1   1   2
## 1992    0     0     0 -1  -1  -1   1   6   2  -1   1  -1   1   4
## 1993    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 1994    0     0     0 -1   7  -1   2  -1   1   6   2  -1   1   4
## 1995    0     0     0  2  -1  -1   1   2   1   2   4   4   1   1
## 1996    0     0     0 -1  -1  -1   1   6   2  -1   5  -1   1   1
## 1997    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   5   5
## 1998    0     0     0 -1  -1   1   1   2   2  -1   1  -1   1   4
## 1999    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2000    0     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 2001    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2002    1     0     0 -1   1  -1   2  -1   1   5   1  -1   1   5
## 2003    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   4   4
## 2004    0     0     0 -1  -1  -1   2  -1   2  -1   5  -1   1   4
## 2005    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2006    0     1     0 -1  -1  -1   2  -1   1   4   4  -1   1   1
## 2007    0     0     0 -1   6  -1   2  -1   1   3   5   1   1   1
## 2008    0     0     0 -1  -1  -1   2  -1   1   3   5   5   1   1
## 2009    0     0     0 -1   1  -1   2  -1   1   5   1  -1   1   4
## 2010    0     0     0 -1   1  -1   1   3   1   4   1  -1   1   4
## 2011    0     0     0 -1  -1   5   1   4   1   5   5  -1   1   4
## 2012    0     0     0 -1  -1  -1   1   3   2  -1   1   1   1   4
## 2013    0     0     0 -1  -1  -1   1   2   1   3   1   1   1   1
## 2014    1     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   2
## 2015    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2016    0     0     0 -1   1  -1   1   6   2  -1   4  -1   4   4
## 2017    0     0     0  3  -1  -1   1   3   2  -1   1  -1   4   4
## 2018    0     0     0 -1   1   5   2  -1   1   3   1  -1   1   1
## 2019    0     0     0 -1  -1  -1   2  -1   1   4   1  -1   1   4
## 2020    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2021    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2022    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   4
## 2023    0     0     0  1  -1  -1   1   1   1   4   3   3   1   1
## 2024    0     0     0 -1   6  -1   2  -1   1   4   4   1   4   1
## 2025    0     0     0 -1   6  -1   1   2   1   3   1   1   4   4
## 2026    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2027    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2028    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2029    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2030    1     0     0 -1   1  -1   1   6   1   6   1  -1   1   4
## 2031    0     0     0 -1  -1   5   2  -1   2  -1   1   1   1   1
## 2032    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2033    1     0     0 -1  -1  -1   2  -1   1   6   1  -1   1   1
## 2034    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2035    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2036    0     0     0 -1   1  -1   1   5   2  -1   1  -1   2   4
## 2037    0     0     0 -1  -1  -1   1   3   2  -1   1  -1   1   4
## 2038    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   3
## 2039    0     0     0 -1   4  -1   1   3   2  -1   5  -1   1   4
## 2040    1     0     0 -1   7  -1   1   3   2  -1   5   5   1   1
## 2041    0     0     0 -1   7  -1   2  -1   2  -1   1  -1   1   4
## 2042    0     0     0 -1   1  -1   1   2   2  -1   5  -1   4   4
## 2043    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   5   5
## 2044    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2045    0     0     0 -1  -1  -1   1   5   1   3   1  -1   1   1
## 2046    0     0     0 -1  -1   4   1   2   1   1   3   5   1   1
## 2047    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   2   4
## 2048    0     0     0  3  -1  -1   2  -1   2  -1   5  -1   1   4
## 2049    1     0     0 -1   3  -1   2  -1   1   5   1  -1   4   4
## 2050    0     0     0 -1   6  -1   2  -1   1   5   1  -1   1   4
## 2051    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   4
## 2052    0     0     0  6  -1  -1   2  -1   2  -1   5  -1   1   4
## 2053    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2054    0     0     0 -1   4  -1   2  -1   2  -1   1   1   1   1
## 2055    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2056    0     0     0 -1  -1  -1   1   3   1   6   3  -1   1   1
## 2057    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2058    0     0     0 -1   1   5   1   5   2  -1   1  -1   1   1
## 2059    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2060    0     0     0 -1   1  -1   1   5   2  -1   1  -1   1   2
## 2061    1     0     0 -1  -1   1   2  -1   2  -1   1   1   4   4
## 2062    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   2
## 2063    0     0     0 -1   1  -1   1   1   1   5   1  -1   1   1
## 2064    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   1   4
## 2065    0     0     0 -1   1  -1   1   3   2  -1   3   5   1   2
## 2066    0     0     0 -1   6  -1   1   1   1   2   5  -1   1   1
## 2067    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2068    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2069    0     0     0 -1  -1   1   2  -1   1   3   1  -1   1   4
## 2070    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2071    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 2072    0     0     0 -1   7   7   1   6   2  -1   1  -1   1   2
## 2073    0     0     0 -1   3  -1   1   3   2  -1   4  -1   1   4
## 2074    1     0     0 -1  -1  -1   2  -1   1   3   1  -1   4   4
## 2075    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2076    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2077    0     0     0 -1   1  -1   2  -1   1   5   1  -1   4   4
## 2078    0     0     0  1   1  -1   1   3   2  -1   4  -1   1   1
## 2079    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 2080    0     0     0 -1   1   5   1   4   1   2   1  -1   1   1
## 2081    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   1
## 2082    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2083    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   4   4
## 2084    1     0     0 -1   1  -1   2  -1   1   3   1  -1   2   4
## 2085    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2086    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   2
## 2087    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2088    1     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   1
## 2089    0     0     0 -1  -1  -1   1   6   1   2   5  -1   4   4
## 2090    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2091    0     0     0 -1  -1   5   2  -1   2  -1   1  -1   1   4
## 2092    0     0     0 -1  -1   1   2  -1   2  -1   5  -1   4   4
## 2093    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2094    0     0     0 -1   1  -1   2  -1   1   2   1  -1   1   4
## 2095    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2096    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   2
## 2097    0     0     0 -1   1  -1   2  -1   1   4   1  -1   1   4
## 2098    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2099    0     0     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2100    0     0     0 -1   3  -1   2  -1   2  -1   1  -1   1   4
## 2101    0     0     0 -1   1  -1   2  -1   1   3   1  -1   1   4
## 2102    0     0     0 -1   7  -1   1   2   2  -1   1  -1   4   4
## 2103    0     0     0 -1   4  -1   2  -1   1   3   1   1   1   1
## 2104    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   1
## 2105    0     0     0 -1  -1   7   2  -1   2  -1   3  -1   4   4
## 2106    0     0     0 -1   1  -1   1   4   1   2   3  -1   1   4
## 2107    1     0     0 -1   1  -1   2  -1   1   4   1  -1   2   4
## 2108    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2109    0     0     0 -1   1  -1   1   4   2  -1   1  -1   1   1
## 2110    1     0     0 -1   1  -1   2  -1   1   4   1  -1   4   4
## 2111    0     0     0  3  -1  -1   2  -1   2  -1   1  -1   1   1
## 2112    0     0     0 -1   1  -1   1   3   2  -1   5  -1   1   4
## 2113    1     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
## 2114    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2115    0     0     0 -1   1  -1   1   6   1   5   1  -1   1   4
## 2116    0     0     0 -1   5  -1   2  -1   2  -1   1   1   1   4
## 2117    0     0     0 -1   1  -1   1   6   1   4   5  -1   1   4
## 2118    0     0     0 -1   4  -1   2  -1   2  -1   1  -1   1   4
## 2119    1     0     0  2  -1   8   1   3   1   3   4  -1   1   1
## 2120    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   1   2
## 2121    0     0     0 -1  -1  -1   1   4   2  -1   1  -1   1   2
## 2122    0     0     0 -1   1  -1   2  -1   2  -1   5  -1   4   4
## 2123    0     0     0 -1   1  -1   2  -1   1   6   1  -1   1   1
## 2124    0     1     0 -1  -1  -1   2  -1   2  -1   1  -1   1   4
## 2125    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   4   4
## 2126    0     0     0 -1   6  -1   2  -1   2  -1   1  -1   5   5
## 2127    0     0     0 -1   1  -1   2  -1   2  -1   1  -1   1   4
##        Latitude Longitude mobile_money savings borrowing insurance
## 1     -4.460442  29.81140            0       0         0         0
## 2     -6.176438  39.24487            1       1         1         0
## 3     -6.825702  37.65280            1       0         0         0
## 4     -3.372049  35.80831            1       0         1         0
## 5     -7.179645  31.03910            1       1         0         1
## 6     -6.362331  37.13774            0       0         1         0
## 7     -8.089257  35.83641            1       1         1         1
## 8     -8.916028  33.43390            1       1         0         0
## 9     -3.972247  32.64995            0       1         1         0
## 10    -8.033973  35.76942            1       0         0         1
## 11    -3.619491  33.81397            1       1         1         0
## 12    -8.847496  34.82359            1       0         0         0
## 13   -10.743503  34.73308            0       1         1         0
## 14    -8.295917  31.50903            0       0         0         0
## 15    -6.169053  39.19849            1       0         0         0
## 16    -1.338745  30.90012            0       0         0         0
## 17   -10.488371  39.02762            1       0         0         0
## 18    -3.180342  36.86124            1       1         1         0
## 19    -1.261826  30.67859            1       1         1         0
## 20    -7.782641  35.66560            1       1         0         0
## 21    -4.614918  29.78761            1       1         0         0
## 22    -2.597419  32.91360            1       0         1         0
## 23   -10.918859  38.00266            1       1         0         0
## 24    -8.871831  34.95540            0       1         0         0
## 25    -5.072699  38.45452            1       0         1         0
## 26    -7.774543  35.69338            1       1         1         0
## 27    -6.219971  39.23240            1       1         1         0
## 28    -1.324064  31.79063            1       1         1         0
## 29    -3.352235  37.34739            1       1         1         1
## 30    -6.819066  37.64553            1       1         1         0
## 31    -4.290469  35.85897            1       0         0         0
## 32    -2.762266  33.61668            1       1         0         0
## 33    -8.898817  33.54752            1       0         1         0
## 34    -3.831435  32.68175            0       0         1         1
## 35    -8.568090  32.12580            1       0         0         0
## 36   -11.467450  36.97929            0       1         0         0
## 37    -4.090220  34.73737            0       1         0         0
## 38   -10.511796  38.99460            1       1         1         0
## 39    -5.035472  36.23767            0       0         1         0
## 40    -2.402577  32.32959            1       0         1         0
## 41    -3.808334  32.22749            0       0         1         1
## 42    -8.539498  32.94379            0       0         1         0
## 43    -4.833257  34.76190            1       1         1         0
## 44    -5.717437  38.23602            1       0         0         0
## 45    -8.603990  39.26019            1       1         0         0
## 46    -2.545407  32.95832            1       0         0         0
## 47    -3.871321  35.65141            0       1         0         0
## 48    -8.564092  35.33906            1       1         1         0
## 49    -4.225851  34.61299            1       1         1         1
## 50    -8.953660  32.56462            1       0         0         0
## 51    -3.996847  33.37908            0       1         1         0
## 52    -2.611466  32.07196            0       0         1         0
## 53    -8.978150  36.76014            0       1         1         0
## 54    -2.340967  32.29512            1       1         1         0
## 55    -3.432752  31.51375            1       0         1         0
## 56    -8.128108  30.96697            0       0         1         0
## 57    -6.265031  36.86941            0       0         1         0
## 58   -10.488619  39.02783            1       0         1         0
## 59    -4.025963  34.50822            0       0         0         0
## 60    -8.571489  33.44991            1       1         0         0
## 61    -2.506709  32.01181            1       1         0         0
## 62    -3.363681  36.72003            1       1         1         0
## 63    -6.968397  39.08682            1       1         1         1
## 64    -6.372752  38.35172            0       1         1         0
## 65    -3.252335  30.90823            0       0         0         0
## 66   -10.662969  35.65687            1       0         1         0
## 67    -2.852849  32.88685            1       0         1         0
## 68   -10.467358  36.13245            1       1         0         0
## 69    -6.875757  39.23261            1       1         0         0
## 70    -6.883295  39.25355            1       1         1         0
## 71    -3.821738  33.30840            0       0         1         0
## 72   -11.263398  34.79128            1       1         1         1
## 73    -7.854259  31.17578            0       0         1         0
## 74    -4.268603  38.05357            1       1         0         0
## 75   -11.400793  36.42849            1       0         0         0
## 76    -6.148147  39.22280            1       0         1         0
## 77    -8.797980  34.99026            0       1         0         0
## 78    -6.290723  35.88228            0       0         0         1
## 79    -4.573588  33.03776            1       0         1         0
## 80    -5.245949  39.78153            0       0         0         0
## 81    -3.202463  37.20557            1       1         1         0
## 82   -10.750776  38.53077            1       0         0         0
## 83    -6.570029  35.51702            0       0         0         0
## 84    -6.931571  39.26271            0       0         0         0
## 85    -5.959047  36.69328            0       0         0         0
## 86   -10.919896  39.38173            0       1         0         0
## 87    -1.940385  32.85856            0       0         0         0
## 88    -9.330313  33.71555            1       1         1         0
## 89    -3.350379  37.30189            1       0         1         1
## 90    -3.365591  33.53727            1       1         1         0
## 91    -9.237312  34.89158            0       1         1         0
## 92    -9.493857  34.65333            1       0         1         0
## 93   -10.674737  35.64183            1       1         1         0
## 94    -9.930898  39.72115            0       0         0         0
## 95    -3.903049  35.81426            0       0         0         0
## 96    -6.833702  39.24087            1       0         0         0
## 97    -3.627541  33.40639            0       0         0         0
## 98    -2.040158  33.83592            0       0         1         0
## 99    -2.745153  31.88754            1       0         1         0
## 100   -3.674167  33.44101            1       1         1         0
## 101   -7.757071  35.48008            1       1         0         0
## 102   -7.255773  31.39929            1       1         1         0
## 103   -6.170265  39.22253            1       1         0         0
## 104  -10.519409  38.67833            1       1         0         1
## 105   -8.460328  32.15848            0       0         1         0
## 106   -7.681498  36.03874            1       0         1         1
## 107   -2.774334  32.70359            0       1         1         0
## 108   -1.498239  33.80839            1       1         0         0
## 109   -4.796151  38.29238            1       0         0         0
## 110   -2.416812  32.93535            1       0         0         0
## 111   -7.289010  38.99792            1       0         1         0
## 112  -11.042891  37.43361            0       0         0         0
## 113   -9.240114  33.33921            0       0         0         0
## 114   -4.642396  38.32172            0       0         0         0
## 115   -8.295487  31.52009            0       0         0         0
## 116   -6.885442  39.15487            1       0         0         0
## 117   -8.584248  35.20766            1       0         0         0
## 118   -2.037014  33.02725            0       1         1         1
## 119   -3.545571  36.98625            0       0         0         0
## 120  -10.281696  40.19748            1       0         0         0
## 121   -9.335193  34.76613            0       1         0         0
## 122  -11.107797  39.32546            0       0         0         0
## 123   -9.295657  32.75979            1       0         1         0
## 124   -6.819074  39.23892            1       1         0         0
## 125   -8.616326  39.26434            0       0         1         0
## 126   -3.147341  32.36981            0       0         0         0
## 127   -3.348855  35.78177            1       0         1         0
## 128   -5.605736  36.56213            0       0         1         0
## 129   -1.875367  33.70181            0       0         0         1
## 130   -6.220586  39.23271            1       0         0         0
## 131   -4.613718  34.95000            1       1         1         1
## 132   -2.844044  33.08184            1       1         1         1
## 133   -7.780921  35.69346            0       0         0         0
## 134   -3.282538  32.87852            0       0         0         0
## 135  -10.779779  39.54917            1       1         1         0
## 136   -8.844225  34.82568            1       0         0         0
## 137   -7.110450  31.16725            0       0         0         1
## 138  -10.663179  38.75114            1       1         1         1
## 139   -8.635658  31.42978            1       0         1         0
## 140  -10.853290  39.27796            1       0         0         0
## 141   -4.760987  34.58148            0       1         1         0
## 142   -6.907859  39.16891            1       1         0         1
## 143   -9.010237  33.00567            1       0         0         0
## 144   -1.959388  35.34817            0       0         0         0
## 145   -8.905958  33.46200            1       1         1         1
## 146  -10.629344  35.70398            1       0         0         0
## 147   -5.241083  32.33783            0       0         0         0
## 148   -3.358085  36.68217            1       1         1         0
## 149   -9.405595  39.59767            0       0         0         0
## 150   -6.121117  38.40738            1       1         0         0
## 151   -6.857071  39.28186            1       0         0         0
## 152   -3.420720  30.74116            0       0         1         0
## 153   -6.798244  39.24889            1       1         0         0
## 154  -10.661450  35.65716            1       1         0         0
## 155   -6.163611  39.19200            0       0         0         0
## 156   -7.750966  35.86474            1       1         1         1
## 157  -10.784345  38.62104            0       0         1         0
## 158   -5.618218  32.74653            1       0         0         0
## 159   -8.847223  34.82324            0       0         0         0
## 160   -6.153780  35.73856            1       0         0         0
## 161   -4.215867  35.73768            1       0         0         0
## 162   -8.695957  34.37510            1       1         0         1
## 163   -8.777397  33.64056            1       0         1         0
## 164   -7.251994  31.39577            0       0         0         0
## 165   -2.597026  32.91296            1       1         0         0
## 166   -1.302024  33.94419            1       0         0         0
## 167   -6.897877  39.28304            1       0         0         0
## 168   -4.775708  33.23886            0       0         0         0
## 169   -9.294164  32.76012            0       0         0         0
## 170  -10.551023  39.79038            0       1         0         1
## 171   -4.362962  35.07469            1       0         1         0
## 172   -8.802597  34.22394            1       0         0         0
## 173   -9.463246  33.95387            0       1         0         0
## 174  -10.849092  39.69424            0       0         0         0
## 175   -8.860809  34.00852            0       0         0         0
## 176   -7.934367  35.62788            1       1         0         1
## 177   -6.156445  39.21357            1       0         1         0
## 178   -1.497544  33.81604            1       1         1         1
## 179   -2.415815  32.93552            1       0         1         0
## 180  -10.344932  40.24872            0       0         1         0
## 181   -6.844976  39.27956            1       1         1         0
## 182   -4.269849  38.05020            1       0         1         0
## 183   -6.191095  31.22190            1       0         1         1
## 184   -1.568206  30.88958            0       0         1         0
## 185   -3.253247  34.21561            0       0         1         0
## 186   -9.954110  39.32897            0       0         1         0
## 187   -5.052858  33.49014            0       1         1         0
## 188   -2.401976  32.33061            0       0         0         0
## 189  -10.442330  36.05890            0       0         1         1
## 190   -2.535150  32.96039            1       1         1         1
## 191   -4.065121  35.28788            0       0         0         0
## 192   -2.752715  31.88174            1       0         1         0
## 193  -10.828834  34.88715            1       0         1         0
## 194   -2.776980  32.70354            0       1         1         0
## 195   -3.871249  35.65141            0       0         0         0
## 196   -5.867472  35.07340            0       1         0         0
## 197   -4.873362  38.45562            1       0         1         0
## 198   -6.184964  39.20752            1       1         0         0
## 199   -6.793946  39.25061            1       1         1         0
## 200   -3.287257  37.37458            0       0         0         0
## 201   -9.331522  33.33315            1       0         0         0
## 202   -3.353460  37.56767            1       0         0         0
## 203   -5.011343  32.80220            1       0         0         0
## 204   -2.060479  35.47691            0       0         0         0
## 205   -3.545911  36.98624            1       1         0         0
## 206   -8.074549  31.93359            0       1         0         0
## 207   -5.866409  35.13523            0       1         1         0
## 208   -2.769081  32.69200            1       1         1         0
## 209   -6.743296  32.48179            0       0         0         0
## 210   -8.590996  35.15098            1       0         1         0
## 211   -4.455599  33.95443            0       1         0         0
## 212   -8.906000  33.45583            1       0         1         0
## 213   -4.603282  34.65740            0       1         0         0
## 214   -2.609280  32.06952            0       0         1         0
## 215   -1.723663  33.96093            1       1         0         0
## 216   -2.636411  32.27621            1       0         0         0
## 217   -5.183178  39.79332            0       0         0         0
## 218   -6.811831  39.24486            0       1         1         0
## 219   -6.657472  37.14428            1       0         1         0
## 220   -5.125592  38.38524            1       0         0         0
## 221   -6.128432  39.21582            0       1         1         0
## 222   -7.490266  30.59744            0       0         0         0
## 223   -3.525608  35.34402            1       0         0         0
## 224   -8.696757  34.37410            0       0         0         1
## 225   -6.662062  37.13561            1       1         1         0
## 226   -4.185944  33.13411            1       0         1         0
## 227  -11.112992  38.47258            0       1         1         1
## 228   -7.141858  39.07478            0       1         1         0
## 229   -6.142630  39.24135            1       0         1         0
## 230   -4.188187  33.12340            0       1         1         0
## 231   -6.844786  39.27936            0       0         0         0
## 232   -6.173131  39.22521            0       0         0         0
## 233   -9.164725  33.81672            0       0         1         0
## 234   -6.212815  34.83488            1       1         0         1
## 235   -4.466974  35.69146            0       0         0         0
## 236   -2.905372  32.74710            0       1         1         0
## 237   -4.849303  34.83936            0       1         1         0
## 238   -9.011469  33.00584            0       0         0         0
## 239   -6.148424  39.22327            1       0         1         0
## 240   -2.018018  33.87930            0       1         0         0
## 241   -7.697167  35.62144            1       1         0         0
## 242   -4.744900  29.69787            1       1         0         1
## 243  -11.112724  38.47243            1       1         0         1
## 244   -3.300823  34.20970            0       1         0         0
## 245   -3.387680  36.67019            1       1         1         0
## 246   -1.513483  33.80911            1       1         0         0
## 247   -6.931571  39.26271            1       0         0         0
## 248   -4.545269  31.96504            1       0         0         0
## 249   -5.104970  32.39614            0       0         1         0
## 250   -4.638348  38.19302            1       1         0         1
## 251   -2.347185  32.29514            0       0         1         0
## 252   -6.264926  36.86952            1       1         1         0
## 253   -4.642978  38.32028            1       1         0         0
## 254  -11.039856  37.18551            0       0         0         0
## 255   -2.063752  35.55784            0       0         0         0
## 256   -6.301055  33.84649            0       1         0         0
## 257   -5.615290  38.27523            0       0         0         0
## 258   -3.103718  31.08312            1       0         1         0
## 259   -9.000066  34.54953            1       0         0         0
## 260  -10.181910  38.94369            1       1         0         0
## 261   -4.196712  34.82013            0       0         0         0
## 262  -11.040754  37.18215            0       0         0         0
## 263   -6.849305  39.14634            1       0         1         0
## 264   -3.070385  33.35457            1       0         1         0
## 265   -7.873138  30.79579            1       1         1         0
## 266   -2.523244  32.96335            1       1         1         0
## 267  -10.128376  39.13902            0       1         1         0
## 268   -4.268993  35.68586            0       0         0         0
## 269   -5.322255  34.51866            0       0         0         0
## 270   -8.764780  31.84100            0       0         1         0
## 271   -3.906508  35.81326            0       1         1         0
## 272   -2.979759  34.25998            0       1         0         0
## 273   -2.377594  33.58021            1       1         1         1
## 274   -5.887828  39.25355            0       0         0         0
## 275   -4.907854  29.66219            1       0         0         0
## 276   -2.634961  33.97212            1       0         0         0
## 277   -7.191244  31.02309            1       0         1         0
## 278   -2.103280  31.49478            0       0         0         0
## 279   -6.792464  39.24096            1       1         0         0
## 280   -3.559171  36.98752            1       1         1         1
## 281   -3.820754  37.45852            1       1         1         0
## 282   -8.370363  31.71733            0       0         0         0
## 283  -10.951186  39.02943            1       1         1         0
## 284  -10.287815  40.11716            1       0         0         0
## 285   -2.769726  32.59721            0       1         0         1
## 286   -9.327941  33.70485            0       0         1         0
## 287   -5.132928  39.09780            0       1         0         0
## 288   -8.973461  33.95759            0       1         0         0
## 289   -7.429241  31.37628            1       1         0         1
## 290   -2.539014  33.19913            1       0         1         0
## 291   -3.211082  37.26119            1       0         0         0
## 292   -7.106507  31.16539            0       1         0         0
## 293  -10.286637  40.11661            1       0         0         0
## 294   -5.879811  35.12092            0       1         0         0
## 295   -3.169872  33.30070            1       1         0         1
## 296   -5.041131  34.75544            0       0         0         0
## 297   -2.534127  32.93342            1       1         0         0
## 298   -5.329121  34.51971            0       0         0         0
## 299  -10.827532  34.88608            0       0         1         0
## 300   -6.800089  39.25587            1       0         0         0
## 301   -6.897340  39.25251            1       0         0         0
## 302   -7.782667  35.71354            1       0         0         0
## 303  -10.493106  39.32400            1       1         1         1
## 304   -9.336857  34.76603            0       1         0         0
## 305   -6.854797  30.52560            0       1         0         0
## 306   -6.484753  31.11700            0       0         0         0
## 307  -10.692438  39.39623            1       0         1         0
## 308   -2.641297  32.78498            0       0         0         1
## 309  -10.642997  38.84683            0       0         1         0
## 310   -3.739584  37.66097            1       0         0         0
## 311   -9.203381  34.56231            1       1         0         0
## 312   -2.518059  32.91151            1       1         1         0
## 313   -9.104020  33.18237            0       0         1         0
## 314   -2.801443  33.99067            1       1         0         0
## 315   -9.442549  33.55591            1       0         1         1
## 316   -4.356816  37.82229            1       1         1         0
## 317   -3.252566  34.21582            0       0         1         0
## 318   -4.545061  31.96526            1       0         1         0
## 319   -3.366650  37.31895            1       0         0         0
## 320   -1.630723  31.44443            0       0         0         0
## 321   -9.954605  39.33124            1       0         1         0
## 322   -4.489448  35.60621            0       0         1         0
## 323   -2.195641  31.44535            0       1         1         0
## 324  -11.144231  37.51044            1       1         1         1
## 325   -3.002279  31.94635            0       0         0         0
## 326   -1.335447  30.90514            0       0         1         0
## 327   -4.188567  35.02130            1       0         0         0
## 328   -5.037426  38.88133            0       0         0         0
## 329   -3.044137  31.37516            1       0         1         0
## 330   -6.345682  31.06963            0       0         0         0
## 331   -4.823232  34.75150            1       0         1         0
## 332   -1.863771  33.86567            0       0         0         0
## 333   -4.895145  38.57563            0       0         0         0
## 334   -1.208473  31.40702            0       1         1         0
## 335   -5.603523  36.56622            1       0         1         0
## 336   -5.974767  29.85589            1       1         1         1
## 337   -3.366902  36.71639            1       1         1         1
## 338   -4.199982  30.49019            0       0         1         0
## 339   -6.059043  37.09621            1       0         1         0
## 340  -10.280398  40.19799            1       0         0         1
## 341   -3.079075  32.08483            1       0         0         0
## 342   -6.341885  31.06502            1       1         1         1
## 343   -8.896037  31.69136            0       0         0         1
## 344   -7.909390  39.67025            0       0         0         0
## 345   -6.239907  39.53002            0       1         0         0
## 346   -4.268837  38.05366            1       0         0         0
## 347   -4.943768  38.91569            0       0         0         0
## 348  -10.378108  39.84106            0       1         0         1
## 349   -2.777050  32.70326            0       1         0         0
## 350   -2.963889  33.34137            0       0         0         1
## 351   -5.605833  36.56221            1       1         1         0
## 352   -3.821281  37.45938            0       1         0         0
## 353   -8.297941  35.28262            1       1         0         0
## 354   -3.443411  37.43350            1       0         0         0
## 355   -7.975373  31.62949            1       0         1         0
## 356   -2.523538  32.96288            1       1         1         0
## 357   -7.838941  35.63902            0       0         0         0
## 358  -10.860940  39.28016            1       1         0         0
## 359   -2.704197  33.48899            1       1         0         0
## 360   -2.870928  33.28540            0       0         0         1
## 361  -10.562191  39.17013            1       1         0         0
## 362   -3.348458  37.45972            0       0         0         0
## 363  -11.077934  38.27428            0       0         0         1
## 364   -4.962391  34.94210            0       0         0         0
## 365   -8.686935  36.70570            0       1         1         0
## 366   -3.564367  36.98124            1       1         1         0
## 367   -3.422855  30.73987            1       0         1         1
## 368  -10.893691  38.98678            0       0         0         0
## 369   -3.372700  36.65887            1       1         0         0
## 370   -7.380402  31.36434            0       0         0         1
## 371   -1.099997  34.01068            0       1         0         0
## 372   -3.200963  34.42227            0       0         0         0
## 373   -7.979895  31.63732            1       0         1         0
## 374   -8.825045  34.95897            0       1         1         0
## 375   -8.848541  32.28139            1       0         0         0
## 376   -5.046095  33.50275            1       1         1         0
## 377   -6.187375  39.21643            1       1         1         0
## 378   -5.873497  39.29242            0       1         1         0
## 379   -5.875086  39.25422            0       1         0         0
## 380   -6.208290  39.38595            0       0         1         0
## 381   -3.561104  33.89020            0       0         1         0
## 382  -10.603943  35.61389            1       0         1         0
## 383   -4.915051  34.93223            1       0         1         0
## 384   -6.161793  34.85769            0       0         1         0
## 385   -9.077891  34.64864            0       1         0         0
## 386   -5.763183  38.70204            0       1         0         0
## 387   -7.980074  31.63643            0       0         0         1
## 388   -6.751968  38.93444            1       0         1         0
## 389   -6.485667  35.94317            0       0         1         0
## 390   -1.249261  31.66376            0       1         1         0
## 391   -9.249496  32.83672            1       0         0         0
## 392   -8.934728  33.34384            1       1         0         0
## 393  -10.900564  39.63933            0       0         0         0
## 394   -2.961864  34.14980            0       0         0         0
## 395  -11.260035  34.79371            1       1         1         0
## 396  -10.793808  38.31887            1       0         0         1
## 397   -7.520484  39.28717            1       0         1         0
## 398   -5.238302  39.77755            1       1         0         0
## 399   -2.775613  33.79583            0       0         1         0
## 400   -6.137421  39.22995            0       0         0         0
## 401  -10.369849  39.22202            1       1         0         0
## 402   -3.864171  32.61097            1       0         0         0
## 403   -5.982628  39.28634            1       1         0         0
## 404   -7.750790  35.86440            1       0         1         0
## 405   -5.246152  39.78143            0       1         1         0
## 406   -9.347154  34.26108            1       1         1         0
## 407   -3.398257  36.53062            1       1         0         1
## 408   -2.979613  34.26952            1       1         1         0
## 409   -3.828861  30.63579            1       0         1         0
## 410   -6.125816  39.21909            0       0         0         0
## 411   -7.166858  30.53542            0       1         0         0
## 412   -6.155475  39.21215            0       0         0         0
## 413   -6.783983  39.23907            1       1         0         1
## 414   -6.742754  32.48287            0       0         0         0
## 415   -6.792668  39.24105            1       0         1         0
## 416   -9.601324  33.86540            0       0         0         0
## 417   -8.951976  33.24725            1       0         1         0
## 418   -5.677415  38.42597            1       0         1         1
## 419  -10.951173  39.02943            1       1         1         0
## 420   -2.415767  32.93514            1       1         1         0
## 421   -9.174879  32.86261            1       1         1         0
## 422   -7.786718  31.68321            1       0         1         0
## 423   -6.768802  39.26405            1       1         1         0
## 424   -3.196830  37.64922            1       0         0         0
## 425   -8.897929  33.45462            1       1         1         0
## 426   -9.006916  33.06786            1       1         1         0
## 427   -8.839791  34.80556            1       1         1         1
## 428   -7.118978  39.20020            1       0         0         0
## 429   -2.316523  32.68360            1       1         1         0
## 430   -9.001133  32.81153            1       0         0         0
## 431   -4.216691  35.73719            1       1         1         0
## 432   -7.945280  31.63928            1       1         0         0
## 433   -6.175935  39.24439            0       0         0         0
## 434   -8.123703  35.41988            0       0         0         0
## 435   -4.607088  34.46569            0       0         0         0
## 436   -6.960959  39.33519            1       1         1         0
## 437  -10.452590  39.41371            0       0         0         0
## 438   -6.538450  38.99099            1       0         1         0
## 439   -4.481284  34.19435            1       0         0         1
## 440   -1.234919  30.94733            0       1         1         0
## 441   -8.409383  35.86672            0       0         0         0
## 442   -6.485977  31.11694            0       1         0         0
## 443   -4.577621  30.30198            0       1         0         0
## 444   -3.745123  37.66582            1       1         0         1
## 445   -6.484983  35.93960            1       0         1         0
## 446   -7.490884  30.59589            0       1         1         0
## 447   -5.953726  39.26362            0       0         0         0
## 448   -5.350433  39.70199            1       1         0         0
## 449   -1.396004  34.61867            1       0         1         0
## 450   -9.493811  34.65333            1       0         0         0
## 451   -6.193548  36.37211            1       1         0         0
## 452  -10.694118  39.79462            0       0         0         0
## 453   -8.562328  35.33731            1       1         0         0
## 454  -10.098016  34.68721            1       1         0         0
## 455   -8.934525  33.34370            0       0         1         0
## 456   -8.351521  31.83402            0       0         0         0
## 457   -9.987597  38.96514            1       0         0         0
## 458   -2.386796  33.09744            1       1         0         0
## 459   -2.856078  30.54669            0       1         1         0
## 460   -4.073442  37.98994            1       0         0         0
## 461   -5.952817  36.69149            1       0         1         0
## 462   -3.429924  37.29028            1       1         1         0
## 463   -8.806513  34.97654            0       0         0         0
## 464   -4.610622  35.03752            0       0         0         0
## 465   -2.376992  33.58297            1       0         1         0
## 466  -10.863138  39.02731            0       1         1         0
## 467   -7.483167  31.18866            0       0         1         0
## 468   -3.387308  36.67108            1       0         1         0
## 469   -5.236976  39.78056            0       1         1         0
## 470   -2.456528  33.63985            1       0         0         0
## 471   -6.206686  34.83610            1       0         1         0
## 472   -1.782937  34.72699            1       1         1         0
## 473   -6.871658  38.57175            1       0         0         0
## 474   -4.204748  32.33176            0       0         0         0
## 475   -6.144322  35.73491            1       0         1         0
## 476  -10.917921  38.00300            0       0         0         0
## 477   -4.510312  34.17508            0       0         1         0
## 478   -5.929299  39.23306            0       0         0         0
## 479   -4.431526  34.46536            0       0         0         0
## 480   -4.351797  34.43500            0       1         0         0
## 481   -6.173824  35.63869            1       1         1         1
## 482   -5.136158  34.77293            1       1         1         0
## 483   -2.555089  33.05302            1       1         1         0
## 484   -6.823067  39.31011            1       1         0         1
## 485   -1.333372  30.90686            0       0         1         0
## 486   -5.087740  31.84774            0       0         0         0
## 487   -8.896828  31.69163            0       0         1         1
## 488   -8.297016  34.90485            0       0         0         0
## 489   -6.344063  31.08271            0       0         0         0
## 490   -4.580134  30.30334            0       1         1         0
## 491   -9.012380  33.06852            1       1         0         0
## 492   -5.346835  36.43177            0       0         0         0
## 493   -4.864235  30.34152            0       0         0         0
## 494   -6.161794  39.19225            1       1         1         0
## 495   -7.501528  31.43542            0       1         0         0
## 496   -6.157547  39.24593            1       1         0         0
## 497   -7.943048  31.63910            1       0         0         0
## 498   -8.509026  35.05530            1       0         0         1
## 499   -2.505295  32.00959            0       0         0         1
## 500   -7.119389  37.80367            0       0         0         0
## 501  -10.549913  39.78831            1       0         1         0
## 502   -6.880398  39.25065            1       1         0         0
## 503   -6.330410  31.06473            1       1         1         1
## 504   -4.887248  29.63958            0       0         0         0
## 505   -1.178618  31.42527            1       0         1         0
## 506   -6.522827  37.21554            0       1         1         0
## 507   -2.880233  37.37065            0       1         1         0
## 508   -5.083258  31.84803            0       0         0         0
## 509   -3.870967  32.76275            1       0         1         0
## 510   -6.334194  31.07925            1       1         1         0
## 511  -10.606220  39.62229            0       1         0         0
## 512   -9.215652  33.07898            1       0         0         0
## 513   -6.773837  36.64776            1       1         1         1
## 514   -2.533452  32.93166            1       1         0         1
## 515   -5.128472  39.10187            0       1         1         0
## 516   -7.997281  35.51670            1       0         1         0
## 517   -9.599984  33.86392            0       0         0         0
## 518   -2.479219  32.90873            1       0         0         0
## 519   -5.245700  39.76819            1       1         0         0
## 520   -3.720849  32.67924            1       0         1         1
## 521   -4.435023  30.02593            1       1         1         0
## 522   -9.174834  32.86467            1       1         0         0
## 523   -5.246045  39.78138            0       0         0         0
## 524   -2.525426  32.90297            1       1         0         0
## 525   -1.237315  34.23270            1       0         0         0
## 526   -2.107253  33.07570            1       1         1         0
## 527   -1.089506  31.80645            1       1         1         0
## 528   -3.368890  37.32185            1       0         0         1
## 529  -10.243959  38.25158            0       0         0         0
## 530   -8.496958  35.59041            1       1         0         0
## 531   -4.877587  31.58217            0       0         1         0
## 532   -1.340950  34.37664            0       0         0         0
## 533   -6.801584  39.25610            1       1         1         0
## 534   -8.282102  35.30936            1       1         0         0
## 535   -3.328359  36.63484            1       0         0         1
## 536   -9.212787  33.08299            1       0         1         0
## 537   -6.331498  31.06614            0       1         1         0
## 538   -8.929726  33.51238            1       0         0         0
## 539   -7.108497  31.16780            0       0         0         1
## 540   -8.278952  36.16308            1       0         1         0
## 541   -2.802618  33.99150            1       1         1         1
## 542   -2.518358  32.91259            1       1         1         0
## 543   -2.543599  32.97678            1       1         0         0
## 544   -3.367349  36.68591            1       1         0         0
## 545   -3.351811  37.34884            1       1         0         0
## 546   -5.246267  39.78131            1       0         1         0
## 547   -7.948720  35.78571            1       0         0         0
## 548   -9.336732  34.76600            0       1         1         1
## 549   -6.858264  39.23410            1       0         1         0
## 550   -3.374429  35.85422            1       1         1         0
## 551   -4.054862  32.24252            0       1         1         0
## 552   -6.241727  39.52942            1       1         1         0
## 553   -5.085428  31.84662            0       1         1         0
## 554   -9.174452  32.86430            1       0         0         0
## 555   -6.852880  39.25272            1       1         0         0
## 556   -2.533642  32.93235            1       1         0         0
## 557   -6.167751  35.89135            1       0         1         0
## 558  -10.244265  38.25265            0       0         1         0
## 559   -2.775401  33.79571            1       1         0         0
## 560   -6.002638  37.74761            0       1         0         0
## 561  -10.697917  35.80059            1       1         1         0
## 562   -8.296885  31.51606            0       0         0         0
## 563   -2.681389  30.57979            1       1         0         0
## 564   -6.160834  34.84365            0       1         1         0
## 565   -8.848432  34.82376            1       0         0         1
## 566   -9.253212  32.83682            1       0         1         0
## 567   -8.543366  34.44228            1       0         0         0
## 568   -3.382967  35.50345            1       1         1         1
## 569   -6.410001  35.10643            0       0         0         0
## 570   -8.687845  36.70755            1       0         0         1
## 571   -2.502878  33.55027            0       0         1         1
## 572   -2.462953  32.38394            0       0         0         0
## 573   -5.968360  39.19610            0       0         0         0
## 574   -4.801293  32.43059            0       0         0         0
## 575   -2.506915  33.54625            0       0         0         0
## 576   -5.440896  37.76881            0       0         0         0
## 577   -1.650807  31.70748            1       1         1         0
## 578   -8.883027  33.29293            0       0         1         0
## 579   -6.586633  36.08064            1       0         1         1
## 580   -9.083480  33.56219            0       1         0         0
## 581   -2.669543  32.98413            0       1         1         0
## 582   -6.484302  35.93892            1       0         0         0
## 583   -5.954697  35.96853            0       0         0         0
## 584   -4.760894  34.20092            0       0         1         1
## 585   -7.827022  33.35099            0       0         0         0
## 586   -1.335952  30.90493            0       0         0         0
## 587  -11.144555  37.51214            0       0         0         0
## 588   -6.951559  39.33051            1       0         0         0
## 589  -10.672729  35.64100            1       0         1         0
## 590   -9.083711  34.65344            0       1         0         0
## 591   -7.496951  31.03377            0       1         0         0
## 592   -2.748364  31.62747            0       0         0         1
## 593   -3.358981  36.66100            1       1         1         0
## 594   -4.881635  29.64784            1       0         1         0
## 595   -6.896591  39.25345            0       0         0         0
## 596   -6.948591  39.23188            1       0         0         0
## 597   -3.342265  35.78733            1       0         1         0
## 598   -1.876115  33.70149            1       1         0         0
## 599   -1.438035  34.58890            0       1         0         0
## 600   -6.041485  39.23010            1       0         0         0
## 601   -4.146826  32.88942            0       0         1         0
## 602   -7.045480  39.03073            0       0         0         0
## 603   -2.499938  33.54656            0       1         1         1
## 604   -4.438947  30.03459            0       0         1         0
## 605   -9.174398  32.86384            0       1         0         0
## 606   -5.693600  34.49531            1       1         1         1
## 607   -8.202698  35.99768            1       0         1         0
## 608   -7.497040  31.03245            1       0         0         0
## 609   -6.734163  38.84894            1       0         1         0
## 610   -6.784537  39.01631            1       0         0         0
## 611   -8.221546  35.46092            1       0         1         1
## 612  -11.034050  35.12097            0       0         1         0
## 613   -4.575918  30.09259            0       0         0         0
## 614   -4.454058  29.81093            1       0         1         0
## 615   -4.482062  34.19564            0       1         0         1
## 616  -10.203384  40.03890            1       0         0         0
## 617   -9.338054  34.56067            1       1         0         0
## 618   -7.955370  36.86374            0       1         0         0
## 619   -7.868047  35.40623            0       1         0         1
## 620   -6.873695  39.17482            0       1         1         0
## 621   -2.589076  32.64506            0       1         0         1
## 622   -3.217375  36.86661            1       1         1         0
## 623   -3.751652  32.85322            1       1         1         0
## 624   -4.502347  34.16541            0       1         0         0
## 625   -6.856450  39.28190            1       1         0         1
## 626  -10.847712  39.69935            1       1         0         0
## 627   -1.571293  30.88618            1       0         1         1
## 628   -6.931022  39.26420            1       1         1         0
## 629  -10.344922  40.24879            1       0         0         0
## 630   -4.193169  33.13199            0       0         1         0
## 631   -8.410753  35.36654            1       0         1         0
## 632   -6.678311  39.20479            1       0         0         0
## 633   -9.270369  33.36344            0       0         0         0
## 634  -10.281707  40.19750            1       0         0         0
## 635  -10.793825  39.59613            0       1         0         0
## 636   -7.216001  38.79324            0       0         0         0
## 637   -8.802407  34.22164            1       0         0         0
## 638   -8.905060  32.96149            1       0         0         0
## 639   -7.999127  35.85235            0       0         1         0
## 640   -4.482683  30.16062            0       1         0         0
## 641   -7.041571  30.56129            1       1         1         1
## 642   -2.711093  32.72457            0       1         0         0
## 643   -1.975942  32.91388            1       1         0         0
## 644   -2.397797  32.06342            0       1         0         0
## 645   -8.203472  36.69363            0       1         1         0
## 646   -5.246350  39.78141            0       0         0         0
## 647   -8.879760  34.82585            1       0         0         0
## 648   -4.740031  38.35021            1       0         1         0
## 649   -4.482911  30.16142            1       1         0         1
## 650   -8.906579  34.67260            1       1         0         0
## 651   -2.640628  32.78334            0       0         0         0
## 652   -6.744112  38.93101            1       0         0         0
## 653   -8.848410  32.28136            1       0         0         0
## 654   -8.205215  35.99778            0       0         1         0
## 655   -7.833434  33.35174            0       0         0         0
## 656   -5.122775  38.38481            0       0         1         0
## 657   -5.134827  34.77145            1       1         1         1
## 658   -2.608383  32.06985            1       1         1         0
## 659   -1.567965  30.88283            0       1         0         0
## 660   -6.375635  38.35002            1       0         1         0
## 661   -8.875282  34.82419            1       1         1         0
## 662  -10.834925  38.65013            0       0         0         0
## 663   -1.233503  34.22592            1       0         1         0
## 664   -6.798304  39.24894            1       1         1         0
## 665   -4.677560  38.46839            1       0         1         0
## 666   -6.345043  31.08317            0       0         0         0
## 667   -6.792645  39.24001            1       1         0         0
## 668   -9.246992  34.77573            0       1         0         0
## 669   -8.088196  36.68237            1       0         0         0
## 670   -8.296041  31.51167            0       0         0         1
## 671  -10.919520  35.27903            1       1         1         1
## 672   -7.596765  39.22961            1       1         1         0
## 673   -6.674549  39.17874            1       0         1         0
## 674   -3.522947  35.34588            1       0         1         0
## 675   -8.262122  35.30209            0       0         0         1
## 676   -7.647118  35.75620            0       1         1         1
## 677   -6.883253  39.25321            0       0         0         0
## 678  -10.911303  38.29750            1       1         0         1
## 679  -11.047807  34.76365            1       1         0         0
## 680   -6.135115  39.32389            0       0         0         0
## 681   -7.740814  35.87432            1       1         0         1
## 682   -9.988118  38.96452            1       1         1         0
## 683   -5.249295  32.34454            1       0         0         0
## 684   -6.162706  35.63959            0       0         0         1
## 685   -6.844802  39.27961            1       0         1         0
## 686   -5.125842  38.38466            1       0         0         0
## 687   -4.551515  34.84324            1       1         0         0
## 688   -7.759743  35.85600            1       1         1         0
## 689   -8.386332  33.23017            0       0         1         0
## 690   -6.743765  32.48060            0       1         0         0
## 691   -3.628043  34.26937            0       0         0         0
## 692   -9.249638  32.83648            1       1         0         0
## 693   -5.553021  37.33960            0       0         0         0
## 694  -10.128545  39.13891            0       1         0         1
## 695   -6.794004  39.25044            0       0         0         0
## 696   -7.681020  31.56045            1       0         1         0
## 697   -1.794876  34.72726            0       0         0         0
## 698   -5.024822  34.76461            0       0         0         0
## 699  -10.196750  38.56411            1       1         0         0
## 700   -3.347075  37.30240            1       1         0         1
## 701   -3.493885  36.81844            1       0         1         1
## 702   -3.360694  37.02811            1       0         1         0
## 703  -10.407368  39.16585            1       1         1         1
## 704  -10.361232  40.10445            0       0         1         0
## 705   -5.102358  39.80807            0       1         1         0
## 706  -11.014966  34.88006            1       1         1         0
## 707   -2.753136  31.65280            1       1         1         0
## 708  -10.180767  38.94161            1       0         0         0
## 709   -3.215508  36.86083            0       0         0         0
## 710   -7.751862  35.68172            1       1         0         0
## 711   -3.376479  36.67656            0       0         0         0
## 712   -6.079457  36.64711            1       1         0         1
## 713   -7.867612  35.40623            0       0         1         1
## 714   -5.926765  39.22105            0       0         1         0
## 715   -9.639440  34.57478            1       1         0         1
## 716   -8.630674  33.14908            1       0         0         0
## 717   -8.103924  35.90298            1       0         1         1
## 718   -8.696094  34.37366            1       1         1         1
## 719   -4.359322  35.07495            0       0         0         0
## 720   -6.207871  39.38608            0       0         1         0
## 721   -4.357362  37.82197            1       0         1         1
## 722   -4.624469  34.94520            0       0         0         0
## 723   -3.030877  33.25054            0       0         0         0
## 724   -2.599781  33.42122            1       1         1         0
## 725  -10.347772  40.08527            1       1         1         1
## 726   -3.743557  33.83470            0       0         0         0
## 727   -1.840512  31.14021            0       1         0         1
## 728   -6.768348  39.26735            1       0         1         0
## 729   -6.774287  36.64687            0       1         1         0
## 730   -8.433743  31.65853            0       0         0         1
## 731   -4.825238  34.75312            1       1         1         0
## 732  -10.203087  38.61948            1       1         0         0
## 733   -1.643161  31.43036            1       1         1         0
## 734   -7.481828  35.97683            0       0         0         0
## 735   -3.741618  33.83798            0       0         1         0
## 736   -8.902091  32.96400            0       1         1         0
## 737   -4.734325  34.92381            1       1         1         1
## 738   -4.874275  36.79100            0       1         0         0
## 739   -2.987156  34.19036            0       0         1         0
## 740   -4.186206  34.24277            1       1         0         0
## 741  -10.939607  34.99763            1       0         0         0
## 742   -3.430437  37.29052            1       1         1         0
## 743   -8.965028  32.89908            0       0         0         0
## 744   -4.876151  34.63017            1       1         0         0
## 745   -4.013727  34.51307            0       0         0         0
## 746   -4.916418  34.67375            0       1         0         0
## 747   -1.356994  31.63398            1       1         1         0
## 748   -6.242119  39.53025            1       1         1         0
## 749   -9.336808  34.76595            0       0         0         0
## 750   -6.149321  39.51664            1       1         0         0
## 751   -5.132168  39.09657            1       1         1         0
## 752   -5.608584  38.27904            0       0         1         0
## 753   -4.360872  29.96591            1       0         1         0
## 754   -6.054137  37.08920            0       0         0         1
## 755   -1.694281  34.29524            0       0         0         0
## 756   -4.489362  35.60642            0       0         0         0
## 757   -8.303533  32.32578            0       0         1         0
## 758   -2.824096  33.56847            1       1         1         0
## 759   -3.362605  36.48346            0       0         1         1
## 760  -10.665548  38.75009            0       0         1         0
## 761   -4.944119  38.91484            0       0         1         0
## 762   -1.176994  31.42242            0       1         1         0
## 763   -7.291475  36.06158            1       1         0         1
## 764  -10.857757  39.27922            1       0         0         1
## 765   -8.452301  35.17381            1       1         0         0
## 766   -4.120960  34.83554            1       0         1         0
## 767   -3.630122  34.29560            1       0         0         0
## 768  -10.107788  39.62153            0       0         0         0
## 769   -8.252518  31.98803            1       1         1         0
## 770   -6.758968  36.47029            1       0         1         0
## 771   -1.512548  33.80892            1       1         0         0
## 772   -4.432074  30.02836            1       1         0         1
## 773   -4.984155  39.83427            0       0         0         0
## 774   -3.102101  37.59077            1       1         0         1
## 775   -2.698431  33.48642            0       1         0         0
## 776   -3.214105  31.78429            1       1         1         0
## 777   -4.990917  39.07661            1       0         0         0
## 778   -7.797489  35.77105            1       1         1         1
## 779   -3.658031  32.23175            1       0         1         0
## 780   -2.017218  33.46502            1       1         0         0
## 781  -10.683534  39.59331            0       1         1         0
## 782   -6.807494  39.23123            1       0         1         0
## 783   -5.192490  38.76435            0       0         0         0
## 784   -4.200826  30.49374            0       0         0         0
## 785   -5.695991  36.63142            0       0         0         0
## 786   -4.641922  34.18432            0       1         0         0
## 787   -4.200235  32.32572            0       0         1         0
## 788   -4.683379  35.95498            1       0         0         0
## 789  -10.921938  39.38392            0       0         1         0
## 790   -9.011527  33.06948            1       0         0         0
## 791   -5.226239  35.17876            0       0         0         1
## 792   -3.365808  33.53942            1       1         1         1
## 793   -7.252047  31.39579            0       1         0         0
## 794   -9.169366  33.54174            1       1         1         0
## 795   -5.181991  38.79147            0       1         1         0
## 796   -3.822684  37.46291            1       1         1         0
## 797   -3.373275  36.65844            1       1         0         0
## 798   -3.030828  33.92736            1       1         1         0
## 799   -9.005242  34.54913            1       0         0         0
## 800   -4.887248  29.63958            1       1         0         0
## 801   -4.545303  31.96518            0       1         1         0
## 802   -3.042386  35.48199            0       0         1         0
## 803   -2.485763  32.92276            1       0         0         0
## 804   -3.830379  30.63567            1       1         1         0
## 805   -2.663604  32.64076            1       1         0         0
## 806   -8.011575  35.49811            1       0         1         0
## 807   -9.336969  34.76623            1       0         0         0
## 808   -2.635285  31.31249            1       0         0         0
## 809  -11.143326  37.51215            1       0         0         1
## 810   -9.336791  34.76600            1       1         0         1
## 811   -7.872945  30.79661            1       1         0         1
## 812   -3.082593  32.08669            0       0         0         1
## 813   -6.767140  39.11742            1       0         1         0
## 814  -10.923872  39.38218            0       0         1         0
## 815   -5.967492  39.19699            0       0         0         0
## 816   -4.617100  35.03143            0       1         1         0
## 817   -8.359675  32.29617            0       0         1         0
## 818   -5.131904  39.09902            0       0         0         0
## 819  -10.617617  38.81132            0       0         0         0
## 820   -6.218177  36.35919            1       0         0         1
## 821   -9.930898  39.72115            1       0         0         0
## 822   -6.735368  38.84880            1       1         1         1
## 823   -3.156105  32.37273            1       0         1         0
## 824   -7.780980  35.69260            0       0         1         0
## 825   -7.982354  31.53769            0       0         0         1
## 826   -5.246621  39.76660            0       0         0         0
## 827   -5.179832  38.79018            1       0         0         0
## 828   -8.980224  36.75909            0       0         0         0
## 829  -10.857828  39.78017            0       0         1         0
## 830   -2.497108  32.90594            1       1         0         0
## 831   -1.325962  31.82266            1       0         0         0
## 832   -8.253354  31.36132            1       1         1         1
## 833   -9.305501  33.62544            0       0         0         0
## 834   -3.752147  32.85004            0       0         1         0
## 835   -5.104153  32.39617            0       1         0         0
## 836   -2.546164  32.95737            1       1         0         0
## 837  -10.378723  39.84088            0       0         0         0
## 838   -4.112272  35.15864            0       1         0         0
## 839   -3.389938  36.76768            1       0         0         0
## 840  -10.171023  39.85875            1       1         1         0
## 841   -7.496754  31.03255            1       0         0         0
## 842   -3.400768  37.35744            1       1         1         0
## 843  -10.667499  38.74775            1       1         1         0
## 844   -6.263346  36.86894            0       0         0         0
## 845   -4.550209  34.84322            0       0         0         0
## 846   -3.287638  32.22239            0       0         0         0
## 847   -8.316859  35.55161            1       1         1         0
## 848  -10.797879  38.65343            0       0         0         0
## 849   -7.730373  35.71968            1       0         0         0
## 850   -1.507128  33.78789            1       1         1         0
## 851   -8.409450  35.86655            0       1         0         1
## 852   -5.060554  39.73325            1       1         1         0
## 853   -3.822367  37.46240            0       0         0         0
## 854   -2.529937  32.94447            0       0         0         0
## 855   -7.482223  35.96893            1       0         0         0
## 856   -5.073140  38.45363            1       1         1         0
## 857   -6.750875  30.41145            0       0         0         0
## 858   -8.781510  34.64492            0       0         0         0
## 859   -9.408772  33.91602            0       1         0         0
## 860   -6.148856  39.21399            0       0         0         0
## 861   -5.687193  36.62851            0       1         0         0
## 862   -3.618565  33.81542            1       1         1         0
## 863   -1.792115  34.73468            0       1         1         0
## 864   -8.572715  33.45564            0       0         0         0
## 865   -1.506447  33.78902            1       1         0         0
## 866   -4.834474  34.75082            0       0         0         0
## 867   -7.933247  35.78296            1       1         1         0
## 868   -9.170717  33.82011            0       0         0         0
## 869   -5.926778  39.22305            0       0         1         0
## 870   -3.053623  34.34203            0       1         0         0
## 871   -1.329375  31.80872            0       1         1         0
## 872   -4.627531  35.02776            1       0         0         0
## 873   -1.372901  34.43386            1       1         1         0
## 874  -10.683742  38.87934            1       1         0         0
## 875   -1.464741  31.73768            1       1         1         0
## 876   -5.402919  38.61264            1       0         1         0
## 877   -1.405404  33.70625            1       1         0         1
## 878   -8.936643  33.34546            1       1         0         0
## 879   -4.625868  35.75762            1       1         0         0
## 880  -10.416477  38.80636            0       0         1         0
## 881   -7.754419  35.48312            1       1         1         0
## 882   -3.574056  32.61107            0       0         1         0
## 883   -8.633744  33.15060            1       0         0         0
## 884   -8.204229  36.69396            1       1         1         0
## 885   -8.243206  35.02418            1       0         1         0
## 886   -6.815340  39.27343            0       1         1         0
## 887   -2.602053  33.42233            0       1         1         0
## 888   -8.282282  35.30944            1       1         1         0
## 889   -4.073239  37.99144            1       1         0         1
## 890   -6.044318  39.22818            0       1         0         0
## 891   -4.748464  29.69622            1       1         1         0
## 892  -10.727719  39.78729            0       0         0         0
## 893   -3.425950  30.73144            1       1         0         1
## 894  -10.684642  39.59021            0       0         0         0
## 895   -8.777538  33.64095            1       0         1         0
## 896   -3.388996  36.74088            1       1         1         0
## 897  -10.130070  39.13526            0       1         0         1
## 898   -3.276120  37.10946            1       0         0         0
## 899   -8.391658  38.94882            1       1         0         0
## 900   -6.586865  36.07748            1       1         1         1
## 901  -10.781496  39.54885            1       1         0         0
## 902   -5.085441  30.56619            1       1         1         1
## 903   -8.820650  36.25196            0       1         1         0
## 904   -3.238648  31.86982            0       1         1         0
## 905   -8.310717  31.05488            0       0         0         0
## 906   -5.313408  36.55919            0       0         0         0
## 907   -8.433683  31.66030            1       0         1         1
## 908   -6.955818  39.33102            1       1         0         0
## 909   -4.642832  38.32358            1       0         1         1
## 910   -5.054704  35.86374            1       0         0         0
## 911   -9.305675  35.28553            0       0         0         0
## 912   -2.541324  32.91309            1       0         0         0
## 913   -6.346440  31.06988            1       0         1         0
## 914   -8.937241  33.34711            1       0         0         0
## 915  -10.744102  34.73293            0       0         0         0
## 916   -3.211241  31.81910            1       1         1         0
## 917   -5.964764  35.97465            1       0         0         1
## 918   -4.745897  29.69706            0       1         0         1
## 919   -3.361153  36.68377            1       0         1         0
## 920   -7.041666  30.56138            0       1         0         0
## 921   -6.753309  30.41272            0       0         0         1
## 922   -2.637137  32.28019            1       1         0         0
## 923   -3.366356  36.68580            1       1         1         1
## 924   -4.534585  38.24079            1       1         0         0
## 925   -6.358466  39.45430            0       0         1         1
## 926   -4.545183  31.96512            0       0         1         0
## 927   -6.301227  35.88022            0       0         0         0
## 928   -4.408921  34.52967            1       0         1         0
## 929   -3.636546  32.93983            0       0         1         0
## 930   -6.139575  39.32515            1       0         1         0
## 931   -8.960022  32.89953            0       0         1         0
## 932   -8.374517  31.97839            1       1         1         0
## 933   -7.118598  39.20521            1       1         1         0
## 934   -9.337657  34.76740            1       1         0         0
## 935   -8.034076  35.76821            1       1         1         1
## 936   -8.490923  32.28890            0       0         1         0
## 937   -8.952210  33.24702            1       1         1         1
## 938   -4.335681  35.40283            0       0         0         0
## 939   -6.751094  36.46955            0       0         1         0
## 940   -2.802117  33.99140            1       0         0         0
## 941   -8.683723  35.10519            0       0         0         0
## 942   -1.677410  33.71071            0       1         0         0
## 943   -8.536823  32.94141            1       1         1         1
## 944   -9.199114  33.10054            1       0         0         0
## 945   -3.028071  33.25188            0       1         1         1
## 946   -9.325212  34.76290            1       1         1         0
## 947   -5.876844  39.29078            1       0         1         0
## 948  -10.557790  36.23737            1       1         1         0
## 949   -7.146022  31.20282            0       1         1         0
## 950   -2.122017  33.48686            0       1         0         0
## 951   -2.785471  33.78834            0       0         0         0
## 952   -7.424692  31.37070            1       0         1         0
## 953   -1.088420  31.80648            0       0         0         0
## 954   -3.162708  32.25907            1       0         0         0
## 955   -4.634835  38.20696            1       1         0         0
## 956   -2.040879  33.83973            0       0         1         0
## 957   -9.672312  39.10597            1       1         1         0
## 958   -2.538632  33.19864            1       0         1         0
## 959   -6.342315  31.08301            1       0         0         0
## 960   -2.078613  32.93989            1       1         1         0
## 961   -7.571408  36.10763            0       0         0         0
## 962   -8.977482  33.95139            1       1         0         0
## 963   -8.256622  35.09216            1       1         0         1
## 964   -7.942946  31.62918            1       0         1         0
## 965   -9.171456  33.82048            0       0         0         0
## 966  -10.737359  38.80795            1       0         0         0
## 967   -4.089253  34.73639            0       1         0         0
## 968   -1.890073  34.72970            1       1         1         0
## 969   -3.352097  36.66113            1       0         1         0
## 970   -6.072730  36.64452            1       1         0         1
## 971   -7.747411  35.71584            1       1         1         0
## 972   -2.657758  33.94021            0       1         1         0
## 973   -4.310061  35.62750            0       0         1         0
## 974   -9.119846  32.93786            0       0         0         0
## 975   -6.582218  39.07972            1       0         0         0
## 976   -6.755314  30.41356            0       0         0         0
## 977   -7.994485  31.79560            0       0         1         0
## 978  -10.793280  39.42274            1       1         0         0
## 979   -6.052412  37.08709            0       0         1         0
## 980   -2.527669  32.94528            1       1         1         0
## 981   -2.057465  31.51319            0       1         1         0
## 982   -8.302900  32.32682            0       0         1         0
## 983   -8.370214  31.71728            0       0         1         0
## 984   -5.165026  39.81222            0       0         1         0
## 985  -10.900501  39.64024            0       1         1         0
## 986   -5.748391  34.82956            0       1         0         0
## 987   -6.812393  39.24450            0       1         1         0
## 988   -6.928704  39.26278            1       0         0         0
## 989   -5.748464  34.83053            0       1         0         0
## 990   -9.237544  33.33852            0       0         0         0
## 991   -3.392292  36.74103            1       1         1         0
## 992   -8.687149  36.70807            1       1         1         1
## 993   -8.497040  35.59113            0       1         1         0
## 994  -11.132054  38.60646            1       0         1         1
## 995   -9.348936  34.77191            1       0         0         0
## 996   -1.302054  33.94417            1       0         0         0
## 997   -3.361639  36.68351            1       1         0         0
## 998   -5.769654  38.70284            0       0         1         0
## 999   -8.409383  35.86672            0       1         0         0
## 1000  -8.566789  34.44583            0       0         0         0
## 1001  -7.473740  36.12578            1       1         1         0
## 1002  -4.103362  32.40901            0       0         0         0
## 1003  -4.700120  38.11962            0       0         0         0
## 1004  -3.820722  37.45835            0       0         0         0
## 1005  -2.535342  32.93955            0       0         0         0
## 1006  -3.991295  33.38841            0       0         0         0
## 1007 -11.058681  37.33865            1       1         0         0
## 1008  -5.802079  34.40206            0       1         1         0
## 1009  -5.754774  38.69909            1       1         0         0
## 1010  -6.767303  38.98445            0       0         0         0
## 1011  -7.949883  31.60424            1       1         1         0
## 1012  -4.868917  29.64284            1       1         0         0
## 1013  -4.910217  29.66150            1       0         0         0
## 1014 -10.952199  39.27203            0       0         1         1
## 1015  -2.525437  32.90177            1       0         0         0
## 1016  -8.204114  35.99724            1       1         0         0
## 1017  -7.958475  31.61809            1       1         1         0
## 1018  -3.276007  32.79980            0       0         1         0
## 1019  -2.949926  33.36856            0       0         0         0
## 1020  -2.556107  30.60723            0       1         1         0
## 1021  -1.245187  31.66583            0       0         0         0
## 1022  -6.744098  30.40708            1       1         1         0
## 1023  -9.408100  33.91683            0       1         1         0
## 1024 -11.258996  34.79142            0       0         0         0
## 1025  -7.780918  35.69237            0       0         0         0
## 1026  -3.302949  37.51187            1       0         1         0
## 1027  -8.546793  32.54849            0       0         1         0
## 1028  -6.195374  39.22670            1       0         1         0
## 1029  -3.129820  33.64721            0       1         0         0
## 1030  -6.785439  39.23877            1       1         0         0
## 1031  -2.754981  31.87903            0       0         0         0
## 1032 -10.602689  39.62188            1       1         0         0
## 1033  -2.557304  36.78190            0       0         0         0
## 1034  -6.528858  37.21855            0       0         0         0
## 1035  -6.142729  39.22070            0       0         0         0
## 1036  -4.420343  34.75703            0       1         1         0
## 1037  -9.973875  34.62902            0       0         0         0
## 1038  -6.583188  38.55414            0       0         0         0
## 1039  -1.507042  33.78796            1       1         1         0
## 1040  -4.200494  34.82258            1       1         0         1
## 1041  -6.379011  38.35326            0       1         0         0
## 1042  -9.321775  32.78161            0       0         0         0
## 1043 -10.924964  39.38053            0       0         0         0
## 1044  -3.042396  35.48202            0       0         0         1
## 1045  -2.634303  32.79086            0       0         0         0
## 1046  -8.820687  36.25189            0       1         0         0
## 1047  -5.953565  39.26091            0       1         0         0
## 1048  -3.003309  31.94541            1       1         1         0
## 1049  -1.453420  31.06506            1       1         1         0
## 1050  -7.309372  30.63862            0       0         0         0
## 1051 -10.936574  39.28002            1       1         1         0
## 1052 -10.282454  40.18761            1       1         0         0
## 1053  -2.759560  33.61826            0       0         0         0
## 1054  -1.749394  31.61544            1       0         0         0
## 1055  -8.240094  35.44110            0       0         0         1
## 1056  -7.657839  35.45411            0       1         1         0
## 1057  -8.654806  35.12939            1       1         1         0
## 1058 -10.493125  39.32407            0       0         0         0
## 1059  -2.639400  33.97032            1       0         0         0
## 1060  -9.208730  33.08781            1       0         0         0
## 1061  -8.874971  34.82141            1       1         1         0
## 1062  -6.131042  39.30377            1       0         1         0
## 1063  -3.364465  33.54148            1       1         1         1
## 1064  -2.849018  30.53578            0       0         0         0
## 1065  -5.717323  38.23610            1       0         1         1
## 1066 -10.702943  39.13491            1       0         0         0
## 1067  -4.110708  35.18611            0       0         0         0
## 1068  -3.011582  33.93829            1       0         1         0
## 1069  -2.639184  32.95502            0       0         1         0
## 1070  -4.577699  30.09297            1       0         1         0
## 1071  -4.887558  29.64393            1       1         1         0
## 1072  -3.042507  35.48205            0       0         0         0
## 1073  -2.543495  32.90502            1       1         0         0
## 1074  -9.362257  34.79626            1       0         0         0
## 1075  -6.300749  35.50043            1       1         1         1
## 1076  -2.987681  34.19190            1       1         1         0
## 1077  -3.372336  36.65839            1       1         1         0
## 1078  -9.421972  33.95901            0       1         0         0
## 1079  -3.279447  32.88017            1       1         0         0
## 1080  -7.120795  39.20260            1       1         1         0
## 1081  -7.814538  35.78913            0       0         1         1
## 1082  -5.236558  39.77960            1       0         0         0
## 1083  -6.786935  39.11268            0       1         0         0
## 1084  -2.948407  34.14765            0       0         0         0
## 1085  -4.193376  33.13089            0       0         0         0
## 1086  -3.828789  32.60401            1       0         1         0
## 1087  -8.692032  35.10012            1       1         1         0
## 1088  -5.181955  39.09144            1       0         0         0
## 1089 -10.617497  38.81129            1       0         1         0
## 1090  -4.310329  34.22565            1       1         1         1
## 1091  -3.274321  32.79393            1       1         1         0
## 1092 -10.509894  38.99350            1       0         0         0
## 1093  -6.211118  31.22427            0       1         0         0
## 1094  -1.854728  31.58990            0       1         1         0
## 1095  -7.252124  31.39579            1       0         0         1
## 1096  -2.577908  32.13885            1       1         0         0
## 1097  -7.376220  31.36464            1       0         0         0
## 1098 -10.281816  40.19749            0       0         0         0
## 1099  -7.291695  36.06155            0       0         0         1
## 1100  -5.175875  34.62329            0       1         1         0
## 1101  -6.751050  36.46960            0       1         0         1
## 1102  -8.896721  31.69141            0       0         0         1
## 1103  -4.433357  30.02851            0       0         0         0
## 1104  -5.078245  39.10406            1       1         0         0
## 1105 -10.692603  39.81413            1       1         1         0
## 1106  -3.076902  32.08708            0       1         1         1
## 1107  -5.930022  39.29880            0       0         0         0
## 1108  -5.897271  35.21064            0       1         0         0
## 1109  -9.354617  34.41985            1       1         1         1
## 1110  -3.317067  36.70742            0       0         1         1
## 1111  -7.837171  38.34423            1       1         0         1
## 1112  -2.744255  31.88140            0       0         0         0
## 1113  -8.189757  31.84927            0       1         0         0
## 1114 -10.674655  35.64220            1       1         0         0
## 1115  -9.318674  32.77968            1       0         0         0
## 1116  -4.646342  35.04234            0       0         0         0
## 1117  -3.787501  30.49837            0       0         1         0
## 1118  -6.333513  31.08038            1       1         0         0
## 1119 -10.936330  34.99597            0       1         1         0
## 1120  -9.405334  39.59772            0       1         0         0
## 1121  -8.541288  31.90556            0       0         0         0
## 1122  -6.167220  39.21019            1       1         0         0
## 1123  -7.958412  31.61411            1       0         1         0
## 1124  -4.487604  35.61584            0       1         0         0
## 1125  -1.248912  31.66388            1       1         1         0
## 1126  -3.408707  31.51607            0       0         1         0
## 1127  -2.506179  32.91077            1       1         1         0
## 1128  -9.670500  39.10818            0       0         0         0
## 1129  -9.003208  32.80798            0       0         1         0
## 1130  -7.783640  35.67740            1       0         1         0
## 1131  -4.828142  34.75095            0       1         0         0
## 1132  -1.941336  32.86262            0       1         1         0
## 1133  -8.913861  33.43317            0       0         0         0
## 1134  -2.553917  30.60878            0       0         0         0
## 1135  -9.949313  37.90564            1       1         1         0
## 1136  -3.368412  36.73275            1       1         0         1
## 1137  -8.564994  32.12666            0       0         0         0
## 1138  -6.931875  39.26458            1       0         0         0
## 1139  -6.816883  30.48970            1       1         0         1
## 1140  -4.730659  38.33666            1       1         0         0
## 1141 -11.042250  37.43294            1       0         0         0
## 1142  -9.011570  33.00484            1       0         1         0
## 1143  -8.240115  35.44104            0       0         1         1
## 1144  -9.171341  33.81924            0       1         1         0
## 1145  -7.202537  31.08025            1       1         0         0
## 1146  -4.479575  34.19142            1       1         1         0
## 1147  -5.076110  38.45355            1       1         1         0
## 1148  -8.204259  36.69424            1       1         0         0
## 1149  -9.239578  33.33965            0       0         0         1
## 1150  -5.036571  36.23245            0       0         0         0
## 1151 -10.632288  38.84619            1       1         0         0
## 1152  -8.433944  31.66007            1       0         1         0
## 1153  -6.815037  39.15245            1       1         0         0
## 1154  -6.422808  31.22119            0       0         0         0
## 1155  -3.029920  33.26524            0       0         1         0
## 1156  -8.933314  33.34415            1       1         0         1
## 1157  -5.246162  39.78157            0       0         0         0
## 1158  -4.475330  34.18779            0       1         0         0
## 1159 -10.604963  35.61390            1       0         1         0
## 1160  -6.898221  37.49584            0       0         1         0
## 1161  -6.184958  39.20786            1       1         1         1
## 1162  -9.490176  33.27444            0       0         1         1
## 1163  -6.147715  39.51641            1       0         0         0
## 1164  -6.897652  39.28292            1       0         1         1
## 1165  -4.573104  35.65115            0       0         0         1
## 1166  -6.125615  39.21900            0       0         0         0
## 1167  -1.511382  33.80774            0       0         0         0
## 1168  -7.480956  31.18938            1       0         1         0
## 1169 -10.785433  38.61889            0       0         0         0
## 1170  -6.908738  39.17039            1       1         1         0
## 1171  -6.873981  30.52882            0       0         0         0
## 1172  -4.529464  38.23771            1       0         0         0
## 1173  -5.415161  39.72593            1       1         0         0
## 1174  -2.554943  33.05497            1       0         0         0
## 1175 -11.078110  38.27464            0       1         0         0
## 1176  -6.208129  39.38594            0       0         1         0
## 1177 -10.131074  39.13991            0       0         1         0
## 1178  -4.545238  31.96532            0       0         0         1
## 1179  -4.801082  32.43040            0       0         0         0
## 1180  -7.118777  37.80533            1       0         1         0
## 1181  -5.445350  38.03467            0       0         0         0
## 1182 -10.248619  38.69714            1       0         0         0
## 1183  -8.546546  32.54826            0       0         0         0
## 1184  -4.874166  36.79103            0       0         0         0
## 1185  -2.879652  32.23385            0       1         0         0
## 1186  -2.026642  33.46306            1       0         1         0
## 1187  -1.236945  30.94802            1       0         0         0
## 1188  -1.939928  32.86013            0       1         1         0
## 1189  -8.237302  35.43624            0       0         1         0
## 1190  -2.775935  33.79542            0       0         1         0
## 1191  -5.078630  39.12394            1       0         0         0
## 1192  -3.015183  33.04971            1       1         1         0
## 1193  -4.536829  38.24079            1       1         0         1
## 1194  -1.248176  31.66149            1       1         1         0
## 1195  -6.833379  39.24081            1       0         0         0
## 1196  -8.535848  32.94236            0       1         1         0
## 1197  -7.897603  31.59961            1       1         1         0
## 1198  -7.951425  35.78691            0       1         0         0
## 1199  -5.037125  38.88051            0       0         0         0
## 1200  -7.277879  31.04180            0       1         0         0
## 1201  -9.442633  33.55587            0       0         0         0
## 1202  -6.138801  39.23038            0       0         0         0
## 1203  -2.015420  33.94363            1       1         1         0
## 1204  -4.470482  35.69451            0       0         0         0
## 1205  -6.174307  39.21255            1       1         1         0
## 1206  -8.185828  31.52245            0       0         1         0
## 1207  -6.717176  38.73739            1       1         1         0
## 1208  -4.078846  37.13652            0       1         0         0
## 1209  -2.548617  32.98186            1       1         1         0
## 1210  -2.552243  32.91020            1       1         1         0
## 1211  -6.867696  39.28217            1       1         0         0
## 1212  -2.961180  34.16304            1       0         0         0
## 1213  -2.636654  32.27992            1       0         1         0
## 1214  -9.569345  34.87792            0       0         0         1
## 1215  -2.656405  31.57546            1       0         1         0
## 1216  -2.662600  32.64005            1       1         0         0
## 1217  -3.565175  36.95175            0       0         1         0
## 1218  -1.087705  31.80655            1       0         0         0
## 1219  -8.875161  34.82138            1       1         0         0
## 1220  -8.818194  34.84048            1       0         0         0
## 1221  -5.246048  39.78142            0       0         1         0
## 1222  -4.545293  31.96516            0       0         0         0
## 1223  -6.149396  39.51521            0       1         1         0
## 1224 -10.861290  39.02940            0       1         0         0
## 1225  -5.702095  34.49524            1       0         0         0
## 1226  -6.743388  30.40857            0       1         0         0
## 1227  -6.802138  39.04799            0       1         0         0
## 1228  -2.740385  31.39077            1       0         0         0
## 1229  -4.205279  34.83163            0       0         0         0
## 1230  -8.062827  36.00712            0       1         1         1
## 1231  -3.672029  33.43527            1       1         1         1
## 1232  -9.320334  32.78026            0       0         1         0
## 1233 -11.117437  35.18501            0       0         0         0
## 1234  -2.198380  31.44758            0       1         1         0
## 1235  -8.936705  33.34808            1       0         0         0
## 1236  -9.081679  34.80899            1       1         1         0
## 1237  -4.645499  35.04322            0       1         0         1
## 1238  -4.619285  35.76662            0       0         0         0
## 1239  -6.580177  39.08224            1       1         0         0
## 1240  -6.857164  39.27358            1       1         1         0
## 1241  -9.861860  38.89359            1       0         0         0
## 1242  -7.945408  31.63786            0       0         0         0
## 1243  -7.980466  31.63574            1       0         0         0
## 1244  -6.360085  37.13779            0       0         1         0
## 1245  -4.673296  29.99765            1       1         0         0
## 1246  -2.961771  34.16602            0       0         0         0
## 1247  -5.066668  31.93906            1       1         0         1
## 1248  -8.189974  31.84973            1       0         1         0
## 1249  -3.477845  37.57739            0       0         1         0
## 1250  -2.508970  35.60500            0       0         0         0
## 1251  -5.262932  39.78371            1       0         0         0
## 1252 -11.039236  34.75534            0       0         1         0
## 1253 -10.274178  40.17478            1       0         1         1
## 1254  -9.860296  38.89422            0       0         0         0
## 1255  -7.374329  30.62932            1       1         1         0
## 1256  -8.569586  34.45042            1       1         0         0
## 1257  -6.883073  39.25367            1       0         0         0
## 1258  -5.077282  39.10379            1       0         0         1
## 1259  -8.911420  33.43468            1       0         1         0
## 1260  -5.042673  33.49187            0       1         0         0
## 1261  -9.296204  32.77090            1       1         0         0
## 1262  -8.847476  34.82358            1       1         0         0
## 1263  -3.351815  37.02198            1       1         0         1
## 1264  -5.329071  34.51967            0       0         0         0
## 1265  -6.891166  38.56030            0       0         1         0
## 1266  -8.897497  33.45377            0       1         0         1
## 1267  -8.571663  33.45149            1       0         0         1
## 1268  -6.575886  36.05810            1       1         1         0
## 1269 -10.942641  39.24212            0       0         1         0
## 1270  -3.517377  32.39407            0       0         0         1
## 1271  -9.174110  32.86404            0       0         0         0
## 1272 -11.028368  39.25391            1       1         1         0
## 1273  -1.370831  34.08924            1       1         1         0
## 1274  -8.204944  35.99792            0       0         1         0
## 1275  -6.331423  31.06528            0       1         0         0
## 1276  -4.189685  35.02100            0       0         0         1
## 1277  -8.295835  34.90755            0       0         1         0
## 1278  -4.341213  35.39678            0       1         0         0
## 1279  -8.590790  35.15396            1       0         1         1
## 1280 -10.518433  38.68013            1       1         0         0
## 1281  -3.808550  32.22603            0       0         0         0
## 1282  -6.798603  39.16722            1       1         1         0
## 1283  -8.167511  36.33343            1       1         1         0
## 1284  -3.426084  30.73260            1       0         0         1
## 1285  -3.830539  30.63431            1       0         1         0
## 1286  -8.497178  35.59163            0       0         1         0
## 1287  -9.294835  32.75985            1       0         1         0
## 1288  -5.505384  32.49113            0       0         0         0
## 1289  -7.957530  31.61707            1       1         1         0
## 1290 -10.618727  38.81156            1       1         0         0
## 1291 -10.718672  38.77085            0       0         0         0
## 1292 -10.859750  39.78383            0       0         0         0
## 1293 -10.821988  39.53047            1       1         1         1
## 1294  -6.833252  39.24086            1       1         0         0
## 1295  -6.784750  39.15751            0       1         0         0
## 1296  -6.774998  37.75401            1       1         1         0
## 1297  -8.074447  31.93379            1       0         1         1
## 1298  -8.520152  39.09367            1       1         1         0
## 1299  -8.563262  35.33710            1       1         1         0
## 1300  -7.291474  36.06154            1       0         0         0
## 1301  -3.535957  32.41699            0       0         0         0
## 1302  -6.881212  39.28669            1       0         1         0
## 1303  -8.611124  31.29043            0       0         0         0
## 1304  -7.252479  37.73303            0       0         1         0
## 1305  -8.047945  35.46859            1       1         1         0
## 1306  -8.584176  35.20690            1       1         1         1
## 1307  -9.468258  33.95033            0       1         0         0
## 1308  -1.858006  33.05043            0       1         0         0
## 1309  -5.403271  38.61076            0       0         0         0
## 1310  -4.141928  33.45479            0       1         0         0
## 1311  -6.885232  39.15516            1       1         0         0
## 1312  -8.863944  34.01013            0       1         0         0
## 1313  -1.813507  33.39918            0       0         0         0
## 1314  -6.808917  39.10798            1       0         1         0
## 1315  -6.819884  39.23896            1       0         0         0
## 1316  -9.296518  32.77075            0       0         0         0
## 1317  -3.541056  33.13700            0       0         0         0
## 1318  -9.861525  38.89591            1       0         0         0
## 1319  -5.970089  39.19655            0       0         0         0
## 1320  -7.481221  31.18948            0       0         0         1
## 1321  -2.457498  32.91673            0       1         0         0
## 1322  -6.766904  39.11711            0       0         0         0
## 1323  -2.766226  32.11302            0       0         0         0
## 1324  -8.015630  31.60780            0       0         0         0
## 1325  -6.845011  39.27910            1       1         1         0
## 1326  -7.957522  31.61655            1       1         0         0
## 1327  -5.443251  38.03571            1       1         1         0
## 1328  -4.410158  34.77274            0       1         0         0
## 1329  -2.477641  32.20389            1       1         0         0
## 1330 -10.730171  39.79008            0       0         0         1
## 1331  -1.842942  31.14182            0       0         1         0
## 1332  -7.199297  31.05353            0       0         0         0
## 1333  -8.488180  32.28749            0       0         0         0
## 1334 -10.181007  38.94339            0       1         1         0
## 1335  -3.330566  36.63986            1       1         1         0
## 1336  -3.532103  33.10909            0       0         1         0
## 1337  -3.828594  32.60323            1       1         0         0
## 1338  -6.834060  39.24094            1       0         0         0
## 1339  -2.868922  32.52956            1       1         1         0
## 1340  -8.842268  34.81681            1       1         0         0
## 1341  -5.255828  32.36004            1       0         0         1
## 1342  -3.367226  36.68713            1       1         0         0
## 1343  -4.677816  35.95593            0       0         0         1
## 1344  -7.599822  36.99752            0       0         0         0
## 1345  -6.175132  37.60666            1       1         1         0
## 1346  -6.819436  37.64590            1       0         0         0
## 1347  -4.578554  33.05226            1       0         0         0
## 1348  -4.683479  34.89565            0       0         0         0
## 1349  -9.296036  32.77076            1       0         0         0
## 1350  -3.313394  37.13128            1       1         1         0
## 1351  -1.804956  33.40066            0       0         0         0
## 1352  -3.834086  32.68197            0       1         0         0
## 1353  -3.390898  35.50080            1       0         0         0
## 1354  -1.328819  31.80836            1       0         0         0
## 1355  -4.199558  32.32511            0       1         0         0
## 1356 -10.716993  38.77125            0       0         0         0
## 1357  -2.639351  32.27665            0       0         0         0
## 1358  -4.909873  29.66181            0       0         0         0
## 1359  -2.555321  33.04835            1       1         1         0
## 1360  -9.309252  33.62369            0       0         0         0
## 1361  -3.116547  33.63500            0       0         0         0
## 1362 -10.280367  40.11473            1       1         1         0
## 1363  -3.574209  33.39663            1       1         1         0
## 1364  -7.697058  35.62115            1       0         0         0
## 1365  -5.592471  38.25013            0       0         0         0
## 1366  -1.498631  33.81373            1       1         1         0
## 1367  -4.731770  38.33659            1       0         0         0
## 1368  -1.968789  32.91859            1       1         0         0
## 1369  -7.045029  30.56190            1       0         1         1
## 1370  -6.150041  39.51527            1       1         1         0
## 1371  -6.582160  39.08075            1       0         0         0
## 1372  -8.911144  33.46021            1       1         1         0
## 1373  -8.217617  31.68497            0       1         1         0
## 1374  -7.656825  35.45321            0       0         0         0
## 1375  -8.128389  30.96691            0       0         0         1
## 1376  -6.880545  39.28634            0       0         0         0
## 1377  -7.901711  31.59238            0       1         1         0
## 1378  -5.747892  34.82993            1       1         1         1
## 1379  -6.874888  30.53203            0       1         1         0
## 1380  -5.041033  33.49203            0       1         0         0
## 1381  -9.989919  38.96651            1       1         0         0
## 1382  -4.432813  30.02746            1       0         0         1
## 1383  -4.146769  32.88496            1       0         0         0
## 1384  -7.326880  35.54300            0       0         1         0
## 1385  -3.376518  36.67711            1       1         0         0
## 1386  -5.182547  38.78996            1       0         1         0
## 1387  -3.901757  35.81303            1       1         1         0
## 1388 -10.853176  39.27811            1       1         1         0
## 1389  -8.252193  31.98853            1       0         0         0
## 1390 -10.272671  40.16403            1       0         0         1
## 1391  -5.986547  38.22086            1       1         1         0
## 1392  -4.357457  37.82201            1       0         0         1
## 1393  -7.783844  35.66376            1       1         0         0
## 1394  -2.774221  32.61751            0       1         0         0
## 1395  -6.172539  35.73678            1       0         0         0
## 1396 -10.987258  35.62965            0       0         0         0
## 1397  -5.961231  35.97312            1       1         1         1
## 1398  -4.906134  35.78076            1       1         1         1
## 1399  -8.230081  35.43240            1       1         0         1
## 1400  -8.591173  35.15342            1       0         0         0
## 1401  -5.981867  35.44181            1       1         1         1
## 1402  -3.360554  33.92838            1       1         1         0
## 1403  -5.246029  39.78162            0       1         0         0
## 1404  -1.323663  31.79133            1       1         1         1
## 1405  -7.646819  35.75635            0       0         0         0
## 1406  -2.878944  37.36677            1       1         1         1
## 1407  -3.483882  37.57666            0       1         0         0
## 1408 -10.550582  39.78867            0       0         1         0
## 1409  -2.552190  32.90921            0       0         0         0
## 1410  -9.441318  33.56298            1       0         0         1
## 1411  -3.313353  36.70905            1       1         0         1
## 1412 -10.453933  39.40890            0       0         0         0
## 1413  -2.822872  33.36669            0       0         0         1
## 1414  -6.335614  31.06467            0       1         0         0
## 1415 -10.489456  39.02757            1       0         0         0
## 1416 -10.779807  39.54819            0       0         0         0
## 1417 -10.816626  39.52980            0       1         0         0
## 1418  -4.482634  35.05801            0       0         1         0
## 1419  -8.555560  34.44041            0       0         0         0
## 1420 -10.406698  39.16537            1       1         1         0
## 1421  -4.984155  39.83425            0       0         1         0
## 1422  -2.820199  33.37472            0       1         1         0
## 1423  -3.183415  35.47565            0       1         0         0
## 1424  -2.463518  33.63358            1       1         1         0
## 1425  -2.501594  32.88812            1       0         1         0
## 1426  -3.354894  37.02816            1       1         1         0
## 1427 -10.442568  36.06212            0       0         0         0
## 1428  -4.201522  30.48920            0       1         1         0
## 1429  -9.448775  34.44471            1       0         1         1
## 1430  -8.409128  35.86672            0       1         1         0
## 1431  -5.877589  39.28965            0       0         0         0
## 1432  -5.078551  39.12222            0       1         0         0
## 1433  -6.174566  39.21972            0       1         0         0
## 1434  -4.143758  33.45603            0       0         0         0
## 1435  -6.346204  31.06996            1       0         1         0
## 1436  -9.153371  33.48439            0       0         0         0
## 1437 -10.733520  39.51668            0       1         0         0
## 1438  -2.562278  32.92273            1       0         0         0
## 1439 -10.952359  39.34114            1       0         1         0
## 1440  -3.529821  32.41743            0       0         0         0
## 1441 -10.262463  39.92201            0       0         0         0
## 1442 -10.734911  39.51145            1       1         1         0
## 1443 -10.406595  39.16513            1       1         1         0
## 1444 -10.366193  38.76088            1       1         1         0
## 1445  -6.833240  39.24099            0       0         0         0
## 1446  -5.591854  38.25097            0       0         0         0
## 1447  -4.303707  34.21886            1       1         0         0
## 1448  -1.346914  31.65839            1       0         1         0
## 1449 -11.098781  39.30737            1       1         0         0
## 1450  -7.994345  31.79559            0       0         1         0
## 1451  -4.677372  35.95597            0       0         0         1
## 1452  -4.026007  34.50814            1       1         1         1
## 1453  -6.319659  31.08185            1       1         0         0
## 1454 -10.697105  39.39365            1       1         1         0
## 1455 -11.042434  37.43106            0       1         0         0
## 1456  -5.246212  39.78156            0       0         0         0
## 1457  -7.516174  39.23449            1       0         0         0
## 1458  -6.808057  39.25017            1       1         1         0
## 1459  -3.230813  31.81441            0       0         0         0
## 1460  -6.844884  39.23454            1       0         0         0
## 1461  -8.288632  35.30630            0       0         0         0
## 1462  -9.442603  33.55586            0       0         0         0
## 1463  -4.905149  35.77963            1       1         1         1
## 1464 -10.835639  38.64884            1       1         1         1
## 1465  -3.030816  34.35169            1       1         1         1
## 1466  -5.874116  39.25850            0       0         1         0
## 1467  -3.203744  34.41586            0       0         1         0
## 1468  -2.287084  32.26856            1       0         0         0
## 1469  -3.008850  37.58281            1       1         1         0
## 1470  -3.005696  37.58405            1       1         0         0
## 1471  -6.252552  30.91319            0       0         1         0
## 1472  -1.902157  35.41788            0       1         1         0
## 1473  -5.260576  39.78331            1       0         1         0
## 1474  -2.526170  32.90252            1       1         0         0
## 1475 -11.114904  38.47047            0       0         0         0
## 1476  -8.072963  31.93342            1       1         1         0
## 1477  -7.781061  35.69213            0       1         1         0
## 1478  -2.348638  32.29561            0       0         0         0
## 1479  -3.110210  32.72898            1       1         1         1
## 1480  -5.156076  38.44841            0       0         0         0
## 1481  -8.868727  34.95338            0       0         0         0
## 1482  -6.762835  38.98394            1       0         1         1
## 1483  -6.165228  39.20935            0       0         0         0
## 1484  -5.051254  33.48712            0       0         0         0
## 1485  -3.346076  37.30234            1       1         1         1
## 1486  -5.094561  39.77253            0       1         0         0
## 1487 -10.283449  40.11816            1       0         0         0
## 1488  -8.496129  35.59115            1       0         1         0
## 1489  -1.324223  31.79124            1       0         1         0
## 1490  -6.744328  36.09118            0       0         0         0
## 1491  -3.279386  32.21993            0       1         1         0
## 1492  -6.801701  39.05391            1       1         0         0
## 1493  -4.894028  38.57581            1       1         1         0
## 1494  -9.656229  33.90275            1       1         1         0
## 1495  -2.769367  32.59830            1       1         1         0
## 1496 -11.078765  38.27433            0       0         0         0
## 1497  -6.180251  39.23729            1       1         1         0
## 1498  -8.285460  35.30856            1       1         1         1
## 1499  -5.177701  39.79283            0       0         0         0
## 1500  -1.324367  31.79133            1       1         1         0
## 1501 -10.781260  39.54818            0       0         0         0
## 1502  -4.984044  39.83425            0       0         1         0
## 1503  -8.904659  34.66930            1       1         0         0
## 1504  -8.906187  33.45562            0       0         0         0
## 1505  -7.468961  36.12839            1       1         1         1
## 1506  -8.609636  31.29035            0       0         0         0
## 1507 -10.561740  39.17122            1       1         1         0
## 1508  -4.108853  35.18651            0       0         0         0
## 1509  -5.187207  38.76915            1       0         0         0
## 1510  -3.263644  32.22343            0       0         1         0
## 1511  -4.199660  32.32598            0       1         1         0
## 1512  -1.402118  34.39060            0       1         0         0
## 1513  -3.627718  33.39548            1       1         0         0
## 1514  -2.989378  34.19545            1       1         1         0
## 1515  -6.298305  35.48931            0       1         0         0
## 1516  -2.958909  34.15203            1       0         1         0
## 1517  -3.290587  32.24776            1       0         1         1
## 1518  -2.580367  32.13700            1       1         0         0
## 1519  -6.180251  39.23729            1       0         1         0
## 1520  -2.767162  32.60761            0       1         0         0
## 1521  -4.225829  34.61311            1       1         0         1
## 1522  -2.317028  32.68445            1       1         1         0
## 1523  -9.012511  33.06826            1       0         1         1
## 1524  -5.072166  38.45411            1       0         0         0
## 1525  -1.371133  34.08894            0       1         0         0
## 1526  -2.287163  32.26921            1       1         1         1
## 1527  -3.209626  37.31099            0       1         0         0
## 1528  -4.943269  38.91512            1       1         0         0
## 1529  -6.888472  39.16117            1       1         1         0
## 1530  -8.973632  33.95745            1       0         0         0
## 1531  -7.798882  35.77168            1       0         0         1
## 1532  -6.917841  39.25849            1       0         1         0
## 1533  -6.813962  30.48862            0       1         0         0
## 1534  -8.283058  35.30969            1       1         1         0
## 1535  -7.680544  31.56242            1       0         0         0
## 1536  -2.193328  31.44266            0       1         1         0
## 1537  -1.335291  33.80024            1       1         1         0
## 1538  -3.240666  33.42970            1       0         0         1
## 1539  -7.954961  36.86503            1       1         0         1
## 1540 -10.361872  40.10192            1       0         0         0
## 1541  -4.879503  34.63683            0       1         1         0
## 1542  -7.680511  36.03972            1       0         1         0
## 1543 -10.560232  36.23843            0       0         0         0
## 1544  -4.108829  35.18654            0       1         0         0
## 1545  -6.172697  35.73670            0       0         0         0
## 1546  -5.446184  38.03563            0       0         0         1
## 1547  -5.246176  39.78152            0       0         1         0
## 1548  -3.372394  37.34017            1       1         0         0
## 1549  -6.743822  36.09175            1       0         0         0
## 1550  -8.017376  31.60421            0       0         0         0
## 1551 -10.663162  38.75215            0       1         1         0
## 1552  -6.720384  38.73755            1       1         0         0
## 1553 -10.818248  39.52731            1       1         0         0
## 1554  -6.814287  37.68486            1       1         0         0
## 1555  -8.848242  32.28191            1       0         0         0
## 1556  -7.872670  30.79677            0       1         1         0
## 1557  -8.299517  35.28403            1       1         0         0
## 1558  -9.575299  33.77273            0       1         0         0
## 1559  -4.230434  35.42796            1       1         0         0
## 1560  -6.584905  36.07362            0       0         0         0
## 1561  -6.823028  39.31091            1       1         0         0
## 1562  -5.873696  39.29160            0       0         0         0
## 1563  -5.323720  34.51856            0       0         1         0
## 1564  -4.648166  35.04097            1       1         1         0
## 1565  -3.101723  31.08703            0       1         0         0
## 1566  -1.875248  33.70188            0       1         0         0
## 1567 -11.050098  34.75486            1       1         1         1
## 1568  -9.957604  34.61850            0       1         0         0
## 1569  -6.265062  36.86318            0       1         0         0
## 1570  -9.408402  33.91706            0       1         0         0
## 1571  -2.526941  34.05992            0       0         0         0
## 1572  -5.992601  37.75381            0       0         0         0
## 1573  -3.042940  31.37638            1       1         1         0
## 1574  -5.873522  39.25880            0       0         0         0
## 1575  -2.951463  33.91648            0       0         1         0
## 1576  -3.871301  35.65138            0       1         0         0
## 1577  -2.755046  31.87911            0       0         0         1
## 1578  -4.954600  39.78724            0       1         0         0
## 1579  -8.252495  31.98901            1       1         1         0
## 1580  -1.461846  31.68683            0       1         1         1
## 1581  -8.374812  31.97821            0       0         1         0
## 1582  -8.392441  38.94695            1       1         1         0
## 1583  -8.848334  34.82286            1       0         0         0
## 1584  -3.996728  34.54162            1       1         1         0
## 1585  -3.568046  36.94879            0       1         1         0
## 1586  -3.622045  33.81446            1       0         1         0
## 1587  -6.742766  32.48257            0       0         1         0
## 1588  -3.808663  32.22639            1       0         1         0
## 1589  -6.538357  38.99085            1       1         1         0
## 1590  -1.556631  31.64424            1       1         1         0
## 1591  -5.505623  32.49358            1       0         0         0
## 1592  -7.252623  37.73266            1       0         0         0
## 1593  -4.881701  29.64791            1       1         1         1
## 1594  -5.956557  36.69484            0       0         0         1
## 1595  -2.763815  32.60413            1       1         0         0
## 1596  -6.484378  31.11691            0       0         0         0
## 1597  -3.822062  37.46193            1       1         0         0
## 1598  -9.464686  33.94887            1       0         0         0
## 1599  -8.088045  36.68110            0       1         1         0
## 1600  -3.005139  31.92481            1       1         0         1
## 1601 -11.217201  34.97810            1       0         0         0
## 1602  -8.820627  36.25205            1       1         0         0
## 1603  -7.872740  30.79650            0       1         0         0
## 1604  -8.316642  35.55187            0       0         0         0
## 1605  -9.334995  34.76437            0       0         0         0
## 1606  -6.897663  38.55779            1       1         1         0
## 1607  -8.905791  33.45594            1       1         0         0
## 1608  -2.501981  32.88888            1       1         1         0
## 1609 -11.039624  37.18491            0       1         0         0
## 1610  -6.819832  39.23836            1       0         1         0
## 1611 -10.275122  40.18637            1       1         0         0
## 1612  -7.255795  31.39926            1       1         1         0
## 1613  -1.986809  33.06927            1       1         1         0
## 1614  -7.154886  31.06596            0       0         1         0
## 1615  -7.784096  35.71351            1       1         1         0
## 1616  -4.804338  34.22029            0       1         0         0
## 1617  -7.937941  31.62741            0       0         0         0
## 1618  -3.983516  34.53671            0       0         1         0
## 1619  -3.571770  32.61084            0       0         1         0
## 1620  -7.044389  30.55955            0       0         1         0
## 1621  -4.638137  38.19882            1       1         0         0
## 1622  -6.790044  39.05432            1       0         1         0
## 1623  -4.216021  35.74168            1       1         1         1
## 1624  -9.336776  33.32216            0       0         0         0
## 1625  -8.977339  33.94898            0       1         0         0
## 1626  -3.130516  32.91876            0       0         0         0
## 1627  -3.196323  34.41477            0       0         1         0
## 1628  -5.992340  37.75255            1       1         1         0
## 1629  -9.591888  34.87660            1       0         1         1
## 1630  -5.181477  39.09101            0       0         0         0
## 1631  -7.393303  38.96921            1       1         0         0
## 1632  -5.170935  38.46550            1       0         1         0
## 1633  -2.563796  33.27545            1       0         1         0
## 1634  -3.128570  33.49541            0       0         1         0
## 1635  -6.484169  31.11612            1       1         0         0
## 1636  -4.793995  38.29087            1       1         1         1
## 1637  -8.616441  39.26453            0       0         0         0
## 1638  -6.778774  36.64757            0       0         1         0
## 1639  -8.773721  33.64296            1       1         0         0
## 1640  -4.312438  35.74456            1       0         0         0
## 1641  -3.220784  32.69438            0       0         0         0
## 1642  -3.278784  37.09615            1       1         1         1
## 1643  -2.539368  32.91289            1       0         1         0
## 1644  -4.700035  38.11984            1       0         1         0
## 1645  -8.253512  35.10657            0       0         0         0
## 1646  -6.213538  31.22455            0       0         0         0
## 1647  -1.858816  33.04993            1       1         0         0
## 1648  -9.239853  33.33894            0       0         1         0
## 1649  -6.321523  31.08085            1       0         0         1
## 1650  -5.725303  37.09664            1       1         1         0
## 1651  -4.762395  34.20166            0       1         0         0
## 1652  -9.309995  33.62291            1       1         0         0
## 1653  -6.165643  39.20898            0       0         0         0
## 1654  -4.847666  38.51229            1       1         0         0
## 1655  -2.490681  32.98829            1       1         0         0
## 1656 -10.345759  40.25116            1       1         1         0
## 1657  -7.746597  35.71928            1       1         1         0
## 1658  -8.213781  34.83908            1       1         0         0
## 1659  -3.128526  33.51308            0       0         0         0
## 1660  -4.142308  33.45834            0       0         0         0
## 1661  -9.905980  38.98556            0       1         0         0
## 1662  -3.952103  35.44045            1       0         0         0
## 1663  -6.575295  39.07677            1       0         0         0
## 1664  -5.054095  35.86419            0       0         1         0
## 1665  -6.856505  39.28311            1       1         1         0
## 1666  -6.420854  31.02019            1       1         0         0
## 1667  -7.736564  35.69494            1       0         1         0
## 1668  -2.662391  32.64137            0       0         1         1
## 1669  -5.440945  37.73055            1       0         1         1
## 1670  -7.144943  39.07801            1       0         1         0
## 1671  -8.891691  33.54492            1       0         0         0
## 1672  -7.945384  31.63919            1       0         1         0
## 1673  -6.345850  31.06956            1       0         0         1
## 1674  -6.659096  39.17855            1       0         0         0
## 1675 -10.853015  39.27820            1       1         1         0
## 1676  -4.771495  34.91792            0       1         0         0
## 1677  -9.174854  32.86412            1       1         0         0
## 1678  -6.849239  39.14637            1       1         0         0
## 1679  -6.775203  37.75313            1       1         0         0
## 1680  -6.811465  39.10764            1       0         0         0
## 1681 -10.274652  40.16780            1       1         1         0
## 1682  -9.010983  33.00515            1       1         0         0
## 1683  -9.326336  33.33306            0       0         0         0
## 1684  -8.843741  34.80464            1       1         0         0
## 1685  -5.883608  36.44749            0       0         0         0
## 1686  -3.952100  35.44060            0       1         1         0
## 1687  -2.377648  33.58031            1       0         0         0
## 1688  -5.019357  38.70771            1       0         0         1
## 1689  -5.612598  32.74700            0       1         1         0
## 1690  -8.572309  33.45624            1       1         1         1
## 1691  -4.324633  37.88633            1       0         0         0
## 1692 -10.442166  36.05909            0       1         0         0
## 1693 -10.106704  39.62071            1       0         0         0
## 1694  -8.173272  36.33574            1       1         1         1
## 1695  -5.865750  35.19121            0       0         0         0
## 1696  -3.997215  33.37929            1       0         0         0
## 1697  -1.496014  33.81085            0       0         0         0
## 1698  -4.575166  30.09850            0       1         1         0
## 1699 -10.369790  39.22200            1       1         0         0
## 1700  -5.016971  32.81002            0       0         0         0
## 1701  -6.744070  30.40721            1       0         1         0
## 1702  -2.564949  36.78456            0       1         0         0
## 1703  -6.418922  39.54607            0       0         0         0
## 1704  -6.825991  37.65313            1       1         1         0
## 1705  -4.347483  32.88209            1       0         1         0
## 1706  -5.036151  36.23784            0       0         0         0
## 1707 -11.402195  36.43081            1       1         0         0
## 1708  -4.379514  35.47740            0       1         0         0
## 1709  -9.669812  39.10841            0       0         0         1
## 1710 -10.202919  38.84235            0       1         0         0
## 1711  -6.484725  35.93951            1       1         1         0
## 1712  -5.337003  39.73044            0       1         0         0
## 1713 -10.751565  38.53242            0       0         0         0
## 1714  -8.882983  32.79953            0       0         0         0
## 1715  -2.916553  32.16530            0       0         0         0
## 1716  -4.848358  29.74423            1       1         0         0
## 1717  -3.415501  31.52227            1       0         0         0
## 1718  -2.317051  32.68439            1       1         1         0
## 1719  -1.364433  34.43741            0       0         1         0
## 1720  -4.199139  30.49044            1       1         1         0
## 1721  -2.506684  32.00984            1       0         0         0
## 1722  -3.253151  37.00724            1       1         0         0
## 1723 -10.933880  39.28597            1       1         1         0
## 1724  -6.858386  39.23360            1       0         1         0
## 1725  -6.131434  39.31614            1       0         0         0
## 1726 -10.694773  39.39374            1       1         1         0
## 1727  -5.246111  39.78152            1       0         1         0
## 1728  -3.053619  34.34180            0       0         1         0
## 1729  -8.502466  35.08090            0       0         0         0
## 1730  -3.638685  32.95432            0       1         1         0
## 1731 -11.132198  38.60738            1       1         1         0
## 1732  -8.965131  32.89897            1       0         0         0
## 1733  -7.326877  35.54285            1       0         0         0
## 1734 -10.692207  39.39712            1       1         1         0
## 1735  -3.749834  32.85768            1       0         0         0
## 1736  -1.811149  33.40906            1       0         0         0
## 1737  -2.122842  33.05959            1       1         1         0
## 1738  -6.524381  37.21406            0       0         0         0
## 1739  -4.510074  35.06841            0       0         0         0
## 1740  -7.838677  38.34612            1       1         0         0
## 1741  -6.139624  37.59064            1       1         1         0
## 1742  -2.774411  33.79147            0       0         1         0
## 1743 -10.794144  39.42216            1       1         0         0
## 1744  -6.849290  39.14593            1       1         1         0
## 1745  -8.059813  35.46360            1       1         0         0
## 1746  -9.927538  39.72514            0       0         0         0
## 1747  -8.847350  34.82324            1       1         0         0
## 1748  -4.891229  29.74253            0       0         0         0
## 1749  -4.794421  38.28562            1       0         0         0
## 1750  -2.078227  32.93930            0       1         1         0
## 1751  -7.491411  30.59690            0       0         0         0
## 1752  -5.246169  39.78152            0       0         0         0
## 1753  -9.133788  32.74885            0       0         0         0
## 1754  -4.436389  34.87024            1       0         1         0
## 1755  -9.251326  32.83648            1       1         0         0
## 1756  -7.855481  31.17657            1       0         1         0
## 1757  -1.749973  31.61606            1       1         1         0
## 1758 -11.263935  34.79114            0       0         0         1
## 1759  -6.204194  31.22394            0       1         0         0
## 1760 -10.202887  38.61961            1       0         0         0
## 1761  -4.890348  29.74325            0       0         0         1
## 1762 -11.049011  34.76160            0       1         0         0
## 1763  -7.774221  35.69569            1       0         1         0
## 1764  -5.442208  38.03753            0       0         0         0
## 1765  -6.240166  39.52770            0       1         1         0
## 1766  -5.104936  32.39602            1       0         0         1
## 1767  -6.844722  39.27924            1       0         0         0
## 1768  -8.937450  33.18943            1       0         1         0
## 1769  -5.695753  36.63119            0       0         0         0
## 1770  -6.070210  36.64538            1       1         0         0
## 1771  -6.617259  39.09648            1       1         0         0
## 1772  -8.313724  35.27435            1       1         0         0
## 1773  -5.085805  30.56337            1       1         0         0
## 1774  -5.456934  33.82835            0       0         0         0
## 1775  -2.584752  32.64708            0       0         0         0
## 1776  -9.119015  32.93943            1       1         0         0
## 1777  -7.196613  31.09202            0       1         0         0
## 1778  -5.016726  38.70963            1       0         1         0
## 1779  -8.911367  33.43452            0       0         0         0
## 1780 -10.251400  38.69593            0       1         0         1
## 1781  -3.252763  33.43796            0       0         0         0
## 1782  -7.453471  31.38635            0       1         1         1
## 1783  -4.552511  34.84270            0       0         0         0
## 1784  -7.117449  31.23510            1       1         1         1
## 1785  -4.853477  34.87766            1       1         1         0
## 1786  -5.015404  38.70849            0       0         0         0
## 1787 -10.860995  39.27997            0       0         1         0
## 1788  -5.738672  34.84156            1       1         1         1
## 1789  -8.896624  31.69146            0       0         0         0
## 1790  -6.794218  39.23238            1       0         0         0
## 1791  -2.011927  33.94685            1       0         1         0
## 1792  -2.487316  32.92427            1       1         1         0
## 1793  -5.173541  38.46678            1       0         0         0
## 1794 -10.716805  38.76730            0       0         0         0
## 1795  -5.029538  38.69550            1       0         0         0
## 1796  -6.636902  38.35509            1       1         1         0
## 1797  -7.775075  31.10261            0       0         1         0
## 1798  -1.960005  35.35634            0       0         0         1
## 1799  -7.957994  31.61841            1       0         0         1
## 1800  -9.973396  34.62808            0       1         0         0
## 1801 -10.664190  38.75097            0       0         0         0
## 1802  -8.072968  31.93338            1       0         0         0
## 1803 -11.074049  38.27657            0       1         0         1
## 1804  -1.985535  33.06592            0       0         1         0
## 1805  -4.684252  34.89663            1       1         1         1
## 1806  -6.867777  39.28387            1       1         0         0
## 1807 -11.056857  37.33766            1       1         1         1
## 1808 -11.108296  35.20304            0       1         1         0
## 1809  -7.701168  31.28270            0       0         0         0
## 1810  -6.923374  39.25581            1       1         0         1
## 1811  -2.533532  32.93136            1       0         0         0
## 1812  -2.504959  32.01061            1       1         1         0
## 1813  -7.782660  35.66713            1       0         0         0
## 1814 -10.796302  39.42368            0       0         0         0
## 1815  -8.409273  35.86652            0       1         1         1
## 1816  -8.302826  32.32665            0       0         1         0
## 1817 -10.795314  39.42262            0       0         1         1
## 1818 -10.226628  40.22047            1       0         0         0
## 1819  -8.088016  36.68237            1       1         1         0
## 1820  -7.118782  37.80586            1       0         1         0
## 1821  -6.823234  39.23002            1       1         1         0
## 1822  -8.039318  35.76125            0       1         1         0
## 1823  -5.872647  39.29254            0       0         1         0
## 1824  -6.395152  30.97914            0       1         1         0
## 1825 -10.237950  39.47138            0       0         0         1
## 1826  -6.882901  39.25327            1       0         0         0
## 1827  -3.448597  37.42518            1       1         1         0
## 1828  -4.188611  35.02128            1       1         1         1
## 1829  -4.056461  33.08408            1       1         0         0
## 1830  -7.774946  31.10267            1       1         1         1
## 1831  -3.358762  36.60110            0       0         0         0
## 1832  -9.773358  39.60115            0       0         0         1
## 1833  -6.884961  39.15519            1       0         0         0
## 1834  -4.345548  32.89008            0       0         0         0
## 1835  -8.350217  31.83529            1       1         0         0
## 1836  -6.923583  39.25703            1       1         0         0
## 1837  -4.372977  35.07264            1       1         1         0
## 1838 -10.712195  39.44463            0       0         0         0
## 1839  -5.777245  39.30055            0       0         0         0
## 1840  -4.984201  39.83419            0       1         1         0
## 1841  -3.439856  31.89303            1       1         0         0
## 1842  -4.140427  33.46406            0       1         0         0
## 1843  -6.837059  39.18588            1       0         0         0
## 1844  -8.012022  35.49688            1       1         1         0
## 1845  -3.333017  33.92523            0       0         1         0
## 1846  -3.667719  35.60286            1       0         1         0
## 1847  -6.341594  31.06431            1       0         0         0
## 1848  -6.892275  39.22910            1       1         1         1
## 1849  -6.211128  39.21805            1       0         0         1
## 1850  -3.388338  36.94392            1       0         1         0
## 1851  -6.881226  39.28643            0       0         0         0
## 1852  -9.438225  33.56092            1       0         0         1
## 1853  -4.119316  34.82136            0       1         1         0
## 1854 -10.521873  38.67520            1       1         0         0
## 1855  -1.324265  31.79129            1       0         0         0
## 1856  -5.169510  39.80646            0       1         0         0
## 1857  -3.016358  33.04483            1       1         1         0
## 1858  -7.731434  35.70265            1       0         0         1
## 1859  -6.883011  39.25342            1       1         0         1
## 1860 -10.719292  38.77158            0       1         0         0
## 1861  -3.162447  33.30108            1       0         0         0
## 1862  -4.906169  35.78085            0       0         0         0
## 1863  -6.148665  35.73767            1       0         0         0
## 1864  -8.089743  35.83677            1       1         0         1
## 1865 -10.442327  36.06147            1       0         0         1
## 1866  -8.052735  31.50348            1       1         1         0
## 1867  -5.200430  38.71752            1       0         0         1
## 1868  -6.220632  36.35454            0       0         1         1
## 1869  -3.512551  35.95517            0       1         1         0
## 1870  -9.987725  38.96400            1       1         1         0
## 1871  -5.242975  39.76736            1       1         0         0
## 1872  -2.640704  33.93040            0       1         1         0
## 1873  -6.483856  31.11671            0       1         1         1
## 1874  -5.981871  35.44183            0       1         0         1
## 1875  -5.246220  39.78233            1       1         1         0
## 1876  -4.567826  33.03933            1       1         1         0
## 1877 -10.861374  39.02941            1       1         1         0
## 1878  -3.251487  30.90944            1       1         1         0
## 1879  -4.311841  35.74577            1       0         0         0
## 1880  -6.921514  37.77748            0       0         0         0
## 1881  -9.489001  33.27174            0       0         1         0
## 1882 -10.182372  40.01454            1       0         0         0
## 1883  -4.646231  35.04335            1       0         1         0
## 1884 -10.663274  38.75023            0       1         1         0
## 1885  -6.779442  39.23631            1       1         0         1
## 1886  -4.808834  34.75382            1       1         0         0
## 1887  -4.292207  35.55142            1       0         1         1
## 1888  -6.331494  38.38498            1       1         0         0
## 1889  -1.593010  31.14144            1       0         0         0
## 1890  -1.870342  34.73408            0       0         0         0
## 1891  -8.102938  35.90314            0       0         0         0
## 1892  -9.057494  33.28735            1       0         1         0
## 1893  -6.857194  39.28204            1       0         1         0
## 1894  -9.083033  34.64290            0       0         0         0
## 1895  -6.223189  36.35387            1       1         0         0
## 1896  -2.770246  32.69655            1       1         1         0
## 1897  -6.616494  39.11045            1       1         0         0
## 1898  -3.320310  36.33822            1       0         0         0
## 1899 -10.560745  39.17486            0       0         0         0
## 1900  -4.310558  35.74179            1       0         0         0
## 1901  -7.955387  36.86436            0       1         1         0
## 1902 -10.950543  39.34136            1       0         1         0
## 1903  -5.071152  32.79159            1       1         0         0
## 1904  -8.243182  35.02466            0       0         1         0
## 1905 -10.704898  35.80127            1       0         1         0
## 1906  -3.741828  37.66342            1       1         0         1
## 1907  -8.386770  33.23058            1       0         0         0
## 1908 -10.281636  40.19760            1       0         1         0
## 1909  -9.336108  34.76667            0       1         0         0
## 1910  -6.783918  39.01765            1       1         0         0
## 1911  -9.986419  38.96440            1       0         0         0
## 1912  -2.401749  32.32909            1       1         1         0
## 1913  -9.464455  33.95018            0       0         0         0
## 1914  -2.528950  32.96297            1       0         1         1
## 1915  -2.879020  32.23297            1       0         0         0
## 1916  -1.456329  31.69376            1       1         1         0
## 1917  -5.873222  39.29424            0       1         0         0
## 1918  -9.283068  35.28421            1       1         0         0
## 1919  -6.151672  39.22428            1       0         1         0
## 1920  -4.796414  38.29167            1       1         0         1
## 1921  -3.329766  36.63739            1       1         0         0
## 1922  -6.827707  37.65220            1       0         1         1
## 1923  -4.809622  34.75340            0       0         0         0
## 1924  -5.986630  38.22105            0       0         0         0
## 1925  -6.897030  39.25355            1       0         0         0
## 1926  -4.528917  38.23805            0       0         0         0
## 1927  -3.335765  33.92738            0       1         0         0
## 1928  -4.642531  34.16671            0       1         0         0
## 1929  -4.574809  30.09948            0       0         0         0
## 1930  -3.153624  33.66235            0       0         0         0
## 1931  -2.747094  33.23101            0       1         0         1
## 1932  -4.909710  29.66180            1       1         1         1
## 1933  -4.324997  37.88642            1       0         1         0
## 1934  -6.750118  30.40934            0       1         0         0
## 1935  -8.885678  33.30232            1       0         0         0
## 1936  -1.511051  33.80825            1       1         0         0
## 1937  -1.084000  31.80719            1       1         1         0
## 1938  -6.909753  37.49554            0       1         1         0
## 1939  -5.715105  38.23726            1       0         0         0
## 1940  -1.375401  34.43289            0       1         0         0
## 1941  -7.389503  31.36446            0       0         1         0
## 1942 -10.793116  38.32066            0       1         0         0
## 1943 -11.098611  39.30909            0       0         0         0
## 1944 -10.704977  39.13345            0       0         1         1
## 1945  -7.167618  30.53641            1       0         1         0
## 1946  -6.948321  39.23169            1       0         1         0
## 1947  -4.957011  39.78686            1       1         0         0
## 1948  -6.146456  39.32883            0       0         0         0
## 1949  -4.548923  35.79580            1       1         1         0
## 1950  -2.715496  33.14014            0       0         0         0
## 1951  -8.539092  32.94157            0       1         0         0
## 1952  -6.888139  39.16064            1       1         1         1
## 1953  -4.824996  32.85682            0       0         0         0
## 1954  -6.041551  39.23003            1       0         1         0
## 1955  -8.016228  35.49347            0       0         0         0
## 1956  -3.788439  30.49477            1       1         0         0
## 1957  -3.199934  37.64567            1       1         0         0
## 1958  -9.669902  39.10836            1       0         0         0
## 1959  -6.087422  39.32903            0       0         0         0
## 1960  -8.841048  34.81143            1       1         1         0
## 1961  -5.926811  39.22311            0       0         1         0
## 1962  -4.820650  39.08783            1       1         1         0
## 1963  -4.625886  35.75632            1       0         0         1
## 1964  -4.269811  38.05066            1       1         1         0
## 1965  -8.409393  35.86655            0       0         0         0
## 1966  -2.486009  32.90195            0       1         1         0
## 1967  -9.221034  33.64046            1       0         1         0
## 1968  -2.560882  33.26424            1       0         1         0
## 1969  -3.448631  37.42520            1       1         0         0
## 1970  -9.404283  39.59920            0       0         0         0
## 1971  -5.283339  35.08206            1       0         1         0
## 1972  -5.337002  39.73052            1       0         0         0
## 1973  -3.005113  31.92495            1       1         1         1
## 1974 -10.204856  38.84306            0       1         0         0
## 1975  -2.564527  36.78431            0       0         0         1
## 1976  -6.616821  39.11027            1       0         0         0
## 1977  -8.551020  32.55034            1       0         0         0
## 1978  -6.869432  39.27548            0       0         0         0
## 1979  -2.402847  31.70872            1       0         0         0
## 1980  -6.163826  35.88974            0       0         0         0
## 1981  -3.828950  32.60460            1       1         1         0
## 1982  -7.104716  31.23705            0       1         0         0
## 1983  -9.408092  33.91681            0       1         1         0
## 1984  -4.453210  38.32891            0       0         0         0
## 1985  -5.246653  39.76678            0       0         0         0
## 1986  -5.176406  34.62006            0       0         1         0
## 1987  -8.465831  32.15776            1       0         1         0
## 1988 -11.023215  35.12412            0       1         0         0
## 1989  -8.526254  32.03569            0       0         0         0
## 1990  -8.361413  32.29751            1       0         0         0
## 1991  -5.873933  39.25830            1       0         0         0
## 1992  -2.879095  37.36977            1       0         0         0
## 1993  -9.029688  32.46648            0       0         0         0
## 1994  -5.700216  34.49165            1       1         0         0
## 1995  -3.390610  36.66734            1       1         1         0
## 1996  -3.387117  35.49957            1       1         1         1
## 1997  -8.033446  35.77037            0       0         0         1
## 1998  -6.883157  39.25347            1       0         0         0
## 1999  -6.598281  38.54620            0       0         1         0
## 2000  -6.794265  39.23270            1       0         0         0
## 2001 -10.735214  34.74395            0       1         1         0
## 2002  -8.253602  31.36164            1       1         1         1
## 2003  -3.607367  36.71279            0       1         0         1
## 2004 -10.692302  39.79992            1       0         0         1
## 2005  -7.408982  37.66951            0       1         0         0
## 2006  -6.721359  38.73640            1       0         0         1
## 2007  -6.193025  39.25603            1       1         1         0
## 2008  -6.142661  39.24159            1       1         1         0
## 2009 -10.965968  35.27540            0       0         0         0
## 2010  -9.971204  34.63016            1       1         1         0
## 2011  -6.814491  39.15244            1       1         1         0
## 2012  -8.934923  33.34461            1       0         0         0
## 2013  -2.665976  32.98017            1       1         1         0
## 2014  -6.150823  39.51708            0       1         1         0
## 2015  -7.872884  30.79704            0       0         1         0
## 2016  -2.705877  33.48917            1       0         0         1
## 2017 -10.258433  39.92180            1       0         0         0
## 2018  -7.599161  31.27127            1       1         0         0
## 2019  -3.133942  32.90605            1       0         0         1
## 2020  -6.816965  39.08526            0       0         1         0
## 2021  -4.419273  34.76239            0       0         0         0
## 2022  -8.062195  36.00653            1       0         1         1
## 2023  -4.734734  34.92388            1       1         1         1
## 2024  -6.808147  39.23252            1       1         0         0
## 2025  -7.510278  31.04500            0       1         0         0
## 2026  -8.967764  32.90095            0       1         0         0
## 2027  -7.646870  35.75628            0       1         1         0
## 2028  -5.236417  39.77872            0       0         0         0
## 2029  -8.635636  31.42947            0       0         0         0
## 2030  -1.241344  34.36808            1       1         1         0
## 2031  -6.849673  39.22526            1       0         1         0
## 2032  -4.776154  33.23853            0       1         0         0
## 2033  -3.209157  37.31183            1       1         0         0
## 2034  -7.302427  30.63091            0       1         1         0
## 2035 -10.274334  40.17459            0       0         0         0
## 2036  -8.541338  31.90562            1       0         1         0
## 2037  -2.843314  33.08111            1       0         0         0
## 2038  -4.460808  35.68938            1       0         1         0
## 2039  -2.602632  33.42278            1       1         0         0
## 2040  -6.209196  39.21827            1       1         1         1
## 2041  -9.050734  33.29010            0       0         0         0
## 2042  -3.432013  31.50893            1       1         1         0
## 2043  -6.849671  39.22503            0       0         0         0
## 2044  -4.453946  38.32841            0       0         0         0
## 2045  -6.187648  39.21582            1       0         0         0
## 2046  -6.200187  39.25399            1       0         1         0
## 2047  -4.493813  35.07229            0       0         0         0
## 2048  -3.351819  37.34918            1       1         0         1
## 2049  -4.200111  34.82145            1       0         0         0
## 2050  -2.121309  33.05953            1       1         0         1
## 2051  -7.849743  31.43522            1       0         1         1
## 2052  -7.954386  31.60717            1       0         0         0
## 2053  -4.474563  34.18417            0       1         0         0
## 2054  -5.875356  39.25609            1       0         0         0
## 2055  -4.071376  37.98837            1       1         1         0
## 2056  -5.134907  34.77139            1       1         0         0
## 2057  -1.750169  31.61119            1       0         0         0
## 2058 -10.378582  39.84099            1       1         0         1
## 2059  -4.395134  34.52822            0       1         0         0
## 2060  -8.167450  36.33011            1       1         0         0
## 2061  -6.162934  39.19122            0       0         1         0
## 2062  -5.074657  38.45269            0       0         0         0
## 2063  -4.435247  34.86985            1       1         1         0
## 2064  -4.612594  29.78251            1       1         1         0
## 2065  -6.858850  39.23302            1       1         0         0
## 2066  -3.391698  37.55031            1       1         1         0
## 2067  -4.874983  38.44760            0       0         0         0
## 2068  -6.854998  30.52992            0       1         0         0
## 2069  -6.816958  39.08603            1       0         1         0
## 2070  -5.769218  37.25095            0       0         0         0
## 2071  -5.185362  38.77041            1       1         0         1
## 2072  -2.120816  33.49131            1       1         1         0
## 2073  -3.204742  35.94439            1       0         0         0
## 2074  -4.088917  34.73578            1       0         1         0
## 2075 -10.817017  39.52649            1       1         1         0
## 2076  -9.171430  33.81922            0       0         0         0
## 2077 -10.926600  35.27890            1       1         0         0
## 2078  -4.760870  34.58139            1       1         1         1
## 2079  -8.803570  34.22392            1       0         1         0
## 2080 -10.258666  39.92090            1       1         1         0
## 2081  -8.973382  33.95753            0       1         0         0
## 2082  -2.578178  36.77668            0       0         0         0
## 2083  -4.776107  33.23834            0       0         0         0
## 2084  -3.355509  36.49439            0       0         0         0
## 2085 -10.793753  39.42271            0       1         1         0
## 2086  -4.191869  33.12874            0       0         0         0
## 2087  -2.856371  33.28018            0       1         1         0
## 2088  -8.088099  36.68166            0       0         0         0
## 2089  -1.331263  33.80811            1       0         0         0
## 2090  -4.200126  32.32583            0       0         1         0
## 2091 -10.488654  39.02789            1       1         0         0
## 2092  -6.154415  39.22299            1       0         1         0
## 2093 -11.125137  35.17390            1       1         0         0
## 2094 -10.488128  39.02829            1       1         0         1
## 2095 -11.023280  35.12392            0       0         0         1
## 2096  -8.189482  31.85022            0       0         0         0
## 2097  -1.557957  31.46215            1       1         1         0
## 2098  -9.336072  34.76558            1       0         1         0
## 2099  -2.344145  32.29518            0       1         0         0
## 2100 -11.057877  35.11873            0       1         1         0
## 2101  -1.344749  31.65857            1       0         1         0
## 2102  -1.321872  31.81752            1       1         1         0
## 2103  -6.192821  39.25603            1       1         0         0
## 2104  -3.366351  36.68724            1       1         1         0
## 2105  -3.005197  31.92445            1       0         1         0
## 2106  -4.105939  35.18116            1       1         1         1
## 2107  -2.538485  32.23759            1       1         1         0
## 2108  -3.031613  33.93113            0       0         1         0
## 2109  -8.806570  34.97652            1       0         1         0
## 2110  -9.369359  34.23857            1       0         1         0
## 2111  -6.181934  39.22333            0       1         0         0
## 2112  -3.358118  33.90985            1       0         1         0
## 2113  -1.853442  31.59029            0       1         1         1
## 2114  -2.743992  31.62895            0       0         0         0
## 2115  -8.305117  32.33495            1       0         1         0
## 2116  -4.310531  35.74016            0       0         0         0
## 2117  -5.124884  38.38488            1       0         0         0
## 2118  -6.933936  30.60138            0       0         0         0
## 2119  -7.752823  35.67893            1       1         1         0
## 2120  -2.766215  32.11263            1       1         1         0
## 2121  -4.552331  34.84274            0       1         0         0
## 2122  -1.880742  34.73088            1       0         1         1
## 2123 -10.493082  39.32410            1       0         0         0
## 2124  -8.553637  36.00417            0       0         0         0
## 2125  -1.794625  34.73343            1       0         0         1
## 2126  -8.906178  33.46299            0       1         0         0
## 2127  -1.556770  31.65016            0       1         1         0
##      mobile_money_classification if_else(Q2 == 1, "Male", "Female")
## 1                              0                             Female
## 2                              3                               Male
## 3                              2                             Female
## 4                              3                               Male
## 5                              3                               Male
## 6                              1                               Male
## 7                              3                             Female
## 8                              3                             Female
## 9                              1                             Female
## 10                             3                             Female
## 11                             3                             Female
## 12                             2                             Female
## 13                             1                               Male
## 14                             0                             Female
## 15                             2                             Female
## 16                             0                             Female
## 17                             2                             Female
## 18                             3                             Female
## 19                             3                               Male
## 20                             3                             Female
## 21                             3                             Female
## 22                             3                             Female
## 23                             3                               Male
## 24                             1                             Female
## 25                             3                               Male
## 26                             3                             Female
## 27                             3                             Female
## 28                             3                             Female
## 29                             3                             Female
## 30                             3                             Female
## 31                             2                             Female
## 32                             3                               Male
## 33                             3                             Female
## 34                             1                               Male
## 35                             2                             Female
## 36                             1                               Male
## 37                             1                               Male
## 38                             3                               Male
## 39                             1                             Female
## 40                             3                               Male
## 41                             1                             Female
## 42                             1                             Female
## 43                             3                             Female
## 44                             2                             Female
## 45                             3                               Male
## 46                             2                             Female
## 47                             1                             Female
## 48                             3                               Male
## 49                             3                             Female
## 50                             2                               Male
## 51                             1                             Female
## 52                             1                             Female
## 53                             1                             Female
## 54                             3                               Male
## 55                             3                               Male
## 56                             1                               Male
## 57                             1                               Male
## 58                             3                             Female
## 59                             0                             Female
## 60                             3                               Male
## 61                             3                               Male
## 62                             3                             Female
## 63                             3                               Male
## 64                             1                             Female
## 65                             0                             Female
## 66                             3                               Male
## 67                             3                             Female
## 68                             3                               Male
## 69                             3                               Male
## 70                             3                             Female
## 71                             1                             Female
## 72                             3                               Male
## 73                             1                               Male
## 74                             3                             Female
## 75                             2                               Male
## 76                             3                               Male
## 77                             1                               Male
## 78                             1                               Male
## 79                             3                               Male
## 80                             0                             Female
## 81                             3                             Female
## 82                             2                             Female
## 83                             0                               Male
## 84                             0                             Female
## 85                             0                             Female
## 86                             1                             Female
## 87                             0                               Male
## 88                             3                               Male
## 89                             3                               Male
## 90                             3                               Male
## 91                             1                               Male
## 92                             3                             Female
## 93                             3                             Female
## 94                             0                               Male
## 95                             0                             Female
## 96                             2                             Female
## 97                             0                               Male
## 98                             1                             Female
## 99                             3                               Male
## 100                            3                               Male
## 101                            3                               Male
## 102                            3                             Female
## 103                            3                             Female
## 104                            3                               Male
## 105                            1                             Female
## 106                            3                               Male
## 107                            1                             Female
## 108                            3                             Female
## 109                            2                               Male
## 110                            2                             Female
## 111                            3                               Male
## 112                            0                             Female
## 113                            0                             Female
## 114                            0                             Female
## 115                            0                               Male
## 116                            2                             Female
## 117                            2                             Female
## 118                            1                               Male
## 119                            0                               Male
## 120                            2                               Male
## 121                            1                             Female
## 122                            0                             Female
## 123                            3                               Male
## 124                            3                             Female
## 125                            1                             Female
## 126                            0                               Male
## 127                            3                               Male
## 128                            1                               Male
## 129                            1                             Female
## 130                            2                             Female
## 131                            3                               Male
## 132                            3                             Female
## 133                            0                             Female
## 134                            0                               Male
## 135                            3                             Female
## 136                            2                             Female
## 137                            1                             Female
## 138                            3                               Male
## 139                            3                               Male
## 140                            2                             Female
## 141                            1                               Male
## 142                            3                               Male
## 143                            2                             Female
## 144                            0                             Female
## 145                            3                               Male
## 146                            2                               Male
## 147                            0                             Female
## 148                            3                             Female
## 149                            0                             Female
## 150                            3                             Female
## 151                            2                               Male
## 152                            1                             Female
## 153                            3                               Male
## 154                            3                               Male
## 155                            0                             Female
## 156                            3                             Female
## 157                            1                             Female
## 158                            2                             Female
## 159                            0                             Female
## 160                            2                               Male
## 161                            2                             Female
## 162                            3                               Male
## 163                            3                               Male
## 164                            0                             Female
## 165                            3                               Male
## 166                            2                               Male
## 167                            2                               Male
## 168                            0                             Female
## 169                            0                             Female
## 170                            1                             Female
## 171                            3                             Female
## 172                            2                             Female
## 173                            1                               Male
## 174                            0                               Male
## 175                            0                             Female
## 176                            3                               Male
## 177                            3                               Male
## 178                            3                             Female
## 179                            3                             Female
## 180                            1                             Female
## 181                            3                             Female
## 182                            3                               Male
## 183                            3                             Female
## 184                            1                               Male
## 185                            1                             Female
## 186                            1                               Male
## 187                            1                               Male
## 188                            0                               Male
## 189                            1                               Male
## 190                            3                               Male
## 191                            0                             Female
## 192                            3                             Female
## 193                            3                               Male
## 194                            1                             Female
## 195                            0                               Male
## 196                            1                             Female
## 197                            3                               Male
## 198                            3                               Male
## 199                            3                               Male
## 200                            0                             Female
## 201                            2                               Male
## 202                            2                             Female
## 203                            2                               Male
## 204                            0                               Male
## 205                            3                               Male
## 206                            1                               Male
## 207                            1                             Female
## 208                            3                               Male
## 209                            0                               Male
## 210                            3                             Female
## 211                            1                             Female
## 212                            3                             Female
## 213                            1                             Female
## 214                            1                             Female
## 215                            3                               Male
## 216                            2                               Male
## 217                            0                             Female
## 218                            1                               Male
## 219                            3                             Female
## 220                            2                             Female
## 221                            1                               Male
## 222                            0                             Female
## 223                            2                             Female
## 224                            1                             Female
## 225                            3                               Male
## 226                            3                               Male
## 227                            1                             Female
## 228                            1                             Female
## 229                            3                               Male
## 230                            1                             Female
## 231                            0                             Female
## 232                            0                               Male
## 233                            1                               Male
## 234                            3                               Male
## 235                            0                             Female
## 236                            1                             Female
## 237                            1                             Female
## 238                            0                               Male
## 239                            3                             Female
## 240                            1                             Female
## 241                            3                               Male
## 242                            3                               Male
## 243                            3                             Female
## 244                            1                               Male
## 245                            3                             Female
## 246                            3                               Male
## 247                            2                             Female
## 248                            2                               Male
## 249                            1                             Female
## 250                            3                             Female
## 251                            1                               Male
## 252                            3                               Male
## 253                            3                               Male
## 254                            0                             Female
## 255                            0                               Male
## 256                            1                             Female
## 257                            0                               Male
## 258                            3                               Male
## 259                            2                               Male
## 260                            3                             Female
## 261                            0                             Female
## 262                            0                             Female
## 263                            3                               Male
## 264                            3                             Female
## 265                            3                               Male
## 266                            3                               Male
## 267                            1                               Male
## 268                            0                             Female
## 269                            0                             Female
## 270                            1                               Male
## 271                            1                             Female
## 272                            1                               Male
## 273                            3                             Female
## 274                            0                             Female
## 275                            2                               Male
## 276                            2                               Male
## 277                            3                               Male
## 278                            0                               Male
## 279                            3                               Male
## 280                            3                             Female
## 281                            3                               Male
## 282                            0                             Female
## 283                            3                               Male
## 284                            2                               Male
## 285                            1                             Female
## 286                            1                               Male
## 287                            1                             Female
## 288                            1                             Female
## 289                            3                               Male
## 290                            3                               Male
## 291                            2                             Female
## 292                            1                             Female
## 293                            2                             Female
## 294                            1                             Female
## 295                            3                             Female
## 296                            0                             Female
## 297                            3                               Male
## 298                            0                             Female
## 299                            1                             Female
## 300                            2                             Female
## 301                            2                             Female
## 302                            2                             Female
## 303                            3                               Male
## 304                            1                             Female
## 305                            1                             Female
## 306                            0                             Female
## 307                            3                             Female
## 308                            1                             Female
## 309                            1                               Male
## 310                            2                             Female
## 311                            3                               Male
## 312                            3                               Male
## 313                            1                             Female
## 314                            3                               Male
## 315                            3                               Male
## 316                            3                             Female
## 317                            1                               Male
## 318                            3                               Male
## 319                            2                               Male
## 320                            0                             Female
## 321                            3                               Male
## 322                            1                             Female
## 323                            1                               Male
## 324                            3                             Female
## 325                            0                               Male
## 326                            1                               Male
## 327                            2                             Female
## 328                            0                             Female
## 329                            3                               Male
## 330                            0                             Female
## 331                            3                             Female
## 332                            0                               Male
## 333                            0                             Female
## 334                            1                               Male
## 335                            3                               Male
## 336                            3                               Male
## 337                            3                               Male
## 338                            1                             Female
## 339                            3                               Male
## 340                            3                             Female
## 341                            2                               Male
## 342                            3                               Male
## 343                            1                               Male
## 344                            0                             Female
## 345                            1                               Male
## 346                            2                             Female
## 347                            0                               Male
## 348                            1                             Female
## 349                            1                             Female
## 350                            1                             Female
## 351                            3                             Female
## 352                            1                             Female
## 353                            3                             Female
## 354                            2                               Male
## 355                            3                               Male
## 356                            3                             Female
## 357                            0                             Female
## 358                            3                             Female
## 359                            3                               Male
## 360                            1                             Female
## 361                            3                             Female
## 362                            0                               Male
## 363                            1                               Male
## 364                            0                             Female
## 365                            1                             Female
## 366                            3                             Female
## 367                            3                               Male
## 368                            0                             Female
## 369                            3                             Female
## 370                            1                             Female
## 371                            1                             Female
## 372                            0                             Female
## 373                            3                             Female
## 374                            1                             Female
## 375                            2                               Male
## 376                            3                             Female
## 377                            3                               Male
## 378                            1                             Female
## 379                            1                             Female
## 380                            1                             Female
## 381                            1                               Male
## 382                            3                             Female
## 383                            3                             Female
## 384                            1                               Male
## 385                            1                             Female
## 386                            1                             Female
## 387                            1                             Female
## 388                            3                             Female
## 389                            1                               Male
## 390                            1                               Male
## 391                            2                               Male
## 392                            3                               Male
## 393                            0                               Male
## 394                            0                               Male
## 395                            3                             Female
## 396                            3                             Female
## 397                            3                             Female
## 398                            3                             Female
## 399                            1                             Female
## 400                            0                             Female
## 401                            3                               Male
## 402                            2                             Female
## 403                            3                               Male
## 404                            3                             Female
## 405                            1                             Female
## 406                            3                             Female
## 407                            3                               Male
## 408                            3                             Female
## 409                            3                             Female
## 410                            0                             Female
## 411                            1                             Female
## 412                            0                               Male
## 413                            3                             Female
## 414                            0                             Female
## 415                            3                             Female
## 416                            0                               Male
## 417                            3                             Female
## 418                            3                               Male
## 419                            3                               Male
## 420                            3                               Male
## 421                            3                             Female
## 422                            3                               Male
## 423                            3                             Female
## 424                            2                             Female
## 425                            3                             Female
## 426                            3                               Male
## 427                            3                             Female
## 428                            2                               Male
## 429                            3                               Male
## 430                            2                             Female
## 431                            3                               Male
## 432                            3                             Female
## 433                            0                             Female
## 434                            0                             Female
## 435                            0                               Male
## 436                            3                               Male
## 437                            0                             Female
## 438                            3                               Male
## 439                            3                               Male
## 440                            1                             Female
## 441                            0                               Male
## 442                            1                             Female
## 443                            1                               Male
## 444                            3                             Female
## 445                            3                               Male
## 446                            1                               Male
## 447                            0                               Male
## 448                            3                             Female
## 449                            3                               Male
## 450                            2                               Male
## 451                            3                             Female
## 452                            0                             Female
## 453                            3                             Female
## 454                            3                               Male
## 455                            1                             Female
## 456                            0                             Female
## 457                            2                               Male
## 458                            3                             Female
## 459                            1                             Female
## 460                            2                             Female
## 461                            3                               Male
## 462                            3                             Female
## 463                            0                               Male
## 464                            0                             Female
## 465                            3                             Female
## 466                            1                               Male
## 467                            1                             Female
## 468                            3                             Female
## 469                            1                             Female
## 470                            2                             Female
## 471                            3                               Male
## 472                            3                             Female
## 473                            2                             Female
## 474                            0                               Male
## 475                            3                             Female
## 476                            0                             Female
## 477                            1                             Female
## 478                            0                             Female
## 479                            0                             Female
## 480                            1                             Female
## 481                            3                               Male
## 482                            3                               Male
## 483                            3                             Female
## 484                            3                               Male
## 485                            1                             Female
## 486                            0                             Female
## 487                            1                             Female
## 488                            0                             Female
## 489                            0                             Female
## 490                            1                             Female
## 491                            3                               Male
## 492                            0                             Female
## 493                            0                               Male
## 494                            3                               Male
## 495                            1                             Female
## 496                            3                               Male
## 497                            2                             Female
## 498                            3                             Female
## 499                            1                               Male
## 500                            0                             Female
## 501                            3                             Female
## 502                            3                               Male
## 503                            3                             Female
## 504                            0                             Female
## 505                            3                               Male
## 506                            1                             Female
## 507                            1                             Female
## 508                            0                             Female
## 509                            3                             Female
## 510                            3                               Male
## 511                            1                             Female
## 512                            2                               Male
## 513                            3                             Female
## 514                            3                             Female
## 515                            1                             Female
## 516                            3                               Male
## 517                            0                             Female
## 518                            2                             Female
## 519                            3                               Male
## 520                            3                               Male
## 521                            3                               Male
## 522                            3                               Male
## 523                            0                             Female
## 524                            3                             Female
## 525                            2                             Female
## 526                            3                               Male
## 527                            3                               Male
## 528                            3                             Female
## 529                            0                             Female
## 530                            3                               Male
## 531                            1                               Male
## 532                            0                             Female
## 533                            3                             Female
## 534                            3                             Female
## 535                            3                             Female
## 536                            3                               Male
## 537                            1                             Female
## 538                            2                               Male
## 539                            1                             Female
## 540                            3                               Male
## 541                            3                             Female
## 542                            3                               Male
## 543                            3                             Female
## 544                            3                               Male
## 545                            3                             Female
## 546                            3                               Male
## 547                            2                               Male
## 548                            1                               Male
## 549                            3                             Female
## 550                            3                             Female
## 551                            1                               Male
## 552                            3                               Male
## 553                            1                             Female
## 554                            2                             Female
## 555                            3                             Female
## 556                            3                               Male
## 557                            3                             Female
## 558                            1                               Male
## 559                            3                               Male
## 560                            1                             Female
## 561                            3                               Male
## 562                            0                             Female
## 563                            3                             Female
## 564                            1                             Female
## 565                            3                             Female
## 566                            3                             Female
## 567                            2                             Female
## 568                            3                               Male
## 569                            0                             Female
## 570                            3                             Female
## 571                            1                             Female
## 572                            0                             Female
## 573                            0                             Female
## 574                            0                             Female
## 575                            0                             Female
## 576                            0                             Female
## 577                            3                               Male
## 578                            1                             Female
## 579                            3                               Male
## 580                            1                               Male
## 581                            1                               Male
## 582                            2                             Female
## 583                            0                             Female
## 584                            1                               Male
## 585                            0                             Female
## 586                            0                               Male
## 587                            0                               Male
## 588                            2                             Female
## 589                            3                             Female
## 590                            1                             Female
## 591                            1                               Male
## 592                            1                             Female
## 593                            3                             Female
## 594                            3                             Female
## 595                            0                             Female
## 596                            2                               Male
## 597                            3                               Male
## 598                            3                               Male
## 599                            1                             Female
## 600                            2                             Female
## 601                            1                             Female
## 602                            0                             Female
## 603                            1                               Male
## 604                            1                             Female
## 605                            1                             Female
## 606                            3                             Female
## 607                            3                             Female
## 608                            2                             Female
## 609                            3                             Female
## 610                            2                               Male
## 611                            3                             Female
## 612                            1                             Female
## 613                            0                               Male
## 614                            3                               Male
## 615                            1                             Female
## 616                            2                               Male
## 617                            3                               Male
## 618                            1                             Female
## 619                            1                             Female
## 620                            1                             Female
## 621                            1                               Male
## 622                            3                             Female
## 623                            3                               Male
## 624                            1                               Male
## 625                            3                             Female
## 626                            3                             Female
## 627                            3                             Female
## 628                            3                               Male
## 629                            2                               Male
## 630                            1                             Female
## 631                            3                               Male
## 632                            2                               Male
## 633                            0                             Female
## 634                            2                               Male
## 635                            1                             Female
## 636                            0                               Male
## 637                            2                             Female
## 638                            2                             Female
## 639                            1                             Female
## 640                            1                               Male
## 641                            3                               Male
## 642                            1                             Female
## 643                            3                               Male
## 644                            1                             Female
## 645                            1                             Female
## 646                            0                             Female
## 647                            2                             Female
## 648                            3                               Male
## 649                            3                             Female
## 650                            3                               Male
## 651                            0                             Female
## 652                            2                               Male
## 653                            2                               Male
## 654                            1                             Female
## 655                            0                             Female
## 656                            1                             Female
## 657                            3                             Female
## 658                            3                               Male
## 659                            1                             Female
## 660                            3                               Male
## 661                            3                             Female
## 662                            0                               Male
## 663                            3                               Male
## 664                            3                               Male
## 665                            3                             Female
## 666                            0                             Female
## 667                            3                               Male
## 668                            1                               Male
## 669                            2                               Male
## 670                            1                             Female
## 671                            3                               Male
## 672                            3                               Male
## 673                            3                             Female
## 674                            3                             Female
## 675                            1                             Female
## 676                            1                             Female
## 677                            0                             Female
## 678                            3                             Female
## 679                            3                               Male
## 680                            0                               Male
## 681                            3                             Female
## 682                            3                               Male
## 683                            2                               Male
## 684                            1                             Female
## 685                            3                             Female
## 686                            2                               Male
## 687                            3                               Male
## 688                            3                             Female
## 689                            1                             Female
## 690                            1                             Female
## 691                            0                             Female
## 692                            3                             Female
## 693                            0                             Female
## 694                            1                             Female
## 695                            0                               Male
## 696                            3                               Male
## 697                            0                             Female
## 698                            0                             Female
## 699                            3                             Female
## 700                            3                               Male
## 701                            3                               Male
## 702                            3                             Female
## 703                            3                             Female
## 704                            1                               Male
## 705                            1                             Female
## 706                            3                               Male
## 707                            3                             Female
## 708                            2                             Female
## 709                            0                               Male
## 710                            3                             Female
## 711                            0                             Female
## 712                            3                             Female
## 713                            1                             Female
## 714                            1                               Male
## 715                            3                               Male
## 716                            2                             Female
## 717                            3                             Female
## 718                            3                               Male
## 719                            0                             Female
## 720                            1                             Female
## 721                            3                               Male
## 722                            0                             Female
## 723                            0                             Female
## 724                            3                             Female
## 725                            3                             Female
## 726                            0                               Male
## 727                            1                               Male
## 728                            3                             Female
## 729                            1                             Female
## 730                            1                             Female
## 731                            3                               Male
## 732                            3                             Female
## 733                            3                               Male
## 734                            0                             Female
## 735                            1                               Male
## 736                            1                             Female
## 737                            3                             Female
## 738                            1                             Female
## 739                            1                             Female
## 740                            3                             Female
## 741                            2                               Male
## 742                            3                             Female
## 743                            0                               Male
## 744                            3                             Female
## 745                            0                             Female
## 746                            1                               Male
## 747                            3                             Female
## 748                            3                               Male
## 749                            0                             Female
## 750                            3                             Female
## 751                            3                               Male
## 752                            1                               Male
## 753                            3                             Female
## 754                            1                             Female
## 755                            0                             Female
## 756                            0                             Female
## 757                            1                             Female
## 758                            3                               Male
## 759                            1                             Female
## 760                            1                             Female
## 761                            1                             Female
## 762                            1                             Female
## 763                            3                             Female
## 764                            3                               Male
## 765                            3                               Male
## 766                            3                             Female
## 767                            2                               Male
## 768                            0                             Female
## 769                            3                             Female
## 770                            3                             Female
## 771                            3                               Male
## 772                            3                             Female
## 773                            0                               Male
## 774                            3                               Male
## 775                            1                               Male
## 776                            3                             Female
## 777                            2                               Male
## 778                            3                             Female
## 779                            3                               Male
## 780                            3                               Male
## 781                            1                             Female
## 782                            3                             Female
## 783                            0                             Female
## 784                            0                               Male
## 785                            0                             Female
## 786                            1                             Female
## 787                            1                               Male
## 788                            2                               Male
## 789                            1                             Female
## 790                            2                               Male
## 791                            1                             Female
## 792                            3                             Female
## 793                            1                               Male
## 794                            3                               Male
## 795                            1                             Female
## 796                            3                             Female
## 797                            3                             Female
## 798                            3                               Male
## 799                            2                             Female
## 800                            3                               Male
## 801                            1                               Male
## 802                            1                               Male
## 803                            2                               Male
## 804                            3                               Male
## 805                            3                               Male
## 806                            3                             Female
## 807                            2                             Female
## 808                            2                             Female
## 809                            3                               Male
## 810                            3                               Male
## 811                            3                             Female
## 812                            1                               Male
## 813                            3                             Female
## 814                            1                               Male
## 815                            0                               Male
## 816                            1                             Female
## 817                            1                               Male
## 818                            0                               Male
## 819                            0                             Female
## 820                            3                               Male
## 821                            2                             Female
## 822                            3                             Female
## 823                            3                               Male
## 824                            1                             Female
## 825                            1                             Female
## 826                            0                             Female
## 827                            2                             Female
## 828                            0                               Male
## 829                            1                               Male
## 830                            3                             Female
## 831                            2                             Female
## 832                            3                               Male
## 833                            0                             Female
## 834                            1                               Male
## 835                            1                             Female
## 836                            3                             Female
## 837                            0                               Male
## 838                            1                             Female
## 839                            2                               Male
## 840                            3                               Male
## 841                            2                             Female
## 842                            3                             Female
## 843                            3                               Male
## 844                            0                             Female
## 845                            0                             Female
## 846                            0                             Female
## 847                            3                               Male
## 848                            0                             Female
## 849                            2                             Female
## 850                            3                             Female
## 851                            1                             Female
## 852                            3                               Male
## 853                            0                             Female
## 854                            0                               Male
## 855                            2                               Male
## 856                            3                             Female
## 857                            0                             Female
## 858                            0                             Female
## 859                            1                               Male
## 860                            0                             Female
## 861                            1                             Female
## 862                            3                             Female
## 863                            1                               Male
## 864                            0                             Female
## 865                            3                               Male
## 866                            0                             Female
## 867                            3                               Male
## 868                            0                             Female
## 869                            1                               Male
## 870                            1                               Male
## 871                            1                             Female
## 872                            2                             Female
## 873                            3                             Female
## 874                            3                               Male
## 875                            3                               Male
## 876                            3                             Female
## 877                            3                               Male
## 878                            3                               Male
## 879                            3                               Male
## 880                            1                               Male
## 881                            3                               Male
## 882                            1                               Male
## 883                            2                               Male
## 884                            3                             Female
## 885                            3                               Male
## 886                            1                               Male
## 887                            1                             Female
## 888                            3                               Male
## 889                            3                             Female
## 890                            1                             Female
## 891                            3                               Male
## 892                            0                             Female
## 893                            3                               Male
## 894                            0                               Male
## 895                            3                               Male
## 896                            3                             Female
## 897                            1                             Female
## 898                            2                             Female
## 899                            3                             Female
## 900                            3                             Female
## 901                            3                               Male
## 902                            3                             Female
## 903                            1                             Female
## 904                            1                             Female
## 905                            0                               Male
## 906                            0                               Male
## 907                            3                             Female
## 908                            3                             Female
## 909                            3                               Male
## 910                            2                               Male
## 911                            0                               Male
## 912                            2                             Female
## 913                            3                             Female
## 914                            2                             Female
## 915                            0                               Male
## 916                            3                               Male
## 917                            3                               Male
## 918                            1                             Female
## 919                            3                             Female
## 920                            1                             Female
## 921                            1                             Female
## 922                            3                             Female
## 923                            3                               Male
## 924                            3                               Male
## 925                            1                             Female
## 926                            1                               Male
## 927                            0                               Male
## 928                            3                             Female
## 929                            1                             Female
## 930                            3                             Female
## 931                            1                             Female
## 932                            3                               Male
## 933                            3                               Male
## 934                            3                               Male
## 935                            3                               Male
## 936                            1                               Male
## 937                            3                               Male
## 938                            0                               Male
## 939                            1                               Male
## 940                            2                               Male
## 941                            0                               Male
## 942                            1                             Female
## 943                            3                               Male
## 944                            2                               Male
## 945                            1                               Male
## 946                            3                             Female
## 947                            3                             Female
## 948                            3                               Male
## 949                            1                               Male
## 950                            1                             Female
## 951                            0                             Female
## 952                            3                               Male
## 953                            0                               Male
## 954                            2                             Female
## 955                            3                             Female
## 956                            1                               Male
## 957                            3                               Male
## 958                            3                             Female
## 959                            2                             Female
## 960                            3                               Male
## 961                            0                             Female
## 962                            3                             Female
## 963                            3                             Female
## 964                            3                               Male
## 965                            0                             Female
## 966                            2                             Female
## 967                            1                             Female
## 968                            3                               Male
## 969                            3                               Male
## 970                            3                               Male
## 971                            3                             Female
## 972                            1                             Female
## 973                            1                             Female
## 974                            0                               Male
## 975                            2                             Female
## 976                            0                             Female
## 977                            1                               Male
## 978                            3                             Female
## 979                            1                             Female
## 980                            3                             Female
## 981                            1                             Female
## 982                            1                               Male
## 983                            1                               Male
## 984                            1                             Female
## 985                            1                             Female
## 986                            1                             Female
## 987                            1                             Female
## 988                            2                             Female
## 989                            1                             Female
## 990                            0                             Female
## 991                            3                             Female
## 992                            3                             Female
## 993                            1                               Male
## 994                            3                             Female
## 995                            2                             Female
## 996                            2                               Male
## 997                            3                             Female
## 998                            1                             Female
## 999                            1                             Female
## 1000                           0                               Male
## 1001                           3                             Female
## 1002                           0                             Female
## 1003                           0                             Female
## 1004                           0                               Male
## 1005                           0                               Male
## 1006                           0                             Female
## 1007                           3                             Female
## 1008                           1                             Female
## 1009                           3                               Male
## 1010                           0                             Female
## 1011                           3                               Male
## 1012                           3                             Female
## 1013                           2                               Male
## 1014                           1                             Female
## 1015                           2                               Male
## 1016                           3                             Female
## 1017                           3                               Male
## 1018                           1                             Female
## 1019                           0                             Female
## 1020                           1                               Male
## 1021                           0                             Female
## 1022                           3                               Male
## 1023                           1                               Male
## 1024                           0                             Female
## 1025                           0                               Male
## 1026                           3                             Female
## 1027                           1                             Female
## 1028                           3                               Male
## 1029                           1                               Male
## 1030                           3                               Male
## 1031                           0                             Female
## 1032                           3                             Female
## 1033                           0                             Female
## 1034                           0                             Female
## 1035                           0                               Male
## 1036                           1                               Male
## 1037                           0                             Female
## 1038                           0                               Male
## 1039                           3                             Female
## 1040                           3                               Male
## 1041                           1                             Female
## 1042                           0                             Female
## 1043                           0                             Female
## 1044                           1                             Female
## 1045                           0                               Male
## 1046                           1                             Female
## 1047                           1                             Female
## 1048                           3                               Male
## 1049                           3                               Male
## 1050                           0                               Male
## 1051                           3                             Female
## 1052                           3                               Male
## 1053                           0                             Female
## 1054                           2                               Male
## 1055                           1                             Female
## 1056                           1                               Male
## 1057                           3                               Male
## 1058                           0                             Female
## 1059                           2                               Male
## 1060                           2                             Female
## 1061                           3                             Female
## 1062                           3                             Female
## 1063                           3                             Female
## 1064                           0                               Male
## 1065                           3                             Female
## 1066                           2                             Female
## 1067                           0                               Male
## 1068                           3                             Female
## 1069                           1                             Female
## 1070                           3                               Male
## 1071                           3                             Female
## 1072                           0                             Female
## 1073                           3                               Male
## 1074                           2                               Male
## 1075                           3                             Female
## 1076                           3                             Female
## 1077                           3                               Male
## 1078                           1                               Male
## 1079                           3                               Male
## 1080                           3                             Female
## 1081                           1                             Female
## 1082                           2                             Female
## 1083                           1                               Male
## 1084                           0                               Male
## 1085                           0                             Female
## 1086                           3                             Female
## 1087                           3                             Female
## 1088                           2                               Male
## 1089                           3                             Female
## 1090                           3                               Male
## 1091                           3                               Male
## 1092                           2                             Female
## 1093                           1                               Male
## 1094                           1                             Female
## 1095                           3                               Male
## 1096                           3                               Male
## 1097                           2                               Male
## 1098                           0                             Female
## 1099                           1                             Female
## 1100                           1                             Female
## 1101                           1                             Female
## 1102                           1                               Male
## 1103                           0                               Male
## 1104                           3                               Male
## 1105                           3                               Male
## 1106                           1                             Female
## 1107                           0                             Female
## 1108                           1                               Male
## 1109                           3                               Male
## 1110                           1                               Male
## 1111                           3                               Male
## 1112                           0                             Female
## 1113                           1                             Female
## 1114                           3                               Male
## 1115                           2                               Male
## 1116                           0                             Female
## 1117                           1                             Female
## 1118                           3                             Female
## 1119                           1                             Female
## 1120                           1                               Male
## 1121                           0                               Male
## 1122                           3                               Male
## 1123                           3                             Female
## 1124                           1                               Male
## 1125                           3                             Female
## 1126                           1                               Male
## 1127                           3                             Female
## 1128                           0                               Male
## 1129                           1                               Male
## 1130                           3                             Female
## 1131                           1                             Female
## 1132                           1                             Female
## 1133                           0                             Female
## 1134                           0                               Male
## 1135                           3                               Male
## 1136                           3                             Female
## 1137                           0                               Male
## 1138                           2                               Male
## 1139                           3                               Male
## 1140                           3                               Male
## 1141                           2                               Male
## 1142                           3                               Male
## 1143                           1                             Female
## 1144                           1                               Male
## 1145                           3                               Male
## 1146                           3                               Male
## 1147                           3                               Male
## 1148                           3                             Female
## 1149                           1                             Female
## 1150                           0                             Female
## 1151                           3                             Female
## 1152                           3                             Female
## 1153                           3                             Female
## 1154                           0                               Male
## 1155                           1                               Male
## 1156                           3                             Female
## 1157                           0                               Male
## 1158                           1                             Female
## 1159                           3                               Male
## 1160                           1                             Female
## 1161                           3                             Female
## 1162                           1                               Male
## 1163                           2                               Male
## 1164                           3                             Female
## 1165                           1                             Female
## 1166                           0                             Female
## 1167                           0                               Male
## 1168                           3                             Female
## 1169                           0                               Male
## 1170                           3                               Male
## 1171                           0                             Female
## 1172                           2                             Female
## 1173                           3                               Male
## 1174                           2                             Female
## 1175                           1                             Female
## 1176                           1                               Male
## 1177                           1                             Female
## 1178                           1                             Female
## 1179                           0                             Female
## 1180                           3                               Male
## 1181                           0                             Female
## 1182                           2                             Female
## 1183                           0                             Female
## 1184                           0                             Female
## 1185                           1                             Female
## 1186                           3                             Female
## 1187                           2                             Female
## 1188                           1                             Female
## 1189                           1                             Female
## 1190                           1                               Male
## 1191                           2                               Male
## 1192                           3                               Male
## 1193                           3                             Female
## 1194                           3                             Female
## 1195                           2                             Female
## 1196                           1                             Female
## 1197                           3                             Female
## 1198                           1                               Male
## 1199                           0                             Female
## 1200                           1                               Male
## 1201                           0                             Female
## 1202                           0                             Female
## 1203                           3                               Male
## 1204                           0                             Female
## 1205                           3                               Male
## 1206                           1                             Female
## 1207                           3                               Male
## 1208                           1                             Female
## 1209                           3                             Female
## 1210                           3                               Male
## 1211                           3                             Female
## 1212                           2                             Female
## 1213                           3                             Female
## 1214                           1                             Female
## 1215                           3                             Female
## 1216                           3                               Male
## 1217                           1                             Female
## 1218                           2                               Male
## 1219                           3                             Female
## 1220                           2                             Female
## 1221                           1                             Female
## 1222                           0                               Male
## 1223                           1                               Male
## 1224                           1                               Male
## 1225                           2                             Female
## 1226                           1                             Female
## 1227                           1                             Female
## 1228                           2                               Male
## 1229                           0                               Male
## 1230                           1                             Female
## 1231                           3                               Male
## 1232                           1                             Female
## 1233                           0                             Female
## 1234                           1                               Male
## 1235                           2                             Female
## 1236                           3                             Female
## 1237                           1                             Female
## 1238                           0                               Male
## 1239                           3                             Female
## 1240                           3                               Male
## 1241                           2                               Male
## 1242                           0                             Female
## 1243                           2                             Female
## 1244                           1                               Male
## 1245                           3                             Female
## 1246                           0                               Male
## 1247                           3                             Female
## 1248                           3                               Male
## 1249                           1                             Female
## 1250                           0                             Female
## 1251                           2                               Male
## 1252                           1                             Female
## 1253                           3                             Female
## 1254                           0                               Male
## 1255                           3                               Male
## 1256                           3                               Male
## 1257                           2                             Female
## 1258                           3                               Male
## 1259                           3                               Male
## 1260                           1                             Female
## 1261                           3                               Male
## 1262                           3                               Male
## 1263                           3                             Female
## 1264                           0                               Male
## 1265                           1                               Male
## 1266                           1                               Male
## 1267                           3                             Female
## 1268                           3                               Male
## 1269                           1                               Male
## 1270                           1                             Female
## 1271                           0                             Female
## 1272                           3                               Male
## 1273                           3                               Male
## 1274                           1                             Female
## 1275                           1                               Male
## 1276                           1                             Female
## 1277                           1                             Female
## 1278                           1                               Male
## 1279                           3                             Female
## 1280                           3                             Female
## 1281                           0                             Female
## 1282                           3                               Male
## 1283                           3                             Female
## 1284                           3                               Male
## 1285                           3                             Female
## 1286                           1                             Female
## 1287                           3                             Female
## 1288                           0                             Female
## 1289                           3                               Male
## 1290                           3                               Male
## 1291                           0                             Female
## 1292                           0                               Male
## 1293                           3                               Male
## 1294                           3                               Male
## 1295                           1                               Male
## 1296                           3                               Male
## 1297                           3                             Female
## 1298                           3                             Female
## 1299                           3                             Female
## 1300                           2                               Male
## 1301                           0                             Female
## 1302                           3                             Female
## 1303                           0                               Male
## 1304                           1                             Female
## 1305                           3                               Male
## 1306                           3                               Male
## 1307                           1                               Male
## 1308                           1                             Female
## 1309                           0                               Male
## 1310                           1                             Female
## 1311                           3                             Female
## 1312                           1                               Male
## 1313                           0                             Female
## 1314                           3                               Male
## 1315                           2                             Female
## 1316                           0                             Female
## 1317                           0                             Female
## 1318                           2                               Male
## 1319                           0                             Female
## 1320                           1                               Male
## 1321                           1                             Female
## 1322                           0                               Male
## 1323                           0                             Female
## 1324                           0                             Female
## 1325                           3                               Male
## 1326                           3                             Female
## 1327                           3                               Male
## 1328                           1                               Male
## 1329                           3                             Female
## 1330                           1                             Female
## 1331                           1                               Male
## 1332                           0                               Male
## 1333                           0                             Female
## 1334                           1                               Male
## 1335                           3                               Male
## 1336                           1                             Female
## 1337                           3                             Female
## 1338                           2                               Male
## 1339                           3                             Female
## 1340                           3                               Male
## 1341                           3                               Male
## 1342                           3                             Female
## 1343                           1                             Female
## 1344                           0                               Male
## 1345                           3                               Male
## 1346                           2                             Female
## 1347                           2                             Female
## 1348                           0                               Male
## 1349                           2                             Female
## 1350                           3                             Female
## 1351                           0                             Female
## 1352                           1                             Female
## 1353                           2                               Male
## 1354                           2                             Female
## 1355                           1                             Female
## 1356                           0                               Male
## 1357                           0                               Male
## 1358                           0                             Female
## 1359                           3                             Female
## 1360                           0                             Female
## 1361                           0                             Female
## 1362                           3                             Female
## 1363                           3                             Female
## 1364                           2                               Male
## 1365                           0                               Male
## 1366                           3                             Female
## 1367                           2                               Male
## 1368                           3                               Male
## 1369                           3                             Female
## 1370                           3                             Female
## 1371                           2                             Female
## 1372                           3                               Male
## 1373                           1                               Male
## 1374                           0                             Female
## 1375                           1                             Female
## 1376                           0                             Female
## 1377                           1                               Male
## 1378                           3                               Male
## 1379                           1                             Female
## 1380                           1                             Female
## 1381                           3                             Female
## 1382                           3                               Male
## 1383                           2                               Male
## 1384                           1                             Female
## 1385                           3                               Male
## 1386                           3                             Female
## 1387                           3                             Female
## 1388                           3                             Female
## 1389                           2                             Female
## 1390                           3                               Male
## 1391                           3                               Male
## 1392                           3                               Male
## 1393                           3                               Male
## 1394                           1                             Female
## 1395                           2                             Female
## 1396                           0                               Male
## 1397                           3                               Male
## 1398                           3                               Male
## 1399                           3                               Male
## 1400                           2                             Female
## 1401                           3                               Male
## 1402                           3                               Male
## 1403                           1                             Female
## 1404                           3                               Male
## 1405                           0                             Female
## 1406                           3                               Male
## 1407                           1                               Male
## 1408                           1                             Female
## 1409                           0                               Male
## 1410                           3                               Male
## 1411                           3                               Male
## 1412                           0                             Female
## 1413                           1                             Female
## 1414                           1                               Male
## 1415                           2                               Male
## 1416                           0                               Male
## 1417                           1                             Female
## 1418                           1                             Female
## 1419                           0                             Female
## 1420                           3                               Male
## 1421                           1                               Male
## 1422                           1                             Female
## 1423                           1                               Male
## 1424                           3                               Male
## 1425                           3                             Female
## 1426                           3                             Female
## 1427                           0                             Female
## 1428                           1                             Female
## 1429                           3                             Female
## 1430                           1                             Female
## 1431                           0                             Female
## 1432                           1                             Female
## 1433                           1                               Male
## 1434                           0                             Female
## 1435                           3                             Female
## 1436                           0                               Male
## 1437                           1                               Male
## 1438                           2                               Male
## 1439                           3                             Female
## 1440                           0                               Male
## 1441                           0                             Female
## 1442                           3                               Male
## 1443                           3                             Female
## 1444                           3                             Female
## 1445                           0                               Male
## 1446                           0                             Female
## 1447                           3                               Male
## 1448                           3                               Male
## 1449                           3                               Male
## 1450                           1                             Female
## 1451                           1                             Female
## 1452                           3                               Male
## 1453                           3                             Female
## 1454                           3                               Male
## 1455                           1                             Female
## 1456                           0                               Male
## 1457                           2                             Female
## 1458                           3                               Male
## 1459                           0                             Female
## 1460                           2                             Female
## 1461                           0                             Female
## 1462                           0                             Female
## 1463                           3                               Male
## 1464                           3                               Male
## 1465                           3                               Male
## 1466                           1                               Male
## 1467                           1                             Female
## 1468                           2                               Male
## 1469                           3                               Male
## 1470                           3                             Female
## 1471                           1                               Male
## 1472                           1                               Male
## 1473                           3                               Male
## 1474                           3                               Male
## 1475                           0                             Female
## 1476                           3                             Female
## 1477                           1                             Female
## 1478                           0                               Male
## 1479                           3                               Male
## 1480                           0                               Male
## 1481                           0                               Male
## 1482                           3                               Male
## 1483                           0                               Male
## 1484                           0                             Female
## 1485                           3                               Male
## 1486                           1                             Female
## 1487                           2                             Female
## 1488                           3                             Female
## 1489                           3                             Female
## 1490                           0                             Female
## 1491                           1                             Female
## 1492                           3                             Female
## 1493                           3                               Male
## 1494                           3                               Male
## 1495                           3                             Female
## 1496                           0                               Male
## 1497                           3                             Female
## 1498                           3                             Female
## 1499                           0                               Male
## 1500                           3                               Male
## 1501                           0                             Female
## 1502                           1                             Female
## 1503                           3                             Female
## 1504                           0                               Male
## 1505                           3                             Female
## 1506                           0                               Male
## 1507                           3                               Male
## 1508                           0                             Female
## 1509                           2                               Male
## 1510                           1                               Male
## 1511                           1                             Female
## 1512                           1                             Female
## 1513                           3                               Male
## 1514                           3                             Female
## 1515                           1                               Male
## 1516                           3                             Female
## 1517                           3                               Male
## 1518                           3                             Female
## 1519                           3                             Female
## 1520                           1                               Male
## 1521                           3                               Male
## 1522                           3                             Female
## 1523                           3                               Male
## 1524                           2                               Male
## 1525                           1                               Male
## 1526                           3                               Male
## 1527                           1                               Male
## 1528                           3                               Male
## 1529                           3                               Male
## 1530                           2                             Female
## 1531                           3                             Female
## 1532                           3                             Female
## 1533                           1                             Female
## 1534                           3                               Male
## 1535                           2                               Male
## 1536                           1                               Male
## 1537                           3                               Male
## 1538                           3                             Female
## 1539                           3                               Male
## 1540                           2                               Male
## 1541                           1                             Female
## 1542                           3                             Female
## 1543                           0                               Male
## 1544                           1                             Female
## 1545                           0                               Male
## 1546                           1                               Male
## 1547                           1                             Female
## 1548                           3                               Male
## 1549                           2                             Female
## 1550                           0                             Female
## 1551                           1                               Male
## 1552                           3                               Male
## 1553                           3                               Male
## 1554                           3                             Female
## 1555                           2                               Male
## 1556                           1                             Female
## 1557                           3                             Female
## 1558                           1                             Female
## 1559                           3                               Male
## 1560                           0                             Female
## 1561                           3                             Female
## 1562                           0                               Male
## 1563                           1                             Female
## 1564                           3                             Female
## 1565                           1                             Female
## 1566                           1                             Female
## 1567                           3                             Female
## 1568                           1                             Female
## 1569                           1                               Male
## 1570                           1                               Male
## 1571                           0                             Female
## 1572                           0                             Female
## 1573                           3                               Male
## 1574                           0                             Female
## 1575                           1                             Female
## 1576                           1                               Male
## 1577                           1                               Male
## 1578                           1                               Male
## 1579                           3                               Male
## 1580                           1                             Female
## 1581                           1                               Male
## 1582                           3                               Male
## 1583                           2                             Female
## 1584                           3                               Male
## 1585                           1                               Male
## 1586                           3                               Male
## 1587                           1                             Female
## 1588                           3                               Male
## 1589                           3                               Male
## 1590                           3                               Male
## 1591                           2                               Male
## 1592                           2                               Male
## 1593                           3                             Female
## 1594                           1                             Female
## 1595                           3                               Male
## 1596                           0                             Female
## 1597                           3                             Female
## 1598                           2                               Male
## 1599                           1                             Female
## 1600                           3                               Male
## 1601                           2                             Female
## 1602                           3                               Male
## 1603                           1                             Female
## 1604                           0                               Male
## 1605                           0                             Female
## 1606                           3                             Female
## 1607                           3                               Male
## 1608                           3                             Female
## 1609                           1                             Female
## 1610                           3                             Female
## 1611                           3                             Female
## 1612                           3                             Female
## 1613                           3                             Female
## 1614                           1                               Male
## 1615                           3                             Female
## 1616                           1                             Female
## 1617                           0                             Female
## 1618                           1                             Female
## 1619                           1                             Female
## 1620                           1                               Male
## 1621                           3                               Male
## 1622                           3                             Female
## 1623                           3                               Male
## 1624                           0                             Female
## 1625                           1                               Male
## 1626                           0                             Female
## 1627                           1                             Female
## 1628                           3                               Male
## 1629                           3                             Female
## 1630                           0                             Female
## 1631                           3                               Male
## 1632                           3                             Female
## 1633                           3                             Female
## 1634                           1                             Female
## 1635                           3                               Male
## 1636                           3                               Male
## 1637                           0                             Female
## 1638                           1                               Male
## 1639                           3                             Female
## 1640                           2                               Male
## 1641                           0                             Female
## 1642                           3                             Female
## 1643                           3                               Male
## 1644                           3                             Female
## 1645                           0                             Female
## 1646                           0                             Female
## 1647                           3                             Female
## 1648                           1                             Female
## 1649                           3                             Female
## 1650                           3                               Male
## 1651                           1                               Male
## 1652                           3                             Female
## 1653                           0                             Female
## 1654                           3                               Male
## 1655                           3                             Female
## 1656                           3                               Male
## 1657                           3                               Male
## 1658                           3                             Female
## 1659                           0                               Male
## 1660                           0                               Male
## 1661                           1                             Female
## 1662                           2                             Female
## 1663                           2                               Male
## 1664                           1                             Female
## 1665                           3                               Male
## 1666                           3                             Female
## 1667                           3                               Male
## 1668                           1                               Male
## 1669                           3                             Female
## 1670                           3                               Male
## 1671                           2                               Male
## 1672                           3                             Female
## 1673                           3                             Female
## 1674                           2                               Male
## 1675                           3                               Male
## 1676                           1                               Male
## 1677                           3                             Female
## 1678                           3                               Male
## 1679                           3                               Male
## 1680                           2                               Male
## 1681                           3                               Male
## 1682                           3                             Female
## 1683                           0                             Female
## 1684                           3                               Male
## 1685                           0                               Male
## 1686                           1                             Female
## 1687                           2                             Female
## 1688                           3                               Male
## 1689                           1                               Male
## 1690                           3                               Male
## 1691                           2                             Female
## 1692                           1                             Female
## 1693                           2                             Female
## 1694                           3                             Female
## 1695                           0                             Female
## 1696                           2                             Female
## 1697                           0                             Female
## 1698                           1                             Female
## 1699                           3                               Male
## 1700                           0                             Female
## 1701                           3                             Female
## 1702                           1                               Male
## 1703                           0                             Female
## 1704                           3                               Male
## 1705                           3                             Female
## 1706                           0                             Female
## 1707                           3                               Male
## 1708                           1                             Female
## 1709                           1                               Male
## 1710                           1                               Male
## 1711                           3                             Female
## 1712                           1                             Female
## 1713                           0                               Male
## 1714                           0                             Female
## 1715                           0                             Female
## 1716                           3                               Male
## 1717                           2                             Female
## 1718                           3                             Female
## 1719                           1                               Male
## 1720                           3                             Female
## 1721                           2                             Female
## 1722                           3                               Male
## 1723                           3                             Female
## 1724                           3                             Female
## 1725                           2                               Male
## 1726                           3                               Male
## 1727                           3                               Male
## 1728                           1                             Female
## 1729                           0                             Female
## 1730                           1                               Male
## 1731                           3                             Female
## 1732                           2                             Female
## 1733                           2                             Female
## 1734                           3                             Female
## 1735                           2                             Female
## 1736                           2                               Male
## 1737                           3                             Female
## 1738                           0                             Female
## 1739                           0                               Male
## 1740                           3                               Male
## 1741                           3                             Female
## 1742                           1                               Male
## 1743                           3                             Female
## 1744                           3                             Female
## 1745                           3                               Male
## 1746                           0                             Female
## 1747                           3                               Male
## 1748                           0                             Female
## 1749                           2                             Female
## 1750                           1                             Female
## 1751                           0                             Female
## 1752                           0                             Female
## 1753                           0                               Male
## 1754                           3                             Female
## 1755                           3                               Male
## 1756                           3                             Female
## 1757                           3                               Male
## 1758                           1                             Female
## 1759                           1                             Female
## 1760                           2                               Male
## 1761                           1                             Female
## 1762                           1                             Female
## 1763                           3                             Female
## 1764                           0                             Female
## 1765                           1                               Male
## 1766                           3                             Female
## 1767                           2                               Male
## 1768                           3                             Female
## 1769                           0                               Male
## 1770                           3                               Male
## 1771                           3                             Female
## 1772                           3                               Male
## 1773                           3                             Female
## 1774                           0                             Female
## 1775                           0                             Female
## 1776                           3                               Male
## 1777                           1                             Female
## 1778                           3                             Female
## 1779                           0                               Male
## 1780                           1                               Male
## 1781                           0                             Female
## 1782                           1                             Female
## 1783                           0                               Male
## 1784                           3                             Female
## 1785                           3                             Female
## 1786                           0                             Female
## 1787                           1                             Female
## 1788                           3                             Female
## 1789                           0                             Female
## 1790                           2                             Female
## 1791                           3                               Male
## 1792                           3                             Female
## 1793                           2                             Female
## 1794                           0                             Female
## 1795                           2                             Female
## 1796                           3                               Male
## 1797                           1                               Male
## 1798                           1                             Female
## 1799                           3                               Male
## 1800                           1                             Female
## 1801                           0                             Female
## 1802                           2                               Male
## 1803                           1                             Female
## 1804                           1                               Male
## 1805                           3                               Male
## 1806                           3                               Male
## 1807                           3                             Female
## 1808                           1                               Male
## 1809                           0                             Female
## 1810                           3                             Female
## 1811                           2                               Male
## 1812                           3                             Female
## 1813                           2                               Male
## 1814                           0                             Female
## 1815                           1                             Female
## 1816                           1                               Male
## 1817                           1                             Female
## 1818                           2                             Female
## 1819                           3                               Male
## 1820                           3                             Female
## 1821                           3                               Male
## 1822                           1                             Female
## 1823                           1                               Male
## 1824                           1                               Male
## 1825                           1                             Female
## 1826                           2                             Female
## 1827                           3                               Male
## 1828                           3                             Female
## 1829                           3                               Male
## 1830                           3                               Male
## 1831                           0                             Female
## 1832                           1                             Female
## 1833                           2                             Female
## 1834                           0                             Female
## 1835                           3                               Male
## 1836                           3                               Male
## 1837                           3                               Male
## 1838                           0                             Female
## 1839                           0                             Female
## 1840                           1                               Male
## 1841                           3                               Male
## 1842                           1                               Male
## 1843                           2                             Female
## 1844                           3                               Male
## 1845                           1                             Female
## 1846                           3                             Female
## 1847                           2                             Female
## 1848                           3                               Male
## 1849                           3                               Male
## 1850                           3                             Female
## 1851                           0                             Female
## 1852                           3                               Male
## 1853                           1                               Male
## 1854                           3                               Male
## 1855                           2                             Female
## 1856                           1                             Female
## 1857                           3                               Male
## 1858                           3                               Male
## 1859                           3                             Female
## 1860                           1                             Female
## 1861                           2                             Female
## 1862                           0                             Female
## 1863                           2                             Female
## 1864                           3                               Male
## 1865                           3                             Female
## 1866                           3                               Male
## 1867                           3                             Female
## 1868                           1                             Female
## 1869                           1                             Female
## 1870                           3                               Male
## 1871                           3                               Male
## 1872                           1                             Female
## 1873                           1                               Male
## 1874                           1                             Female
## 1875                           3                             Female
## 1876                           3                               Male
## 1877                           3                               Male
## 1878                           3                             Female
## 1879                           2                             Female
## 1880                           0                               Male
## 1881                           1                               Male
## 1882                           2                             Female
## 1883                           3                             Female
## 1884                           1                             Female
## 1885                           3                               Male
## 1886                           3                             Female
## 1887                           3                               Male
## 1888                           3                             Female
## 1889                           2                             Female
## 1890                           0                             Female
## 1891                           0                             Female
## 1892                           3                               Male
## 1893                           3                             Female
## 1894                           0                               Male
## 1895                           3                               Male
## 1896                           3                               Male
## 1897                           3                               Male
## 1898                           2                               Male
## 1899                           0                             Female
## 1900                           2                             Female
## 1901                           1                             Female
## 1902                           3                             Female
## 1903                           3                             Female
## 1904                           1                             Female
## 1905                           3                               Male
## 1906                           3                             Female
## 1907                           2                             Female
## 1908                           3                             Female
## 1909                           1                             Female
## 1910                           3                             Female
## 1911                           2                             Female
## 1912                           3                               Male
## 1913                           0                               Male
## 1914                           3                               Male
## 1915                           2                             Female
## 1916                           3                             Female
## 1917                           1                             Female
## 1918                           3                             Female
## 1919                           3                               Male
## 1920                           3                             Female
## 1921                           3                               Male
## 1922                           3                               Male
## 1923                           0                             Female
## 1924                           0                             Female
## 1925                           2                             Female
## 1926                           0                             Female
## 1927                           1                               Male
## 1928                           1                               Male
## 1929                           0                             Female
## 1930                           0                               Male
## 1931                           1                               Male
## 1932                           3                               Male
## 1933                           3                               Male
## 1934                           1                             Female
## 1935                           2                               Male
## 1936                           3                             Female
## 1937                           3                             Female
## 1938                           1                             Female
## 1939                           2                               Male
## 1940                           1                               Male
## 1941                           1                             Female
## 1942                           1                               Male
## 1943                           0                             Female
## 1944                           1                             Female
## 1945                           3                               Male
## 1946                           3                               Male
## 1947                           3                             Female
## 1948                           0                               Male
## 1949                           3                             Female
## 1950                           0                             Female
## 1951                           1                               Male
## 1952                           3                               Male
## 1953                           0                             Female
## 1954                           3                             Female
## 1955                           0                             Female
## 1956                           3                             Female
## 1957                           3                             Female
## 1958                           2                             Female
## 1959                           0                             Female
## 1960                           3                             Female
## 1961                           1                             Female
## 1962                           3                             Female
## 1963                           3                               Male
## 1964                           3                             Female
## 1965                           0                             Female
## 1966                           1                               Male
## 1967                           3                             Female
## 1968                           3                             Female
## 1969                           3                               Male
## 1970                           0                               Male
## 1971                           3                             Female
## 1972                           2                               Male
## 1973                           3                             Female
## 1974                           1                             Female
## 1975                           1                             Female
## 1976                           2                             Female
## 1977                           2                               Male
## 1978                           0                               Male
## 1979                           2                               Male
## 1980                           0                             Female
## 1981                           3                               Male
## 1982                           1                               Male
## 1983                           1                               Male
## 1984                           0                               Male
## 1985                           0                             Female
## 1986                           1                             Female
## 1987                           3                               Male
## 1988                           1                               Male
## 1989                           0                               Male
## 1990                           2                               Male
## 1991                           2                             Female
## 1992                           2                             Female
## 1993                           0                               Male
## 1994                           3                               Male
## 1995                           3                               Male
## 1996                           3                               Male
## 1997                           1                             Female
## 1998                           2                             Female
## 1999                           1                               Male
## 2000                           2                             Female
## 2001                           1                               Male
## 2002                           3                             Female
## 2003                           1                               Male
## 2004                           3                             Female
## 2005                           1                               Male
## 2006                           3                             Female
## 2007                           3                             Female
## 2008                           3                               Male
## 2009                           0                             Female
## 2010                           3                               Male
## 2011                           3                             Female
## 2012                           2                             Female
## 2013                           3                             Female
## 2014                           1                             Female
## 2015                           1                               Male
## 2016                           3                             Female
## 2017                           2                               Male
## 2018                           3                               Male
## 2019                           3                             Female
## 2020                           1                               Male
## 2021                           0                               Male
## 2022                           3                             Female
## 2023                           3                             Female
## 2024                           3                               Male
## 2025                           1                             Female
## 2026                           1                             Female
## 2027                           1                               Male
## 2028                           0                             Female
## 2029                           0                               Male
## 2030                           3                             Female
## 2031                           3                               Male
## 2032                           1                             Female
## 2033                           3                             Female
## 2034                           1                               Male
## 2035                           0                             Female
## 2036                           3                               Male
## 2037                           2                             Female
## 2038                           3                               Male
## 2039                           3                               Male
## 2040                           3                             Female
## 2041                           0                             Female
## 2042                           3                             Female
## 2043                           0                               Male
## 2044                           0                             Female
## 2045                           2                             Female
## 2046                           3                               Male
## 2047                           0                             Female
## 2048                           3                             Female
## 2049                           2                             Female
## 2050                           3                             Female
## 2051                           3                               Male
## 2052                           2                               Male
## 2053                           1                             Female
## 2054                           2                               Male
## 2055                           3                               Male
## 2056                           3                             Female
## 2057                           2                             Female
## 2058                           3                             Female
## 2059                           1                             Female
## 2060                           3                               Male
## 2061                           1                               Male
## 2062                           0                               Male
## 2063                           3                               Male
## 2064                           3                               Male
## 2065                           3                             Female
## 2066                           3                             Female
## 2067                           0                             Female
## 2068                           1                               Male
## 2069                           3                             Female
## 2070                           0                             Female
## 2071                           3                             Female
## 2072                           3                               Male
## 2073                           2                               Male
## 2074                           3                             Female
## 2075                           3                               Male
## 2076                           0                               Male
## 2077                           3                             Female
## 2078                           3                               Male
## 2079                           3                               Male
## 2080                           3                             Female
## 2081                           1                             Female
## 2082                           0                             Female
## 2083                           0                               Male
## 2084                           0                             Female
## 2085                           1                               Male
## 2086                           0                               Male
## 2087                           1                             Female
## 2088                           0                             Female
## 2089                           2                             Female
## 2090                           1                             Female
## 2091                           3                             Female
## 2092                           3                               Male
## 2093                           3                               Male
## 2094                           3                               Male
## 2095                           1                             Female
## 2096                           0                               Male
## 2097                           3                               Male
## 2098                           3                               Male
## 2099                           1                               Male
## 2100                           1                             Female
## 2101                           3                               Male
## 2102                           3                               Male
## 2103                           3                               Male
## 2104                           3                               Male
## 2105                           3                               Male
## 2106                           3                               Male
## 2107                           3                             Female
## 2108                           1                               Male
## 2109                           3                               Male
## 2110                           3                             Female
## 2111                           1                               Male
## 2112                           3                               Male
## 2113                           1                             Female
## 2114                           0                             Female
## 2115                           3                               Male
## 2116                           0                               Male
## 2117                           2                               Male
## 2118                           0                             Female
## 2119                           3                             Female
## 2120                           3                               Male
## 2121                           1                               Male
## 2122                           3                             Female
## 2123                           2                             Female
## 2124                           0                             Female
## 2125                           3                             Female
## 2126                           1                             Female
## 2127                           1                               Male
##      if_else(Q3 == 1, "Married", "Divorced")
## 1                                   Divorced
## 2                                    Married
## 3                                   Divorced
## 4                                    Married
## 5                                    Married
## 6                                    Married
## 7                                    Married
## 8                                   Divorced
## 9                                   Divorced
## 10                                   Married
## 11                                  Divorced
## 12                                   Married
## 13                                   Married
## 14                                   Married
## 15                                  Divorced
## 16                                   Married
## 17                                  Divorced
## 18                                  Divorced
## 19                                  Divorced
## 20                                  Divorced
## 21                                   Married
## 22                                   Married
## 23                                   Married
## 24                                   Married
## 25                                  Divorced
## 26                                   Married
## 27                                  Divorced
## 28                                  Divorced
## 29                                  Divorced
## 30                                  Divorced
## 31                                  Divorced
## 32                                   Married
## 33                                  Divorced
## 34                                  Divorced
## 35                                   Married
## 36                                   Married
## 37                                  Divorced
## 38                                  Divorced
## 39                                   Married
## 40                                   Married
## 41                                   Married
## 42                                   Married
## 43                                   Married
## 44                                   Married
## 45                                  Divorced
## 46                                  Divorced
## 47                                   Married
## 48                                   Married
## 49                                  Divorced
## 50                                   Married
## 51                                   Married
## 52                                   Married
## 53                                   Married
## 54                                   Married
## 55                                  Divorced
## 56                                   Married
## 57                                   Married
## 58                                  Divorced
## 59                                   Married
## 60                                   Married
## 61                                  Divorced
## 62                                  Divorced
## 63                                   Married
## 64                                   Married
## 65                                   Married
## 66                                  Divorced
## 67                                   Married
## 68                                   Married
## 69                                  Divorced
## 70                                   Married
## 71                                   Married
## 72                                   Married
## 73                                   Married
## 74                                   Married
## 75                                   Married
## 76                                  Divorced
## 77                                  Divorced
## 78                                  Divorced
## 79                                  Divorced
## 80                                   Married
## 81                                   Married
## 82                                  Divorced
## 83                                   Married
## 84                                   Married
## 85                                   Married
## 86                                   Married
## 87                                  Divorced
## 88                                   Married
## 89                                   Married
## 90                                   Married
## 91                                   Married
## 92                                   Married
## 93                                  Divorced
## 94                                  Divorced
## 95                                  Divorced
## 96                                  Divorced
## 97                                   Married
## 98                                   Married
## 99                                   Married
## 100                                 Divorced
## 101                                  Married
## 102                                 Divorced
## 103                                  Married
## 104                                  Married
## 105                                  Married
## 106                                  Married
## 107                                 Divorced
## 108                                 Divorced
## 109                                 Divorced
## 110                                  Married
## 111                                  Married
## 112                                  Married
## 113                                 Divorced
## 114                                 Divorced
## 115                                  Married
## 116                                 Divorced
## 117                                 Divorced
## 118                                  Married
## 119                                 Divorced
## 120                                 Divorced
## 121                                  Married
## 122                                 Divorced
## 123                                  Married
## 124                                 Divorced
## 125                                 Divorced
## 126                                 Divorced
## 127                                 Divorced
## 128                                  Married
## 129                                  Married
## 130                                  Married
## 131                                  Married
## 132                                  Married
## 133                                 Divorced
## 134                                 Divorced
## 135                                  Married
## 136                                  Married
## 137                                  Married
## 138                                  Married
## 139                                  Married
## 140                                  Married
## 141                                  Married
## 142                                  Married
## 143                                  Married
## 144                                  Married
## 145                                 Divorced
## 146                                  Married
## 147                                  Married
## 148                                  Married
## 149                                  Married
## 150                                 Divorced
## 151                                  Married
## 152                                 Divorced
## 153                                 Divorced
## 154                                  Married
## 155                                  Married
## 156                                  Married
## 157                                  Married
## 158                                 Divorced
## 159                                 Divorced
## 160                                  Married
## 161                                 Divorced
## 162                                  Married
## 163                                  Married
## 164                                  Married
## 165                                 Divorced
## 166                                  Married
## 167                                 Divorced
## 168                                 Divorced
## 169                                 Divorced
## 170                                  Married
## 171                                  Married
## 172                                  Married
## 173                                  Married
## 174                                 Divorced
## 175                                  Married
## 176                                  Married
## 177                                 Divorced
## 178                                  Married
## 179                                  Married
## 180                                 Divorced
## 181                                 Divorced
## 182                                  Married
## 183                                 Divorced
## 184                                  Married
## 185                                  Married
## 186                                  Married
## 187                                  Married
## 188                                  Married
## 189                                  Married
## 190                                  Married
## 191                                  Married
## 192                                  Married
## 193                                  Married
## 194                                 Divorced
## 195                                 Divorced
## 196                                  Married
## 197                                  Married
## 198                                  Married
## 199                                  Married
## 200                                 Divorced
## 201                                  Married
## 202                                  Married
## 203                                  Married
## 204                                 Divorced
## 205                                 Divorced
## 206                                  Married
## 207                                  Married
## 208                                 Divorced
## 209                                 Divorced
## 210                                  Married
## 211                                  Married
## 212                                  Married
## 213                                  Married
## 214                                 Divorced
## 215                                 Divorced
## 216                                  Married
## 217                                 Divorced
## 218                                  Married
## 219                                  Married
## 220                                  Married
## 221                                  Married
## 222                                  Married
## 223                                  Married
## 224                                 Divorced
## 225                                  Married
## 226                                 Divorced
## 227                                 Divorced
## 228                                  Married
## 229                                 Divorced
## 230                                  Married
## 231                                 Divorced
## 232                                 Divorced
## 233                                  Married
## 234                                 Divorced
## 235                                 Divorced
## 236                                  Married
## 237                                  Married
## 238                                  Married
## 239                                  Married
## 240                                  Married
## 241                                 Divorced
## 242                                 Divorced
## 243                                  Married
## 244                                  Married
## 245                                 Divorced
## 246                                  Married
## 247                                  Married
## 248                                  Married
## 249                                 Divorced
## 250                                 Divorced
## 251                                  Married
## 252                                  Married
## 253                                  Married
## 254                                 Divorced
## 255                                 Divorced
## 256                                  Married
## 257                                  Married
## 258                                 Divorced
## 259                                 Divorced
## 260                                  Married
## 261                                  Married
## 262                                 Divorced
## 263                                 Divorced
## 264                                 Divorced
## 265                                  Married
## 266                                 Divorced
## 267                                 Divorced
## 268                                  Married
## 269                                  Married
## 270                                  Married
## 271                                  Married
## 272                                 Divorced
## 273                                 Divorced
## 274                                 Divorced
## 275                                 Divorced
## 276                                  Married
## 277                                  Married
## 278                                 Divorced
## 279                                  Married
## 280                                  Married
## 281                                  Married
## 282                                  Married
## 283                                  Married
## 284                                  Married
## 285                                  Married
## 286                                  Married
## 287                                  Married
## 288                                 Divorced
## 289                                  Married
## 290                                  Married
## 291                                  Married
## 292                                 Divorced
## 293                                 Divorced
## 294                                 Divorced
## 295                                 Divorced
## 296                                 Divorced
## 297                                 Divorced
## 298                                 Divorced
## 299                                 Divorced
## 300                                 Divorced
## 301                                  Married
## 302                                  Married
## 303                                  Married
## 304                                 Divorced
## 305                                  Married
## 306                                 Divorced
## 307                                  Married
## 308                                 Divorced
## 309                                  Married
## 310                                  Married
## 311                                  Married
## 312                                  Married
## 313                                  Married
## 314                                  Married
## 315                                  Married
## 316                                  Married
## 317                                  Married
## 318                                  Married
## 319                                 Divorced
## 320                                 Divorced
## 321                                  Married
## 322                                  Married
## 323                                  Married
## 324                                  Married
## 325                                 Divorced
## 326                                  Married
## 327                                 Divorced
## 328                                 Divorced
## 329                                  Married
## 330                                  Married
## 331                                  Married
## 332                                 Divorced
## 333                                  Married
## 334                                  Married
## 335                                  Married
## 336                                  Married
## 337                                  Married
## 338                                  Married
## 339                                  Married
## 340                                  Married
## 341                                  Married
## 342                                  Married
## 343                                  Married
## 344                                  Married
## 345                                  Married
## 346                                 Divorced
## 347                                 Divorced
## 348                                 Divorced
## 349                                 Divorced
## 350                                 Divorced
## 351                                 Divorced
## 352                                  Married
## 353                                 Divorced
## 354                                  Married
## 355                                 Divorced
## 356                                  Married
## 357                                 Divorced
## 358                                  Married
## 359                                  Married
## 360                                  Married
## 361                                 Divorced
## 362                                 Divorced
## 363                                 Divorced
## 364                                 Divorced
## 365                                 Divorced
## 366                                  Married
## 367                                  Married
## 368                                  Married
## 369                                  Married
## 370                                  Married
## 371                                  Married
## 372                                  Married
## 373                                  Married
## 374                                 Divorced
## 375                                 Divorced
## 376                                  Married
## 377                                  Married
## 378                                  Married
## 379                                  Married
## 380                                  Married
## 381                                  Married
## 382                                  Married
## 383                                  Married
## 384                                 Divorced
## 385                                  Married
## 386                                 Divorced
## 387                                 Divorced
## 388                                 Divorced
## 389                                  Married
## 390                                 Divorced
## 391                                  Married
## 392                                  Married
## 393                                 Divorced
## 394                                  Married
## 395                                  Married
## 396                                 Divorced
## 397                                 Divorced
## 398                                  Married
## 399                                  Married
## 400                                  Married
## 401                                  Married
## 402                                 Divorced
## 403                                  Married
## 404                                  Married
## 405                                  Married
## 406                                 Divorced
## 407                                  Married
## 408                                  Married
## 409                                 Divorced
## 410                                  Married
## 411                                 Divorced
## 412                                 Divorced
## 413                                  Married
## 414                                  Married
## 415                                  Married
## 416                                 Divorced
## 417                                 Divorced
## 418                                  Married
## 419                                  Married
## 420                                  Married
## 421                                  Married
## 422                                  Married
## 423                                  Married
## 424                                  Married
## 425                                 Divorced
## 426                                  Married
## 427                                 Divorced
## 428                                  Married
## 429                                  Married
## 430                                  Married
## 431                                  Married
## 432                                 Divorced
## 433                                  Married
## 434                                 Divorced
## 435                                 Divorced
## 436                                  Married
## 437                                  Married
## 438                                  Married
## 439                                 Divorced
## 440                                  Married
## 441                                 Divorced
## 442                                 Divorced
## 443                                  Married
## 444                                 Divorced
## 445                                 Divorced
## 446                                  Married
## 447                                  Married
## 448                                 Divorced
## 449                                 Divorced
## 450                                  Married
## 451                                  Married
## 452                                 Divorced
## 453                                  Married
## 454                                  Married
## 455                                  Married
## 456                                  Married
## 457                                 Divorced
## 458                                 Divorced
## 459                                  Married
## 460                                 Divorced
## 461                                  Married
## 462                                  Married
## 463                                  Married
## 464                                  Married
## 465                                  Married
## 466                                 Divorced
## 467                                  Married
## 468                                 Divorced
## 469                                  Married
## 470                                 Divorced
## 471                                  Married
## 472                                 Divorced
## 473                                  Married
## 474                                 Divorced
## 475                                  Married
## 476                                 Divorced
## 477                                  Married
## 478                                  Married
## 479                                 Divorced
## 480                                  Married
## 481                                  Married
## 482                                  Married
## 483                                  Married
## 484                                 Divorced
## 485                                  Married
## 486                                  Married
## 487                                  Married
## 488                                  Married
## 489                                 Divorced
## 490                                  Married
## 491                                  Married
## 492                                  Married
## 493                                  Married
## 494                                 Divorced
## 495                                 Divorced
## 496                                  Married
## 497                                 Divorced
## 498                                 Divorced
## 499                                 Divorced
## 500                                 Divorced
## 501                                 Divorced
## 502                                 Divorced
## 503                                  Married
## 504                                  Married
## 505                                  Married
## 506                                 Divorced
## 507                                  Married
## 508                                  Married
## 509                                  Married
## 510                                  Married
## 511                                  Married
## 512                                 Divorced
## 513                                 Divorced
## 514                                  Married
## 515                                 Divorced
## 516                                  Married
## 517                                  Married
## 518                                  Married
## 519                                  Married
## 520                                  Married
## 521                                  Married
## 522                                  Married
## 523                                  Married
## 524                                  Married
## 525                                 Divorced
## 526                                  Married
## 527                                  Married
## 528                                  Married
## 529                                 Divorced
## 530                                  Married
## 531                                 Divorced
## 532                                 Divorced
## 533                                  Married
## 534                                  Married
## 535                                  Married
## 536                                  Married
## 537                                  Married
## 538                                  Married
## 539                                  Married
## 540                                  Married
## 541                                  Married
## 542                                  Married
## 543                                  Married
## 544                                 Divorced
## 545                                  Married
## 546                                 Divorced
## 547                                 Divorced
## 548                                  Married
## 549                                  Married
## 550                                  Married
## 551                                  Married
## 552                                  Married
## 553                                 Divorced
## 554                                 Divorced
## 555                                 Divorced
## 556                                  Married
## 557                                  Married
## 558                                 Divorced
## 559                                  Married
## 560                                  Married
## 561                                  Married
## 562                                  Married
## 563                                 Divorced
## 564                                  Married
## 565                                  Married
## 566                                 Divorced
## 567                                 Divorced
## 568                                 Divorced
## 569                                 Divorced
## 570                                 Divorced
## 571                                  Married
## 572                                 Divorced
## 573                                 Divorced
## 574                                  Married
## 575                                 Divorced
## 576                                 Divorced
## 577                                  Married
## 578                                  Married
## 579                                  Married
## 580                                  Married
## 581                                  Married
## 582                                  Married
## 583                                  Married
## 584                                  Married
## 585                                  Married
## 586                                  Married
## 587                                  Married
## 588                                  Married
## 589                                  Married
## 590                                  Married
## 591                                  Married
## 592                                 Divorced
## 593                                  Married
## 594                                 Divorced
## 595                                  Married
## 596                                 Divorced
## 597                                  Married
## 598                                  Married
## 599                                  Married
## 600                                 Divorced
## 601                                 Divorced
## 602                                 Divorced
## 603                                  Married
## 604                                  Married
## 605                                  Married
## 606                                  Married
## 607                                  Married
## 608                                  Married
## 609                                  Married
## 610                                 Divorced
## 611                                  Married
## 612                                  Married
## 613                                  Married
## 614                                  Married
## 615                                  Married
## 616                                  Married
## 617                                  Married
## 618                                 Divorced
## 619                                 Divorced
## 620                                  Married
## 621                                  Married
## 622                                  Married
## 623                                  Married
## 624                                 Divorced
## 625                                  Married
## 626                                  Married
## 627                                 Divorced
## 628                                  Married
## 629                                  Married
## 630                                 Divorced
## 631                                  Married
## 632                                  Married
## 633                                  Married
## 634                                  Married
## 635                                  Married
## 636                                 Divorced
## 637                                  Married
## 638                                  Married
## 639                                 Divorced
## 640                                  Married
## 641                                  Married
## 642                                  Married
## 643                                  Married
## 644                                  Married
## 645                                  Married
## 646                                 Divorced
## 647                                  Married
## 648                                  Married
## 649                                  Married
## 650                                  Married
## 651                                 Divorced
## 652                                 Divorced
## 653                                 Divorced
## 654                                  Married
## 655                                 Divorced
## 656                                 Divorced
## 657                                  Married
## 658                                  Married
## 659                                 Divorced
## 660                                  Married
## 661                                  Married
## 662                                 Divorced
## 663                                  Married
## 664                                 Divorced
## 665                                  Married
## 666                                 Divorced
## 667                                 Divorced
## 668                                  Married
## 669                                  Married
## 670                                 Divorced
## 671                                  Married
## 672                                 Divorced
## 673                                  Married
## 674                                 Divorced
## 675                                  Married
## 676                                  Married
## 677                                  Married
## 678                                  Married
## 679                                 Divorced
## 680                                 Divorced
## 681                                  Married
## 682                                  Married
## 683                                  Married
## 684                                 Divorced
## 685                                 Divorced
## 686                                  Married
## 687                                 Divorced
## 688                                 Divorced
## 689                                 Divorced
## 690                                 Divorced
## 691                                  Married
## 692                                  Married
## 693                                  Married
## 694                                 Divorced
## 695                                 Divorced
## 696                                  Married
## 697                                  Married
## 698                                 Divorced
## 699                                 Divorced
## 700                                  Married
## 701                                  Married
## 702                                  Married
## 703                                 Divorced
## 704                                  Married
## 705                                  Married
## 706                                  Married
## 707                                  Married
## 708                                  Married
## 709                                  Married
## 710                                 Divorced
## 711                                  Married
## 712                                  Married
## 713                                 Divorced
## 714                                  Married
## 715                                 Divorced
## 716                                  Married
## 717                                  Married
## 718                                  Married
## 719                                  Married
## 720                                 Divorced
## 721                                  Married
## 722                                  Married
## 723                                 Divorced
## 724                                 Divorced
## 725                                  Married
## 726                                  Married
## 727                                  Married
## 728                                  Married
## 729                                  Married
## 730                                  Married
## 731                                 Divorced
## 732                                 Divorced
## 733                                  Married
## 734                                 Divorced
## 735                                 Divorced
## 736                                  Married
## 737                                 Divorced
## 738                                  Married
## 739                                  Married
## 740                                 Divorced
## 741                                 Divorced
## 742                                  Married
## 743                                  Married
## 744                                 Divorced
## 745                                 Divorced
## 746                                 Divorced
## 747                                 Divorced
## 748                                  Married
## 749                                  Married
## 750                                  Married
## 751                                 Divorced
## 752                                  Married
## 753                                  Married
## 754                                  Married
## 755                                  Married
## 756                                  Married
## 757                                  Married
## 758                                  Married
## 759                                  Married
## 760                                  Married
## 761                                  Married
## 762                                  Married
## 763                                  Married
## 764                                  Married
## 765                                  Married
## 766                                  Married
## 767                                  Married
## 768                                  Married
## 769                                 Divorced
## 770                                  Married
## 771                                  Married
## 772                                  Married
## 773                                  Married
## 774                                  Married
## 775                                  Married
## 776                                 Divorced
## 777                                  Married
## 778                                 Divorced
## 779                                  Married
## 780                                  Married
## 781                                  Married
## 782                                 Divorced
## 783                                 Divorced
## 784                                  Married
## 785                                 Divorced
## 786                                  Married
## 787                                  Married
## 788                                  Married
## 789                                  Married
## 790                                 Divorced
## 791                                  Married
## 792                                  Married
## 793                                  Married
## 794                                  Married
## 795                                 Divorced
## 796                                 Divorced
## 797                                  Married
## 798                                 Divorced
## 799                                 Divorced
## 800                                  Married
## 801                                  Married
## 802                                  Married
## 803                                  Married
## 804                                 Divorced
## 805                                 Divorced
## 806                                  Married
## 807                                 Divorced
## 808                                 Divorced
## 809                                 Divorced
## 810                                  Married
## 811                                 Divorced
## 812                                  Married
## 813                                  Married
## 814                                  Married
## 815                                  Married
## 816                                  Married
## 817                                  Married
## 818                                 Divorced
## 819                                  Married
## 820                                  Married
## 821                                 Divorced
## 822                                 Divorced
## 823                                  Married
## 824                                  Married
## 825                                 Divorced
## 826                                 Divorced
## 827                                 Divorced
## 828                                  Married
## 829                                  Married
## 830                                  Married
## 831                                 Divorced
## 832                                  Married
## 833                                 Divorced
## 834                                  Married
## 835                                  Married
## 836                                  Married
## 837                                 Divorced
## 838                                  Married
## 839                                 Divorced
## 840                                  Married
## 841                                 Divorced
## 842                                 Divorced
## 843                                  Married
## 844                                 Divorced
## 845                                 Divorced
## 846                                  Married
## 847                                  Married
## 848                                  Married
## 849                                 Divorced
## 850                                  Married
## 851                                  Married
## 852                                 Divorced
## 853                                  Married
## 854                                 Divorced
## 855                                 Divorced
## 856                                  Married
## 857                                 Divorced
## 858                                 Divorced
## 859                                 Divorced
## 860                                 Divorced
## 861                                 Divorced
## 862                                 Divorced
## 863                                  Married
## 864                                  Married
## 865                                  Married
## 866                                 Divorced
## 867                                  Married
## 868                                 Divorced
## 869                                  Married
## 870                                  Married
## 871                                 Divorced
## 872                                  Married
## 873                                  Married
## 874                                  Married
## 875                                  Married
## 876                                  Married
## 877                                  Married
## 878                                 Divorced
## 879                                  Married
## 880                                 Divorced
## 881                                  Married
## 882                                  Married
## 883                                  Married
## 884                                  Married
## 885                                 Divorced
## 886                                  Married
## 887                                  Married
## 888                                 Divorced
## 889                                  Married
## 890                                 Divorced
## 891                                 Divorced
## 892                                 Divorced
## 893                                  Married
## 894                                  Married
## 895                                 Divorced
## 896                                 Divorced
## 897                                  Married
## 898                                  Married
## 899                                 Divorced
## 900                                 Divorced
## 901                                  Married
## 902                                  Married
## 903                                  Married
## 904                                  Married
## 905                                  Married
## 906                                 Divorced
## 907                                  Married
## 908                                 Divorced
## 909                                  Married
## 910                                  Married
## 911                                 Divorced
## 912                                 Divorced
## 913                                 Divorced
## 914                                  Married
## 915                                  Married
## 916                                  Married
## 917                                  Married
## 918                                  Married
## 919                                 Divorced
## 920                                  Married
## 921                                  Married
## 922                                  Married
## 923                                 Divorced
## 924                                  Married
## 925                                 Divorced
## 926                                  Married
## 927                                  Married
## 928                                 Divorced
## 929                                  Married
## 930                                 Divorced
## 931                                  Married
## 932                                  Married
## 933                                  Married
## 934                                  Married
## 935                                  Married
## 936                                  Married
## 937                                  Married
## 938                                  Married
## 939                                  Married
## 940                                 Divorced
## 941                                  Married
## 942                                  Married
## 943                                  Married
## 944                                 Divorced
## 945                                  Married
## 946                                 Divorced
## 947                                  Married
## 948                                  Married
## 949                                  Married
## 950                                  Married
## 951                                  Married
## 952                                 Divorced
## 953                                 Divorced
## 954                                  Married
## 955                                  Married
## 956                                 Divorced
## 957                                  Married
## 958                                  Married
## 959                                 Divorced
## 960                                  Married
## 961                                 Divorced
## 962                                 Divorced
## 963                                  Married
## 964                                 Divorced
## 965                                 Divorced
## 966                                 Divorced
## 967                                  Married
## 968                                  Married
## 969                                  Married
## 970                                  Married
## 971                                  Married
## 972                                  Married
## 973                                 Divorced
## 974                                  Married
## 975                                  Married
## 976                                  Married
## 977                                  Married
## 978                                 Divorced
## 979                                  Married
## 980                                  Married
## 981                                  Married
## 982                                  Married
## 983                                  Married
## 984                                 Divorced
## 985                                  Married
## 986                                 Divorced
## 987                                  Married
## 988                                  Married
## 989                                  Married
## 990                                 Divorced
## 991                                 Divorced
## 992                                 Divorced
## 993                                  Married
## 994                                 Divorced
## 995                                  Married
## 996                                  Married
## 997                                  Married
## 998                                  Married
## 999                                 Divorced
## 1000                                Divorced
## 1001                                 Married
## 1002                                Divorced
## 1003                                 Married
## 1004                                Divorced
## 1005                                Divorced
## 1006                                 Married
## 1007                                 Married
## 1008                                 Married
## 1009                                Divorced
## 1010                                 Married
## 1011                                Divorced
## 1012                                 Married
## 1013                                Divorced
## 1014                                 Married
## 1015                                 Married
## 1016                                Divorced
## 1017                                Divorced
## 1018                                 Married
## 1019                                Divorced
## 1020                                 Married
## 1021                                Divorced
## 1022                                Divorced
## 1023                                Divorced
## 1024                                 Married
## 1025                                Divorced
## 1026                                 Married
## 1027                                 Married
## 1028                                Divorced
## 1029                                 Married
## 1030                                Divorced
## 1031                                 Married
## 1032                                 Married
## 1033                                 Married
## 1034                                 Married
## 1035                                 Married
## 1036                                 Married
## 1037                                Divorced
## 1038                                 Married
## 1039                                 Married
## 1040                                 Married
## 1041                                 Married
## 1042                                 Married
## 1043                                Divorced
## 1044                                 Married
## 1045                                 Married
## 1046                                Divorced
## 1047                                 Married
## 1048                                Divorced
## 1049                                 Married
## 1050                                 Married
## 1051                                 Married
## 1052                                 Married
## 1053                                Divorced
## 1054                                Divorced
## 1055                                Divorced
## 1056                                 Married
## 1057                                 Married
## 1058                                 Married
## 1059                                Divorced
## 1060                                Divorced
## 1061                                 Married
## 1062                                Divorced
## 1063                                Divorced
## 1064                                 Married
## 1065                                Divorced
## 1066                                Divorced
## 1067                                 Married
## 1068                                 Married
## 1069                                Divorced
## 1070                                 Married
## 1071                                 Married
## 1072                                Divorced
## 1073                                 Married
## 1074                                Divorced
## 1075                                 Married
## 1076                                Divorced
## 1077                                Divorced
## 1078                                Divorced
## 1079                                 Married
## 1080                                 Married
## 1081                                Divorced
## 1082                                 Married
## 1083                                Divorced
## 1084                                 Married
## 1085                                 Married
## 1086                                Divorced
## 1087                                 Married
## 1088                                Divorced
## 1089                                Divorced
## 1090                                 Married
## 1091                                 Married
## 1092                                Divorced
## 1093                                Divorced
## 1094                                Divorced
## 1095                                 Married
## 1096                                Divorced
## 1097                                 Married
## 1098                                 Married
## 1099                                Divorced
## 1100                                Divorced
## 1101                                Divorced
## 1102                                 Married
## 1103                                Divorced
## 1104                                 Married
## 1105                                Divorced
## 1106                                Divorced
## 1107                                 Married
## 1108                                 Married
## 1109                                 Married
## 1110                                Divorced
## 1111                                 Married
## 1112                                 Married
## 1113                                 Married
## 1114                                Divorced
## 1115                                 Married
## 1116                                 Married
## 1117                                 Married
## 1118                                Divorced
## 1119                                 Married
## 1120                                Divorced
## 1121                                 Married
## 1122                                 Married
## 1123                                 Married
## 1124                                 Married
## 1125                                Divorced
## 1126                                 Married
## 1127                                 Married
## 1128                                Divorced
## 1129                                 Married
## 1130                                Divorced
## 1131                                Divorced
## 1132                                Divorced
## 1133                                Divorced
## 1134                                Divorced
## 1135                                 Married
## 1136                                Divorced
## 1137                                Divorced
## 1138                                Divorced
## 1139                                 Married
## 1140                                 Married
## 1141                                 Married
## 1142                                 Married
## 1143                                 Married
## 1144                                 Married
## 1145                                 Married
## 1146                                 Married
## 1147                                 Married
## 1148                                 Married
## 1149                                 Married
## 1150                                 Married
## 1151                                Divorced
## 1152                                 Married
## 1153                                 Married
## 1154                                 Married
## 1155                                 Married
## 1156                                 Married
## 1157                                Divorced
## 1158                                 Married
## 1159                                Divorced
## 1160                                 Married
## 1161                                Divorced
## 1162                                 Married
## 1163                                 Married
## 1164                                 Married
## 1165                                 Married
## 1166                                 Married
## 1167                                Divorced
## 1168                                Divorced
## 1169                                Divorced
## 1170                                 Married
## 1171                                 Married
## 1172                                Divorced
## 1173                                 Married
## 1174                                 Married
## 1175                                 Married
## 1176                                 Married
## 1177                                 Married
## 1178                                Divorced
## 1179                                 Married
## 1180                                Divorced
## 1181                                Divorced
## 1182                                 Married
## 1183                                 Married
## 1184                                 Married
## 1185                                Divorced
## 1186                                 Married
## 1187                                Divorced
## 1188                                 Married
## 1189                                Divorced
## 1190                                 Married
## 1191                                Divorced
## 1192                                Divorced
## 1193                                 Married
## 1194                                Divorced
## 1195                                 Married
## 1196                                Divorced
## 1197                                 Married
## 1198                                 Married
## 1199                                Divorced
## 1200                                Divorced
## 1201                                 Married
## 1202                                 Married
## 1203                                 Married
## 1204                                 Married
## 1205                                Divorced
## 1206                                 Married
## 1207                                 Married
## 1208                                 Married
## 1209                                 Married
## 1210                                 Married
## 1211                                 Married
## 1212                                 Married
## 1213                                Divorced
## 1214                                 Married
## 1215                                 Married
## 1216                                 Married
## 1217                                Divorced
## 1218                                 Married
## 1219                                 Married
## 1220                                 Married
## 1221                                 Married
## 1222                                Divorced
## 1223                                 Married
## 1224                                 Married
## 1225                                 Married
## 1226                                 Married
## 1227                                 Married
## 1228                                 Married
## 1229                                Divorced
## 1230                                 Married
## 1231                                 Married
## 1232                                 Married
## 1233                                 Married
## 1234                                 Married
## 1235                                Divorced
## 1236                                 Married
## 1237                                 Married
## 1238                                 Married
## 1239                                 Married
## 1240                                Divorced
## 1241                                 Married
## 1242                                 Married
## 1243                                 Married
## 1244                                 Married
## 1245                                 Married
## 1246                                Divorced
## 1247                                 Married
## 1248                                 Married
## 1249                                Divorced
## 1250                                 Married
## 1251                                 Married
## 1252                                Divorced
## 1253                                Divorced
## 1254                                 Married
## 1255                                 Married
## 1256                                Divorced
## 1257                                 Married
## 1258                                 Married
## 1259                                 Married
## 1260                                 Married
## 1261                                 Married
## 1262                                 Married
## 1263                                Divorced
## 1264                                 Married
## 1265                                Divorced
## 1266                                 Married
## 1267                                 Married
## 1268                                 Married
## 1269                                Divorced
## 1270                                 Married
## 1271                                 Married
## 1272                                 Married
## 1273                                 Married
## 1274                                Divorced
## 1275                                 Married
## 1276                                 Married
## 1277                                Divorced
## 1278                                 Married
## 1279                                 Married
## 1280                                 Married
## 1281                                 Married
## 1282                                 Married
## 1283                                 Married
## 1284                                 Married
## 1285                                 Married
## 1286                                Divorced
## 1287                                 Married
## 1288                                 Married
## 1289                                 Married
## 1290                                 Married
## 1291                                Divorced
## 1292                                Divorced
## 1293                                 Married
## 1294                                 Married
## 1295                                Divorced
## 1296                                 Married
## 1297                                Divorced
## 1298                                 Married
## 1299                                Divorced
## 1300                                Divorced
## 1301                                Divorced
## 1302                                 Married
## 1303                                 Married
## 1304                                Divorced
## 1305                                 Married
## 1306                                 Married
## 1307                                Divorced
## 1308                                Divorced
## 1309                                Divorced
## 1310                                Divorced
## 1311                                Divorced
## 1312                                 Married
## 1313                                 Married
## 1314                                Divorced
## 1315                                Divorced
## 1316                                 Married
## 1317                                 Married
## 1318                                Divorced
## 1319                                Divorced
## 1320                                 Married
## 1321                                Divorced
## 1322                                Divorced
## 1323                                 Married
## 1324                                Divorced
## 1325                                Divorced
## 1326                                Divorced
## 1327                                 Married
## 1328                                 Married
## 1329                                 Married
## 1330                                Divorced
## 1331                                 Married
## 1332                                 Married
## 1333                                 Married
## 1334                                 Married
## 1335                                 Married
## 1336                                 Married
## 1337                                 Married
## 1338                                Divorced
## 1339                                 Married
## 1340                                 Married
## 1341                                 Married
## 1342                                 Married
## 1343                                 Married
## 1344                                 Married
## 1345                                 Married
## 1346                                Divorced
## 1347                                 Married
## 1348                                 Married
## 1349                                 Married
## 1350                                Divorced
## 1351                                Divorced
## 1352                                Divorced
## 1353                                 Married
## 1354                                Divorced
## 1355                                 Married
## 1356                                Divorced
## 1357                                Divorced
## 1358                                 Married
## 1359                                Divorced
## 1360                                Divorced
## 1361                                 Married
## 1362                                Divorced
## 1363                                Divorced
## 1364                                 Married
## 1365                                Divorced
## 1366                                Divorced
## 1367                                Divorced
## 1368                                 Married
## 1369                                 Married
## 1370                                 Married
## 1371                                Divorced
## 1372                                 Married
## 1373                                Divorced
## 1374                                 Married
## 1375                                Divorced
## 1376                                Divorced
## 1377                                 Married
## 1378                                 Married
## 1379                                 Married
## 1380                                 Married
## 1381                                 Married
## 1382                                 Married
## 1383                                Divorced
## 1384                                 Married
## 1385                                Divorced
## 1386                                 Married
## 1387                                Divorced
## 1388                                 Married
## 1389                                Divorced
## 1390                                Divorced
## 1391                                 Married
## 1392                                 Married
## 1393                                Divorced
## 1394                                Divorced
## 1395                                Divorced
## 1396                                Divorced
## 1397                                 Married
## 1398                                 Married
## 1399                                 Married
## 1400                                 Married
## 1401                                 Married
## 1402                                 Married
## 1403                                 Married
## 1404                                 Married
## 1405                                Divorced
## 1406                                 Married
## 1407                                 Married
## 1408                                 Married
## 1409                                 Married
## 1410                                 Married
## 1411                                 Married
## 1412                                 Married
## 1413                                 Married
## 1414                                Divorced
## 1415                                 Married
## 1416                                 Married
## 1417                                 Married
## 1418                                 Married
## 1419                                Divorced
## 1420                                 Married
## 1421                                 Married
## 1422                                Divorced
## 1423                                 Married
## 1424                                 Married
## 1425                                Divorced
## 1426                                 Married
## 1427                                 Married
## 1428                                 Married
## 1429                                 Married
## 1430                                Divorced
## 1431                                 Married
## 1432                                Divorced
## 1433                                 Married
## 1434                                Divorced
## 1435                                Divorced
## 1436                                Divorced
## 1437                                 Married
## 1438                                 Married
## 1439                                Divorced
## 1440                                Divorced
## 1441                                 Married
## 1442                                Divorced
## 1443                                Divorced
## 1444                                Divorced
## 1445                                 Married
## 1446                                 Married
## 1447                                 Married
## 1448                                 Married
## 1449                                 Married
## 1450                                 Married
## 1451                                 Married
## 1452                                 Married
## 1453                                 Married
## 1454                                 Married
## 1455                                 Married
## 1456                                 Married
## 1457                                 Married
## 1458                                 Married
## 1459                                 Married
## 1460                                Divorced
## 1461                                Divorced
## 1462                                 Married
## 1463                                 Married
## 1464                                 Married
## 1465                                Divorced
## 1466                                 Married
## 1467                                 Married
## 1468                                Divorced
## 1469                                 Married
## 1470                                Divorced
## 1471                                 Married
## 1472                                 Married
## 1473                                 Married
## 1474                                Divorced
## 1475                                 Married
## 1476                                Divorced
## 1477                                Divorced
## 1478                                 Married
## 1479                                Divorced
## 1480                                 Married
## 1481                                Divorced
## 1482                                 Married
## 1483                                Divorced
## 1484                                 Married
## 1485                                 Married
## 1486                                Divorced
## 1487                                Divorced
## 1488                                 Married
## 1489                                Divorced
## 1490                                Divorced
## 1491                                 Married
## 1492                                 Married
## 1493                                 Married
## 1494                                 Married
## 1495                                 Married
## 1496                                Divorced
## 1497                                Divorced
## 1498                                Divorced
## 1499                                 Married
## 1500                                 Married
## 1501                                 Married
## 1502                                Divorced
## 1503                                Divorced
## 1504                                Divorced
## 1505                                Divorced
## 1506                                 Married
## 1507                                 Married
## 1508                                 Married
## 1509                                Divorced
## 1510                                 Married
## 1511                                 Married
## 1512                                Divorced
## 1513                                Divorced
## 1514                                Divorced
## 1515                                 Married
## 1516                                 Married
## 1517                                 Married
## 1518                                 Married
## 1519                                Divorced
## 1520                                 Married
## 1521                                 Married
## 1522                                 Married
## 1523                                 Married
## 1524                                 Married
## 1525                                 Married
## 1526                                 Married
## 1527                                 Married
## 1528                                 Married
## 1529                                Divorced
## 1530                                 Married
## 1531                                Divorced
## 1532                                Divorced
## 1533                                 Married
## 1534                                Divorced
## 1535                                 Married
## 1536                                 Married
## 1537                                 Married
## 1538                                 Married
## 1539                                 Married
## 1540                                Divorced
## 1541                                 Married
## 1542                                 Married
## 1543                                Divorced
## 1544                                 Married
## 1545                                Divorced
## 1546                                 Married
## 1547                                 Married
## 1548                                Divorced
## 1549                                Divorced
## 1550                                Divorced
## 1551                                Divorced
## 1552                                Divorced
## 1553                                Divorced
## 1554                                Divorced
## 1555                                Divorced
## 1556                                 Married
## 1557                                Divorced
## 1558                                 Married
## 1559                                 Married
## 1560                                Divorced
## 1561                                Divorced
## 1562                                 Married
## 1563                                Divorced
## 1564                                 Married
## 1565                                 Married
## 1566                                 Married
## 1567                                 Married
## 1568                                Divorced
## 1569                                 Married
## 1570                                 Married
## 1571                                 Married
## 1572                                 Married
## 1573                                 Married
## 1574                                Divorced
## 1575                                 Married
## 1576                                 Married
## 1577                                Divorced
## 1578                                Divorced
## 1579                                Divorced
## 1580                                Divorced
## 1581                                 Married
## 1582                                 Married
## 1583                                 Married
## 1584                                 Married
## 1585                                 Married
## 1586                                 Married
## 1587                                 Married
## 1588                                 Married
## 1589                                 Married
## 1590                                Divorced
## 1591                                 Married
## 1592                                 Married
## 1593                                 Married
## 1594                                 Married
## 1595                                 Married
## 1596                                 Married
## 1597                                Divorced
## 1598                                Divorced
## 1599                                 Married
## 1600                                 Married
## 1601                                 Married
## 1602                                 Married
## 1603                                 Married
## 1604                                Divorced
## 1605                                 Married
## 1606                                 Married
## 1607                                 Married
## 1608                                Divorced
## 1609                                 Married
## 1610                                Divorced
## 1611                                Divorced
## 1612                                Divorced
## 1613                                 Married
## 1614                                 Married
## 1615                                 Married
## 1616                                Divorced
## 1617                                Divorced
## 1618                                Divorced
## 1619                                 Married
## 1620                                 Married
## 1621                                 Married
## 1622                                Divorced
## 1623                                 Married
## 1624                                 Married
## 1625                                 Married
## 1626                                 Married
## 1627                                Divorced
## 1628                                Divorced
## 1629                                 Married
## 1630                                 Married
## 1631                                 Married
## 1632                                 Married
## 1633                                 Married
## 1634                                 Married
## 1635                                 Married
## 1636                                 Married
## 1637                                 Married
## 1638                                 Married
## 1639                                 Married
## 1640                                 Married
## 1641                                 Married
## 1642                                 Married
## 1643                                 Married
## 1644                                Divorced
## 1645                                Divorced
## 1646                                Divorced
## 1647                                 Married
## 1648                                 Married
## 1649                                 Married
## 1650                                 Married
## 1651                                 Married
## 1652                                 Married
## 1653                                Divorced
## 1654                                 Married
## 1655                                Divorced
## 1656                                 Married
## 1657                                 Married
## 1658                                 Married
## 1659                                 Married
## 1660                                 Married
## 1661                                 Married
## 1662                                Divorced
## 1663                                 Married
## 1664                                 Married
## 1665                                Divorced
## 1666                                 Married
## 1667                                 Married
## 1668                                Divorced
## 1669                                 Married
## 1670                                 Married
## 1671                                Divorced
## 1672                                Divorced
## 1673                                Divorced
## 1674                                 Married
## 1675                                 Married
## 1676                                 Married
## 1677                                 Married
## 1678                                Divorced
## 1679                                Divorced
## 1680                                 Married
## 1681                                 Married
## 1682                                Divorced
## 1683                                 Married
## 1684                                 Married
## 1685                                 Married
## 1686                                 Married
## 1687                                 Married
## 1688                                 Married
## 1689                                 Married
## 1690                                 Married
## 1691                                 Married
## 1692                                Divorced
## 1693                                 Married
## 1694                                 Married
## 1695                                Divorced
## 1696                                 Married
## 1697                                Divorced
## 1698                                Divorced
## 1699                                 Married
## 1700                                 Married
## 1701                                Divorced
## 1702                                 Married
## 1703                                 Married
## 1704                                 Married
## 1705                                 Married
## 1706                                 Married
## 1707                                 Married
## 1708                                 Married
## 1709                                 Married
## 1710                                 Married
## 1711                                Divorced
## 1712                                 Married
## 1713                                 Married
## 1714                                Divorced
## 1715                                 Married
## 1716                                 Married
## 1717                                Divorced
## 1718                                Divorced
## 1719                                 Married
## 1720                                Divorced
## 1721                                 Married
## 1722                                Divorced
## 1723                                 Married
## 1724                                Divorced
## 1725                                 Married
## 1726                                 Married
## 1727                                 Married
## 1728                                 Married
## 1729                                Divorced
## 1730                                 Married
## 1731                                Divorced
## 1732                                Divorced
## 1733                                 Married
## 1734                                 Married
## 1735                                 Married
## 1736                                Divorced
## 1737                                 Married
## 1738                                Divorced
## 1739                                 Married
## 1740                                Divorced
## 1741                                 Married
## 1742                                Divorced
## 1743                                 Married
## 1744                                Divorced
## 1745                                 Married
## 1746                                Divorced
## 1747                                 Married
## 1748                                Divorced
## 1749                                 Married
## 1750                                 Married
## 1751                                 Married
## 1752                                 Married
## 1753                                Divorced
## 1754                                 Married
## 1755                                 Married
## 1756                                Divorced
## 1757                                 Married
## 1758                                Divorced
## 1759                                Divorced
## 1760                                 Married
## 1761                                Divorced
## 1762                                 Married
## 1763                                Divorced
## 1764                                 Married
## 1765                                 Married
## 1766                                Divorced
## 1767                                Divorced
## 1768                                 Married
## 1769                                Divorced
## 1770                                 Married
## 1771                                 Married
## 1772                                Divorced
## 1773                                 Married
## 1774                                 Married
## 1775                                 Married
## 1776                                 Married
## 1777                                 Married
## 1778                                 Married
## 1779                                 Married
## 1780                                 Married
## 1781                                 Married
## 1782                                Divorced
## 1783                                Divorced
## 1784                                 Married
## 1785                                Divorced
## 1786                                Divorced
## 1787                                 Married
## 1788                                 Married
## 1789                                 Married
## 1790                                Divorced
## 1791                                 Married
## 1792                                Divorced
## 1793                                Divorced
## 1794                                 Married
## 1795                                 Married
## 1796                                Divorced
## 1797                                 Married
## 1798                                 Married
## 1799                                 Married
## 1800                                 Married
## 1801                                Divorced
## 1802                                Divorced
## 1803                                Divorced
## 1804                                Divorced
## 1805                                 Married
## 1806                                Divorced
## 1807                                 Married
## 1808                                 Married
## 1809                                 Married
## 1810                                Divorced
## 1811                                Divorced
## 1812                                 Married
## 1813                                 Married
## 1814                                 Married
## 1815                                Divorced
## 1816                                 Married
## 1817                                 Married
## 1818                                Divorced
## 1819                                 Married
## 1820                                 Married
## 1821                                 Married
## 1822                                 Married
## 1823                                Divorced
## 1824                                Divorced
## 1825                                Divorced
## 1826                                 Married
## 1827                                Divorced
## 1828                                Divorced
## 1829                                 Married
## 1830                                 Married
## 1831                                 Married
## 1832                                Divorced
## 1833                                Divorced
## 1834                                 Married
## 1835                                 Married
## 1836                                 Married
## 1837                                Divorced
## 1838                                 Married
## 1839                                 Married
## 1840                                 Married
## 1841                                 Married
## 1842                                 Married
## 1843                                Divorced
## 1844                                Divorced
## 1845                                 Married
## 1846                                 Married
## 1847                                 Married
## 1848                                 Married
## 1849                                 Married
## 1850                                 Married
## 1851                                Divorced
## 1852                                 Married
## 1853                                 Married
## 1854                                 Married
## 1855                                Divorced
## 1856                                 Married
## 1857                                 Married
## 1858                                 Married
## 1859                                 Married
## 1860                                 Married
## 1861                                 Married
## 1862                                Divorced
## 1863                                Divorced
## 1864                                 Married
## 1865                                 Married
## 1866                                 Married
## 1867                                Divorced
## 1868                                 Married
## 1869                                 Married
## 1870                                Divorced
## 1871                                Divorced
## 1872                                 Married
## 1873                                 Married
## 1874                                 Married
## 1875                                Divorced
## 1876                                Divorced
## 1877                                 Married
## 1878                                Divorced
## 1879                                 Married
## 1880                                Divorced
## 1881                                 Married
## 1882                                 Married
## 1883                                 Married
## 1884                                 Married
## 1885                                 Married
## 1886                                 Married
## 1887                                 Married
## 1888                                Divorced
## 1889                                 Married
## 1890                                 Married
## 1891                                Divorced
## 1892                                 Married
## 1893                                Divorced
## 1894                                 Married
## 1895                                 Married
## 1896                                 Married
## 1897                                 Married
## 1898                                 Married
## 1899                                Divorced
## 1900                                 Married
## 1901                                 Married
## 1902                                 Married
## 1903                                 Married
## 1904                                Divorced
## 1905                                Divorced
## 1906                                Divorced
## 1907                                Divorced
## 1908                                Divorced
## 1909                                Divorced
## 1910                                Divorced
## 1911                                 Married
## 1912                                 Married
## 1913                                Divorced
## 1914                                Divorced
## 1915                                 Married
## 1916                                 Married
## 1917                                 Married
## 1918                                Divorced
## 1919                                 Married
## 1920                                 Married
## 1921                                Divorced
## 1922                                 Married
## 1923                                 Married
## 1924                                 Married
## 1925                                 Married
## 1926                                Divorced
## 1927                                Divorced
## 1928                                 Married
## 1929                                Divorced
## 1930                                 Married
## 1931                                 Married
## 1932                                 Married
## 1933                                 Married
## 1934                                 Married
## 1935                                 Married
## 1936                                Divorced
## 1937                                 Married
## 1938                                Divorced
## 1939                                 Married
## 1940                                Divorced
## 1941                                Divorced
## 1942                                 Married
## 1943                                Divorced
## 1944                                 Married
## 1945                                 Married
## 1946                                 Married
## 1947                                 Married
## 1948                                 Married
## 1949                                 Married
## 1950                                 Married
## 1951                                Divorced
## 1952                                Divorced
## 1953                                Divorced
## 1954                                 Married
## 1955                                Divorced
## 1956                                 Married
## 1957                                 Married
## 1958                                Divorced
## 1959                                Divorced
## 1960                                 Married
## 1961                                 Married
## 1962                                Divorced
## 1963                                 Married
## 1964                                 Married
## 1965                                Divorced
## 1966                                Divorced
## 1967                                Divorced
## 1968                                 Married
## 1969                                Divorced
## 1970                                Divorced
## 1971                                Divorced
## 1972                                Divorced
## 1973                                 Married
## 1974                                Divorced
## 1975                                 Married
## 1976                                 Married
## 1977                                 Married
## 1978                                Divorced
## 1979                                 Married
## 1980                                 Married
## 1981                                 Married
## 1982                                 Married
## 1983                                 Married
## 1984                                 Married
## 1985                                Divorced
## 1986                                 Married
## 1987                                 Married
## 1988                                 Married
## 1989                                 Married
## 1990                                 Married
## 1991                                 Married
## 1992                                Divorced
## 1993                                 Married
## 1994                                Divorced
## 1995                                 Married
## 1996                                 Married
## 1997                                Divorced
## 1998                                 Married
## 1999                                 Married
## 2000                                 Married
## 2001                                 Married
## 2002                                Divorced
## 2003                                 Married
## 2004                                 Married
## 2005                                 Married
## 2006                                Divorced
## 2007                                Divorced
## 2008                                 Married
## 2009                                 Married
## 2010                                 Married
## 2011                                 Married
## 2012                                Divorced
## 2013                                 Married
## 2014                                 Married
## 2015                                 Married
## 2016                                Divorced
## 2017                                 Married
## 2018                                 Married
## 2019                                Divorced
## 2020                                Divorced
## 2021                                 Married
## 2022                                 Married
## 2023                                 Married
## 2024                                 Married
## 2025                                 Married
## 2026                                 Married
## 2027                                 Married
## 2028                                 Married
## 2029                                Divorced
## 2030                                 Married
## 2031                                 Married
## 2032                                Divorced
## 2033                                 Married
## 2034                                 Married
## 2035                                Divorced
## 2036                                 Married
## 2037                                 Married
## 2038                                 Married
## 2039                                 Married
## 2040                                 Married
## 2041                                 Married
## 2042                                 Married
## 2043                                 Married
## 2044                                 Married
## 2045                                Divorced
## 2046                                 Married
## 2047                                 Married
## 2048                                Divorced
## 2049                                Divorced
## 2050                                Divorced
## 2051                                 Married
## 2052                                Divorced
## 2053                                Divorced
## 2054                                Divorced
## 2055                                 Married
## 2056                                Divorced
## 2057                                 Married
## 2058                                 Married
## 2059                                Divorced
## 2060                                 Married
## 2061                                 Married
## 2062                                Divorced
## 2063                                 Married
## 2064                                 Married
## 2065                                 Married
## 2066                                Divorced
## 2067                                Divorced
## 2068                                Divorced
## 2069                                Divorced
## 2070                                 Married
## 2071                                 Married
## 2072                                Divorced
## 2073                                Divorced
## 2074                                Divorced
## 2075                                 Married
## 2076                                Divorced
## 2077                                 Married
## 2078                                 Married
## 2079                                 Married
## 2080                                Divorced
## 2081                                Divorced
## 2082                                 Married
## 2083                                Divorced
## 2084                                 Married
## 2085                                 Married
## 2086                                 Married
## 2087                                 Married
## 2088                                Divorced
## 2089                                Divorced
## 2090                                 Married
## 2091                                Divorced
## 2092                                 Married
## 2093                                 Married
## 2094                                 Married
## 2095                                 Married
## 2096                                Divorced
## 2097                                 Married
## 2098                                 Married
## 2099                                Divorced
## 2100                                Divorced
## 2101                                 Married
## 2102                                 Married
## 2103                                 Married
## 2104                                 Married
## 2105                                 Married
## 2106                                 Married
## 2107                                Divorced
## 2108                                 Married
## 2109                                 Married
## 2110                                Divorced
## 2111                                 Married
## 2112                                 Married
## 2113                                Divorced
## 2114                                 Married
## 2115                                 Married
## 2116                                 Married
## 2117                                 Married
## 2118                                 Married
## 2119                                 Married
## 2120                                Divorced
## 2121                                 Married
## 2122                                Divorced
## 2123                                Divorced
## 2124                                Divorced
## 2125                                Divorced
## 2126                                Divorced
## 2127                                 Married
##      if_else(Q3 == 3, "Widowed", "Single")
## 1                                  Widowed
## 2                                   Single
## 3                                   Single
## 4                                   Single
## 5                                   Single
## 6                                   Single
## 7                                   Single
## 8                                   Single
## 9                                  Widowed
## 10                                  Single
## 11                                  Single
## 12                                  Single
## 13                                  Single
## 14                                  Single
## 15                                  Single
## 16                                  Single
## 17                                  Single
## 18                                  Single
## 19                                  Single
## 20                                 Widowed
## 21                                  Single
## 22                                  Single
## 23                                  Single
## 24                                  Single
## 25                                  Single
## 26                                  Single
## 27                                  Single
## 28                                  Single
## 29                                  Single
## 30                                  Single
## 31                                  Single
## 32                                  Single
## 33                                  Single
## 34                                  Single
## 35                                  Single
## 36                                  Single
## 37                                  Single
## 38                                  Single
## 39                                  Single
## 40                                  Single
## 41                                  Single
## 42                                  Single
## 43                                  Single
## 44                                  Single
## 45                                  Single
## 46                                  Single
## 47                                  Single
## 48                                  Single
## 49                                  Single
## 50                                  Single
## 51                                  Single
## 52                                  Single
## 53                                  Single
## 54                                  Single
## 55                                  Single
## 56                                  Single
## 57                                  Single
## 58                                  Single
## 59                                  Single
## 60                                  Single
## 61                                  Single
## 62                                  Single
## 63                                  Single
## 64                                  Single
## 65                                  Single
## 66                                  Single
## 67                                  Single
## 68                                  Single
## 69                                  Single
## 70                                  Single
## 71                                  Single
## 72                                  Single
## 73                                  Single
## 74                                  Single
## 75                                  Single
## 76                                  Single
## 77                                  Single
## 78                                  Single
## 79                                  Single
## 80                                  Single
## 81                                  Single
## 82                                  Single
## 83                                  Single
## 84                                  Single
## 85                                  Single
## 86                                  Single
## 87                                  Single
## 88                                  Single
## 89                                  Single
## 90                                  Single
## 91                                  Single
## 92                                  Single
## 93                                  Single
## 94                                  Single
## 95                                  Single
## 96                                  Single
## 97                                  Single
## 98                                  Single
## 99                                  Single
## 100                                 Single
## 101                                 Single
## 102                                Widowed
## 103                                 Single
## 104                                 Single
## 105                                 Single
## 106                                 Single
## 107                                 Single
## 108                                 Single
## 109                                 Single
## 110                                 Single
## 111                                 Single
## 112                                 Single
## 113                                Widowed
## 114                                Widowed
## 115                                 Single
## 116                                Widowed
## 117                                 Single
## 118                                 Single
## 119                                 Single
## 120                                 Single
## 121                                 Single
## 122                                 Single
## 123                                 Single
## 124                                 Single
## 125                                 Single
## 126                                 Single
## 127                                 Single
## 128                                 Single
## 129                                 Single
## 130                                 Single
## 131                                 Single
## 132                                 Single
## 133                                Widowed
## 134                                Widowed
## 135                                 Single
## 136                                 Single
## 137                                 Single
## 138                                 Single
## 139                                 Single
## 140                                 Single
## 141                                 Single
## 142                                 Single
## 143                                 Single
## 144                                 Single
## 145                                 Single
## 146                                 Single
## 147                                 Single
## 148                                 Single
## 149                                 Single
## 150                                Widowed
## 151                                 Single
## 152                                 Single
## 153                                 Single
## 154                                 Single
## 155                                 Single
## 156                                 Single
## 157                                 Single
## 158                                 Single
## 159                                 Single
## 160                                 Single
## 161                                 Single
## 162                                 Single
## 163                                 Single
## 164                                 Single
## 165                                 Single
## 166                                 Single
## 167                                 Single
## 168                                 Single
## 169                                 Single
## 170                                 Single
## 171                                 Single
## 172                                 Single
## 173                                 Single
## 174                                 Single
## 175                                 Single
## 176                                 Single
## 177                                 Single
## 178                                 Single
## 179                                 Single
## 180                                 Single
## 181                                 Single
## 182                                 Single
## 183                                 Single
## 184                                 Single
## 185                                 Single
## 186                                 Single
## 187                                 Single
## 188                                 Single
## 189                                 Single
## 190                                 Single
## 191                                 Single
## 192                                 Single
## 193                                 Single
## 194                                 Single
## 195                                 Single
## 196                                 Single
## 197                                 Single
## 198                                 Single
## 199                                 Single
## 200                                Widowed
## 201                                 Single
## 202                                 Single
## 203                                 Single
## 204                                 Single
## 205                                Widowed
## 206                                 Single
## 207                                 Single
## 208                                 Single
## 209                                 Single
## 210                                 Single
## 211                                 Single
## 212                                 Single
## 213                                 Single
## 214                                 Single
## 215                                 Single
## 216                                 Single
## 217                                 Single
## 218                                 Single
## 219                                 Single
## 220                                 Single
## 221                                 Single
## 222                                 Single
## 223                                 Single
## 224                                Widowed
## 225                                 Single
## 226                                 Single
## 227                                 Single
## 228                                 Single
## 229                                 Single
## 230                                 Single
## 231                                 Single
## 232                                Widowed
## 233                                 Single
## 234                                 Single
## 235                                Widowed
## 236                                 Single
## 237                                 Single
## 238                                 Single
## 239                                 Single
## 240                                 Single
## 241                                 Single
## 242                                 Single
## 243                                 Single
## 244                                 Single
## 245                                 Single
## 246                                 Single
## 247                                 Single
## 248                                 Single
## 249                                Widowed
## 250                                Widowed
## 251                                 Single
## 252                                 Single
## 253                                 Single
## 254                                Widowed
## 255                                 Single
## 256                                 Single
## 257                                 Single
## 258                                 Single
## 259                                 Single
## 260                                 Single
## 261                                 Single
## 262                                 Single
## 263                                 Single
## 264                                 Single
## 265                                 Single
## 266                                 Single
## 267                                 Single
## 268                                 Single
## 269                                 Single
## 270                                 Single
## 271                                 Single
## 272                                 Single
## 273                                 Single
## 274                                Widowed
## 275                                 Single
## 276                                 Single
## 277                                 Single
## 278                                Widowed
## 279                                 Single
## 280                                 Single
## 281                                 Single
## 282                                 Single
## 283                                 Single
## 284                                 Single
## 285                                 Single
## 286                                 Single
## 287                                 Single
## 288                                 Single
## 289                                 Single
## 290                                 Single
## 291                                 Single
## 292                                 Single
## 293                                 Single
## 294                                 Single
## 295                                Widowed
## 296                                 Single
## 297                                 Single
## 298                                 Single
## 299                                 Single
## 300                                 Single
## 301                                 Single
## 302                                 Single
## 303                                 Single
## 304                                Widowed
## 305                                 Single
## 306                                 Single
## 307                                 Single
## 308                                Widowed
## 309                                 Single
## 310                                 Single
## 311                                 Single
## 312                                 Single
## 313                                 Single
## 314                                 Single
## 315                                 Single
## 316                                 Single
## 317                                 Single
## 318                                 Single
## 319                                 Single
## 320                                 Single
## 321                                 Single
## 322                                 Single
## 323                                 Single
## 324                                 Single
## 325                                 Single
## 326                                 Single
## 327                                 Single
## 328                                Widowed
## 329                                 Single
## 330                                 Single
## 331                                 Single
## 332                                 Single
## 333                                 Single
## 334                                 Single
## 335                                 Single
## 336                                 Single
## 337                                 Single
## 338                                 Single
## 339                                 Single
## 340                                 Single
## 341                                 Single
## 342                                 Single
## 343                                 Single
## 344                                 Single
## 345                                 Single
## 346                                 Single
## 347                                Widowed
## 348                                Widowed
## 349                                 Single
## 350                                Widowed
## 351                                 Single
## 352                                 Single
## 353                                 Single
## 354                                 Single
## 355                                 Single
## 356                                 Single
## 357                                Widowed
## 358                                 Single
## 359                                 Single
## 360                                 Single
## 361                                 Single
## 362                                 Single
## 363                                 Single
## 364                                Widowed
## 365                                 Single
## 366                                 Single
## 367                                 Single
## 368                                 Single
## 369                                 Single
## 370                                 Single
## 371                                 Single
## 372                                 Single
## 373                                 Single
## 374                                 Single
## 375                                 Single
## 376                                 Single
## 377                                 Single
## 378                                 Single
## 379                                 Single
## 380                                 Single
## 381                                 Single
## 382                                 Single
## 383                                 Single
## 384                                 Single
## 385                                 Single
## 386                                 Single
## 387                                 Single
## 388                                 Single
## 389                                 Single
## 390                                 Single
## 391                                 Single
## 392                                 Single
## 393                                 Single
## 394                                 Single
## 395                                 Single
## 396                                 Single
## 397                                 Single
## 398                                 Single
## 399                                 Single
## 400                                 Single
## 401                                 Single
## 402                                 Single
## 403                                 Single
## 404                                 Single
## 405                                 Single
## 406                                 Single
## 407                                 Single
## 408                                 Single
## 409                                 Single
## 410                                 Single
## 411                                Widowed
## 412                                Widowed
## 413                                 Single
## 414                                 Single
## 415                                 Single
## 416                                 Single
## 417                                Widowed
## 418                                 Single
## 419                                 Single
## 420                                 Single
## 421                                 Single
## 422                                 Single
## 423                                 Single
## 424                                 Single
## 425                                 Single
## 426                                 Single
## 427                                Widowed
## 428                                 Single
## 429                                 Single
## 430                                 Single
## 431                                 Single
## 432                                 Single
## 433                                 Single
## 434                                Widowed
## 435                                 Single
## 436                                 Single
## 437                                 Single
## 438                                 Single
## 439                                 Single
## 440                                 Single
## 441                                 Single
## 442                                 Single
## 443                                 Single
## 444                                Widowed
## 445                                 Single
## 446                                 Single
## 447                                 Single
## 448                                 Single
## 449                                 Single
## 450                                 Single
## 451                                 Single
## 452                                 Single
## 453                                 Single
## 454                                 Single
## 455                                 Single
## 456                                 Single
## 457                                 Single
## 458                                Widowed
## 459                                 Single
## 460                                Widowed
## 461                                 Single
## 462                                 Single
## 463                                 Single
## 464                                 Single
## 465                                 Single
## 466                                 Single
## 467                                 Single
## 468                                 Single
## 469                                 Single
## 470                                 Single
## 471                                 Single
## 472                                Widowed
## 473                                 Single
## 474                                 Single
## 475                                 Single
## 476                                 Single
## 477                                 Single
## 478                                 Single
## 479                                 Single
## 480                                 Single
## 481                                 Single
## 482                                 Single
## 483                                 Single
## 484                                 Single
## 485                                 Single
## 486                                 Single
## 487                                 Single
## 488                                 Single
## 489                                Widowed
## 490                                 Single
## 491                                 Single
## 492                                 Single
## 493                                 Single
## 494                                 Single
## 495                                 Single
## 496                                 Single
## 497                                Widowed
## 498                                Widowed
## 499                                 Single
## 500                                 Single
## 501                                 Single
## 502                                 Single
## 503                                 Single
## 504                                 Single
## 505                                 Single
## 506                                 Single
## 507                                 Single
## 508                                 Single
## 509                                 Single
## 510                                 Single
## 511                                 Single
## 512                                 Single
## 513                                 Single
## 514                                 Single
## 515                                 Single
## 516                                 Single
## 517                                 Single
## 518                                 Single
## 519                                 Single
## 520                                 Single
## 521                                 Single
## 522                                 Single
## 523                                 Single
## 524                                 Single
## 525                                 Single
## 526                                 Single
## 527                                 Single
## 528                                 Single
## 529                                Widowed
## 530                                 Single
## 531                                 Single
## 532                                Widowed
## 533                                 Single
## 534                                 Single
## 535                                 Single
## 536                                 Single
## 537                                 Single
## 538                                 Single
## 539                                 Single
## 540                                 Single
## 541                                 Single
## 542                                 Single
## 543                                 Single
## 544                                 Single
## 545                                 Single
## 546                                 Single
## 547                                 Single
## 548                                 Single
## 549                                 Single
## 550                                 Single
## 551                                 Single
## 552                                 Single
## 553                                 Single
## 554                                Widowed
## 555                                 Single
## 556                                 Single
## 557                                 Single
## 558                                Widowed
## 559                                 Single
## 560                                 Single
## 561                                 Single
## 562                                 Single
## 563                                Widowed
## 564                                 Single
## 565                                 Single
## 566                                Widowed
## 567                                Widowed
## 568                                 Single
## 569                                Widowed
## 570                                 Single
## 571                                 Single
## 572                                Widowed
## 573                                Widowed
## 574                                 Single
## 575                                Widowed
## 576                                 Single
## 577                                 Single
## 578                                 Single
## 579                                 Single
## 580                                 Single
## 581                                 Single
## 582                                 Single
## 583                                 Single
## 584                                 Single
## 585                                 Single
## 586                                 Single
## 587                                 Single
## 588                                 Single
## 589                                 Single
## 590                                 Single
## 591                                 Single
## 592                                 Single
## 593                                 Single
## 594                                 Single
## 595                                 Single
## 596                                 Single
## 597                                 Single
## 598                                 Single
## 599                                 Single
## 600                                 Single
## 601                                Widowed
## 602                                Widowed
## 603                                 Single
## 604                                 Single
## 605                                 Single
## 606                                 Single
## 607                                 Single
## 608                                 Single
## 609                                 Single
## 610                                 Single
## 611                                 Single
## 612                                 Single
## 613                                 Single
## 614                                 Single
## 615                                 Single
## 616                                 Single
## 617                                 Single
## 618                                Widowed
## 619                                 Single
## 620                                 Single
## 621                                 Single
## 622                                 Single
## 623                                 Single
## 624                                Widowed
## 625                                 Single
## 626                                 Single
## 627                                Widowed
## 628                                 Single
## 629                                 Single
## 630                                 Single
## 631                                 Single
## 632                                 Single
## 633                                 Single
## 634                                 Single
## 635                                 Single
## 636                                 Single
## 637                                 Single
## 638                                 Single
## 639                                 Single
## 640                                 Single
## 641                                 Single
## 642                                 Single
## 643                                 Single
## 644                                 Single
## 645                                 Single
## 646                                 Single
## 647                                 Single
## 648                                 Single
## 649                                 Single
## 650                                 Single
## 651                                 Single
## 652                                 Single
## 653                                 Single
## 654                                 Single
## 655                                Widowed
## 656                                Widowed
## 657                                 Single
## 658                                 Single
## 659                                Widowed
## 660                                 Single
## 661                                 Single
## 662                                 Single
## 663                                 Single
## 664                                 Single
## 665                                 Single
## 666                                 Single
## 667                                 Single
## 668                                 Single
## 669                                 Single
## 670                                 Single
## 671                                 Single
## 672                                 Single
## 673                                 Single
## 674                                 Single
## 675                                 Single
## 676                                 Single
## 677                                 Single
## 678                                 Single
## 679                                 Single
## 680                                Widowed
## 681                                 Single
## 682                                 Single
## 683                                 Single
## 684                                Widowed
## 685                                 Single
## 686                                 Single
## 687                                Widowed
## 688                                 Single
## 689                                Widowed
## 690                                 Single
## 691                                 Single
## 692                                 Single
## 693                                 Single
## 694                                 Single
## 695                                 Single
## 696                                 Single
## 697                                 Single
## 698                                 Single
## 699                                Widowed
## 700                                 Single
## 701                                 Single
## 702                                 Single
## 703                                 Single
## 704                                 Single
## 705                                 Single
## 706                                 Single
## 707                                 Single
## 708                                 Single
## 709                                 Single
## 710                                 Single
## 711                                 Single
## 712                                 Single
## 713                                Widowed
## 714                                 Single
## 715                                 Single
## 716                                 Single
## 717                                 Single
## 718                                 Single
## 719                                 Single
## 720                                 Single
## 721                                 Single
## 722                                 Single
## 723                                 Single
## 724                                 Single
## 725                                 Single
## 726                                 Single
## 727                                 Single
## 728                                 Single
## 729                                 Single
## 730                                 Single
## 731                                 Single
## 732                                 Single
## 733                                 Single
## 734                                 Single
## 735                                Widowed
## 736                                 Single
## 737                                 Single
## 738                                 Single
## 739                                 Single
## 740                                Widowed
## 741                                 Single
## 742                                 Single
## 743                                 Single
## 744                                 Single
## 745                                 Single
## 746                                Widowed
## 747                                 Single
## 748                                 Single
## 749                                 Single
## 750                                 Single
## 751                                 Single
## 752                                 Single
## 753                                 Single
## 754                                 Single
## 755                                 Single
## 756                                 Single
## 757                                 Single
## 758                                 Single
## 759                                 Single
## 760                                 Single
## 761                                 Single
## 762                                 Single
## 763                                 Single
## 764                                 Single
## 765                                 Single
## 766                                 Single
## 767                                 Single
## 768                                 Single
## 769                                 Single
## 770                                 Single
## 771                                 Single
## 772                                 Single
## 773                                 Single
## 774                                 Single
## 775                                 Single
## 776                                Widowed
## 777                                 Single
## 778                                 Single
## 779                                 Single
## 780                                 Single
## 781                                 Single
## 782                                 Single
## 783                                 Single
## 784                                 Single
## 785                                 Single
## 786                                 Single
## 787                                 Single
## 788                                 Single
## 789                                 Single
## 790                                 Single
## 791                                 Single
## 792                                 Single
## 793                                 Single
## 794                                 Single
## 795                                 Single
## 796                                 Single
## 797                                 Single
## 798                                 Single
## 799                                 Single
## 800                                 Single
## 801                                 Single
## 802                                 Single
## 803                                 Single
## 804                                 Single
## 805                                 Single
## 806                                 Single
## 807                                Widowed
## 808                                 Single
## 809                                 Single
## 810                                 Single
## 811                                 Single
## 812                                 Single
## 813                                 Single
## 814                                 Single
## 815                                 Single
## 816                                 Single
## 817                                 Single
## 818                                Widowed
## 819                                 Single
## 820                                 Single
## 821                                 Single
## 822                                 Single
## 823                                 Single
## 824                                 Single
## 825                                Widowed
## 826                                Widowed
## 827                                 Single
## 828                                 Single
## 829                                 Single
## 830                                 Single
## 831                                 Single
## 832                                 Single
## 833                                Widowed
## 834                                 Single
## 835                                 Single
## 836                                 Single
## 837                                 Single
## 838                                 Single
## 839                                 Single
## 840                                 Single
## 841                                Widowed
## 842                                 Single
## 843                                 Single
## 844                                 Single
## 845                                Widowed
## 846                                 Single
## 847                                 Single
## 848                                 Single
## 849                                 Single
## 850                                 Single
## 851                                 Single
## 852                                 Single
## 853                                 Single
## 854                                 Single
## 855                                 Single
## 856                                 Single
## 857                                 Single
## 858                                Widowed
## 859                                 Single
## 860                                Widowed
## 861                                 Single
## 862                                Widowed
## 863                                 Single
## 864                                 Single
## 865                                 Single
## 866                                 Single
## 867                                 Single
## 868                                 Single
## 869                                 Single
## 870                                 Single
## 871                                 Single
## 872                                 Single
## 873                                 Single
## 874                                 Single
## 875                                 Single
## 876                                 Single
## 877                                 Single
## 878                                 Single
## 879                                 Single
## 880                                 Single
## 881                                 Single
## 882                                 Single
## 883                                 Single
## 884                                 Single
## 885                                Widowed
## 886                                 Single
## 887                                 Single
## 888                                 Single
## 889                                 Single
## 890                                 Single
## 891                                 Single
## 892                                 Single
## 893                                 Single
## 894                                 Single
## 895                                Widowed
## 896                                 Single
## 897                                 Single
## 898                                 Single
## 899                                 Single
## 900                                 Single
## 901                                 Single
## 902                                 Single
## 903                                 Single
## 904                                 Single
## 905                                 Single
## 906                                 Single
## 907                                 Single
## 908                                 Single
## 909                                 Single
## 910                                 Single
## 911                                 Single
## 912                                 Single
## 913                                 Single
## 914                                 Single
## 915                                 Single
## 916                                 Single
## 917                                 Single
## 918                                 Single
## 919                                 Single
## 920                                 Single
## 921                                 Single
## 922                                 Single
## 923                                Widowed
## 924                                 Single
## 925                                 Single
## 926                                 Single
## 927                                 Single
## 928                                 Single
## 929                                 Single
## 930                                 Single
## 931                                 Single
## 932                                 Single
## 933                                 Single
## 934                                 Single
## 935                                 Single
## 936                                 Single
## 937                                 Single
## 938                                 Single
## 939                                 Single
## 940                                 Single
## 941                                 Single
## 942                                 Single
## 943                                 Single
## 944                                 Single
## 945                                 Single
## 946                                Widowed
## 947                                 Single
## 948                                 Single
## 949                                 Single
## 950                                 Single
## 951                                 Single
## 952                                 Single
## 953                                Widowed
## 954                                 Single
## 955                                 Single
## 956                                 Single
## 957                                 Single
## 958                                 Single
## 959                                Widowed
## 960                                 Single
## 961                                Widowed
## 962                                Widowed
## 963                                 Single
## 964                                 Single
## 965                                Widowed
## 966                                 Single
## 967                                 Single
## 968                                 Single
## 969                                 Single
## 970                                 Single
## 971                                 Single
## 972                                 Single
## 973                                Widowed
## 974                                 Single
## 975                                 Single
## 976                                 Single
## 977                                 Single
## 978                                 Single
## 979                                 Single
## 980                                 Single
## 981                                 Single
## 982                                 Single
## 983                                 Single
## 984                                Widowed
## 985                                 Single
## 986                                 Single
## 987                                 Single
## 988                                 Single
## 989                                 Single
## 990                                Widowed
## 991                                 Single
## 992                                 Single
## 993                                 Single
## 994                                 Single
## 995                                 Single
## 996                                 Single
## 997                                 Single
## 998                                 Single
## 999                                 Single
## 1000                                Single
## 1001                                Single
## 1002                                Single
## 1003                                Single
## 1004                                Single
## 1005                                Single
## 1006                                Single
## 1007                                Single
## 1008                                Single
## 1009                                Single
## 1010                                Single
## 1011                                Single
## 1012                                Single
## 1013                                Single
## 1014                                Single
## 1015                                Single
## 1016                               Widowed
## 1017                                Single
## 1018                                Single
## 1019                                Single
## 1020                                Single
## 1021                               Widowed
## 1022                                Single
## 1023                                Single
## 1024                                Single
## 1025                                Single
## 1026                                Single
## 1027                                Single
## 1028                                Single
## 1029                                Single
## 1030                                Single
## 1031                                Single
## 1032                                Single
## 1033                                Single
## 1034                                Single
## 1035                                Single
## 1036                                Single
## 1037                               Widowed
## 1038                                Single
## 1039                                Single
## 1040                                Single
## 1041                                Single
## 1042                                Single
## 1043                               Widowed
## 1044                                Single
## 1045                                Single
## 1046                                Single
## 1047                                Single
## 1048                                Single
## 1049                                Single
## 1050                                Single
## 1051                                Single
## 1052                                Single
## 1053                               Widowed
## 1054                               Widowed
## 1055                               Widowed
## 1056                                Single
## 1057                                Single
## 1058                                Single
## 1059                                Single
## 1060                               Widowed
## 1061                                Single
## 1062                                Single
## 1063                                Single
## 1064                                Single
## 1065                                Single
## 1066                               Widowed
## 1067                                Single
## 1068                                Single
## 1069                                Single
## 1070                                Single
## 1071                                Single
## 1072                               Widowed
## 1073                                Single
## 1074                                Single
## 1075                                Single
## 1076                                Single
## 1077                                Single
## 1078                                Single
## 1079                                Single
## 1080                                Single
## 1081                               Widowed
## 1082                                Single
## 1083                                Single
## 1084                                Single
## 1085                                Single
## 1086                                Single
## 1087                                Single
## 1088                                Single
## 1089                                Single
## 1090                                Single
## 1091                                Single
## 1092                               Widowed
## 1093                               Widowed
## 1094                               Widowed
## 1095                                Single
## 1096                                Single
## 1097                                Single
## 1098                                Single
## 1099                               Widowed
## 1100                                Single
## 1101                               Widowed
## 1102                                Single
## 1103                                Single
## 1104                                Single
## 1105                                Single
## 1106                               Widowed
## 1107                                Single
## 1108                                Single
## 1109                                Single
## 1110                                Single
## 1111                                Single
## 1112                                Single
## 1113                                Single
## 1114                                Single
## 1115                                Single
## 1116                                Single
## 1117                                Single
## 1118                               Widowed
## 1119                                Single
## 1120                                Single
## 1121                                Single
## 1122                                Single
## 1123                                Single
## 1124                                Single
## 1125                               Widowed
## 1126                                Single
## 1127                                Single
## 1128                                Single
## 1129                                Single
## 1130                                Single
## 1131                                Single
## 1132                               Widowed
## 1133                               Widowed
## 1134                                Single
## 1135                                Single
## 1136                                Single
## 1137                               Widowed
## 1138                                Single
## 1139                                Single
## 1140                                Single
## 1141                                Single
## 1142                                Single
## 1143                                Single
## 1144                                Single
## 1145                                Single
## 1146                                Single
## 1147                                Single
## 1148                                Single
## 1149                                Single
## 1150                                Single
## 1151                                Single
## 1152                                Single
## 1153                                Single
## 1154                                Single
## 1155                                Single
## 1156                                Single
## 1157                                Single
## 1158                                Single
## 1159                                Single
## 1160                                Single
## 1161                                Single
## 1162                                Single
## 1163                                Single
## 1164                                Single
## 1165                                Single
## 1166                                Single
## 1167                                Single
## 1168                                Single
## 1169                                Single
## 1170                                Single
## 1171                                Single
## 1172                               Widowed
## 1173                                Single
## 1174                                Single
## 1175                                Single
## 1176                                Single
## 1177                                Single
## 1178                               Widowed
## 1179                                Single
## 1180                                Single
## 1181                               Widowed
## 1182                                Single
## 1183                                Single
## 1184                                Single
## 1185                                Single
## 1186                                Single
## 1187                                Single
## 1188                                Single
## 1189                               Widowed
## 1190                                Single
## 1191                               Widowed
## 1192                                Single
## 1193                                Single
## 1194                                Single
## 1195                                Single
## 1196                                Single
## 1197                                Single
## 1198                                Single
## 1199                               Widowed
## 1200                                Single
## 1201                                Single
## 1202                                Single
## 1203                                Single
## 1204                                Single
## 1205                                Single
## 1206                                Single
## 1207                                Single
## 1208                                Single
## 1209                                Single
## 1210                                Single
## 1211                                Single
## 1212                                Single
## 1213                               Widowed
## 1214                                Single
## 1215                                Single
## 1216                                Single
## 1217                               Widowed
## 1218                                Single
## 1219                                Single
## 1220                                Single
## 1221                                Single
## 1222                                Single
## 1223                                Single
## 1224                                Single
## 1225                                Single
## 1226                                Single
## 1227                                Single
## 1228                                Single
## 1229                                Single
## 1230                                Single
## 1231                                Single
## 1232                                Single
## 1233                                Single
## 1234                                Single
## 1235                                Single
## 1236                                Single
## 1237                                Single
## 1238                                Single
## 1239                                Single
## 1240                                Single
## 1241                                Single
## 1242                                Single
## 1243                                Single
## 1244                                Single
## 1245                                Single
## 1246                                Single
## 1247                                Single
## 1248                                Single
## 1249                                Single
## 1250                                Single
## 1251                                Single
## 1252                                Single
## 1253                                Single
## 1254                                Single
## 1255                                Single
## 1256                                Single
## 1257                                Single
## 1258                                Single
## 1259                                Single
## 1260                                Single
## 1261                                Single
## 1262                                Single
## 1263                               Widowed
## 1264                                Single
## 1265                                Single
## 1266                                Single
## 1267                                Single
## 1268                                Single
## 1269                                Single
## 1270                                Single
## 1271                                Single
## 1272                                Single
## 1273                                Single
## 1274                               Widowed
## 1275                                Single
## 1276                                Single
## 1277                                Single
## 1278                                Single
## 1279                                Single
## 1280                                Single
## 1281                                Single
## 1282                                Single
## 1283                                Single
## 1284                                Single
## 1285                                Single
## 1286                               Widowed
## 1287                                Single
## 1288                                Single
## 1289                                Single
## 1290                                Single
## 1291                               Widowed
## 1292                                Single
## 1293                                Single
## 1294                                Single
## 1295                                Single
## 1296                                Single
## 1297                               Widowed
## 1298                                Single
## 1299                               Widowed
## 1300                                Single
## 1301                               Widowed
## 1302                                Single
## 1303                                Single
## 1304                                Single
## 1305                                Single
## 1306                                Single
## 1307                                Single
## 1308                               Widowed
## 1309                                Single
## 1310                                Single
## 1311                                Single
## 1312                                Single
## 1313                                Single
## 1314                                Single
## 1315                                Single
## 1316                                Single
## 1317                                Single
## 1318                                Single
## 1319                                Single
## 1320                                Single
## 1321                                Single
## 1322                                Single
## 1323                                Single
## 1324                                Single
## 1325                                Single
## 1326                                Single
## 1327                                Single
## 1328                                Single
## 1329                                Single
## 1330                                Single
## 1331                                Single
## 1332                                Single
## 1333                                Single
## 1334                                Single
## 1335                                Single
## 1336                                Single
## 1337                                Single
## 1338                                Single
## 1339                                Single
## 1340                                Single
## 1341                                Single
## 1342                                Single
## 1343                                Single
## 1344                                Single
## 1345                                Single
## 1346                                Single
## 1347                                Single
## 1348                                Single
## 1349                                Single
## 1350                                Single
## 1351                                Single
## 1352                               Widowed
## 1353                                Single
## 1354                               Widowed
## 1355                                Single
## 1356                                Single
## 1357                                Single
## 1358                                Single
## 1359                                Single
## 1360                               Widowed
## 1361                                Single
## 1362                                Single
## 1363                                Single
## 1364                                Single
## 1365                                Single
## 1366                               Widowed
## 1367                                Single
## 1368                                Single
## 1369                                Single
## 1370                                Single
## 1371                                Single
## 1372                                Single
## 1373                                Single
## 1374                                Single
## 1375                               Widowed
## 1376                                Single
## 1377                                Single
## 1378                                Single
## 1379                                Single
## 1380                                Single
## 1381                                Single
## 1382                                Single
## 1383                                Single
## 1384                                Single
## 1385                                Single
## 1386                                Single
## 1387                                Single
## 1388                                Single
## 1389                               Widowed
## 1390                                Single
## 1391                                Single
## 1392                                Single
## 1393                                Single
## 1394                                Single
## 1395                                Single
## 1396                                Single
## 1397                                Single
## 1398                                Single
## 1399                                Single
## 1400                                Single
## 1401                                Single
## 1402                                Single
## 1403                                Single
## 1404                                Single
## 1405                               Widowed
## 1406                                Single
## 1407                                Single
## 1408                                Single
## 1409                                Single
## 1410                                Single
## 1411                                Single
## 1412                                Single
## 1413                                Single
## 1414                                Single
## 1415                                Single
## 1416                                Single
## 1417                                Single
## 1418                                Single
## 1419                                Single
## 1420                                Single
## 1421                                Single
## 1422                               Widowed
## 1423                                Single
## 1424                                Single
## 1425                                Single
## 1426                                Single
## 1427                                Single
## 1428                                Single
## 1429                                Single
## 1430                                Single
## 1431                                Single
## 1432                                Single
## 1433                                Single
## 1434                                Single
## 1435                                Single
## 1436                                Single
## 1437                                Single
## 1438                                Single
## 1439                                Single
## 1440                               Widowed
## 1441                                Single
## 1442                                Single
## 1443                                Single
## 1444                                Single
## 1445                                Single
## 1446                                Single
## 1447                                Single
## 1448                                Single
## 1449                                Single
## 1450                                Single
## 1451                                Single
## 1452                                Single
## 1453                                Single
## 1454                                Single
## 1455                                Single
## 1456                                Single
## 1457                                Single
## 1458                                Single
## 1459                                Single
## 1460                                Single
## 1461                               Widowed
## 1462                                Single
## 1463                                Single
## 1464                                Single
## 1465                                Single
## 1466                                Single
## 1467                                Single
## 1468                                Single
## 1469                                Single
## 1470                               Widowed
## 1471                                Single
## 1472                                Single
## 1473                                Single
## 1474                                Single
## 1475                                Single
## 1476                                Single
## 1477                                Single
## 1478                                Single
## 1479                                Single
## 1480                                Single
## 1481                                Single
## 1482                                Single
## 1483                                Single
## 1484                                Single
## 1485                                Single
## 1486                               Widowed
## 1487                                Single
## 1488                                Single
## 1489                                Single
## 1490                               Widowed
## 1491                                Single
## 1492                                Single
## 1493                                Single
## 1494                                Single
## 1495                                Single
## 1496                               Widowed
## 1497                                Single
## 1498                                Single
## 1499                                Single
## 1500                                Single
## 1501                                Single
## 1502                               Widowed
## 1503                                Single
## 1504                               Widowed
## 1505                                Single
## 1506                                Single
## 1507                                Single
## 1508                                Single
## 1509                                Single
## 1510                                Single
## 1511                                Single
## 1512                               Widowed
## 1513                                Single
## 1514                                Single
## 1515                                Single
## 1516                                Single
## 1517                                Single
## 1518                                Single
## 1519                               Widowed
## 1520                                Single
## 1521                                Single
## 1522                                Single
## 1523                                Single
## 1524                                Single
## 1525                                Single
## 1526                                Single
## 1527                                Single
## 1528                                Single
## 1529                                Single
## 1530                                Single
## 1531                                Single
## 1532                                Single
## 1533                                Single
## 1534                                Single
## 1535                                Single
## 1536                                Single
## 1537                                Single
## 1538                                Single
## 1539                                Single
## 1540                                Single
## 1541                                Single
## 1542                                Single
## 1543                                Single
## 1544                                Single
## 1545                                Single
## 1546                                Single
## 1547                                Single
## 1548                                Single
## 1549                               Widowed
## 1550                                Single
## 1551                                Single
## 1552                                Single
## 1553                                Single
## 1554                                Single
## 1555                                Single
## 1556                                Single
## 1557                                Single
## 1558                                Single
## 1559                                Single
## 1560                               Widowed
## 1561                               Widowed
## 1562                                Single
## 1563                               Widowed
## 1564                                Single
## 1565                                Single
## 1566                                Single
## 1567                                Single
## 1568                               Widowed
## 1569                                Single
## 1570                                Single
## 1571                                Single
## 1572                                Single
## 1573                                Single
## 1574                                Single
## 1575                                Single
## 1576                                Single
## 1577                                Single
## 1578                                Single
## 1579                                Single
## 1580                                Single
## 1581                                Single
## 1582                                Single
## 1583                                Single
## 1584                                Single
## 1585                                Single
## 1586                                Single
## 1587                                Single
## 1588                                Single
## 1589                                Single
## 1590                               Widowed
## 1591                                Single
## 1592                                Single
## 1593                                Single
## 1594                                Single
## 1595                                Single
## 1596                                Single
## 1597                               Widowed
## 1598                                Single
## 1599                                Single
## 1600                                Single
## 1601                                Single
## 1602                                Single
## 1603                                Single
## 1604                                Single
## 1605                                Single
## 1606                                Single
## 1607                                Single
## 1608                               Widowed
## 1609                                Single
## 1610                                Single
## 1611                                Single
## 1612                                Single
## 1613                                Single
## 1614                                Single
## 1615                                Single
## 1616                                Single
## 1617                                Single
## 1618                                Single
## 1619                                Single
## 1620                                Single
## 1621                                Single
## 1622                               Widowed
## 1623                                Single
## 1624                                Single
## 1625                                Single
## 1626                                Single
## 1627                               Widowed
## 1628                                Single
## 1629                                Single
## 1630                                Single
## 1631                                Single
## 1632                                Single
## 1633                                Single
## 1634                                Single
## 1635                                Single
## 1636                                Single
## 1637                                Single
## 1638                                Single
## 1639                                Single
## 1640                                Single
## 1641                                Single
## 1642                                Single
## 1643                                Single
## 1644                                Single
## 1645                                Single
## 1646                               Widowed
## 1647                                Single
## 1648                                Single
## 1649                                Single
## 1650                                Single
## 1651                                Single
## 1652                                Single
## 1653                               Widowed
## 1654                                Single
## 1655                                Single
## 1656                                Single
## 1657                                Single
## 1658                                Single
## 1659                                Single
## 1660                                Single
## 1661                                Single
## 1662                                Single
## 1663                                Single
## 1664                                Single
## 1665                                Single
## 1666                                Single
## 1667                                Single
## 1668                                Single
## 1669                                Single
## 1670                                Single
## 1671                                Single
## 1672                                Single
## 1673                                Single
## 1674                                Single
## 1675                                Single
## 1676                                Single
## 1677                                Single
## 1678                                Single
## 1679                                Single
## 1680                                Single
## 1681                                Single
## 1682                                Single
## 1683                                Single
## 1684                                Single
## 1685                                Single
## 1686                                Single
## 1687                                Single
## 1688                                Single
## 1689                                Single
## 1690                                Single
## 1691                                Single
## 1692                               Widowed
## 1693                                Single
## 1694                                Single
## 1695                                Single
## 1696                                Single
## 1697                               Widowed
## 1698                               Widowed
## 1699                                Single
## 1700                                Single
## 1701                               Widowed
## 1702                                Single
## 1703                                Single
## 1704                                Single
## 1705                                Single
## 1706                                Single
## 1707                                Single
## 1708                                Single
## 1709                                Single
## 1710                                Single
## 1711                                Single
## 1712                                Single
## 1713                                Single
## 1714                                Single
## 1715                                Single
## 1716                                Single
## 1717                                Single
## 1718                                Single
## 1719                                Single
## 1720                                Single
## 1721                                Single
## 1722                               Widowed
## 1723                                Single
## 1724                                Single
## 1725                                Single
## 1726                                Single
## 1727                                Single
## 1728                                Single
## 1729                               Widowed
## 1730                                Single
## 1731                                Single
## 1732                                Single
## 1733                                Single
## 1734                                Single
## 1735                                Single
## 1736                                Single
## 1737                                Single
## 1738                                Single
## 1739                                Single
## 1740                                Single
## 1741                                Single
## 1742                               Widowed
## 1743                                Single
## 1744                                Single
## 1745                                Single
## 1746                                Single
## 1747                                Single
## 1748                               Widowed
## 1749                                Single
## 1750                                Single
## 1751                                Single
## 1752                                Single
## 1753                                Single
## 1754                                Single
## 1755                                Single
## 1756                                Single
## 1757                                Single
## 1758                               Widowed
## 1759                                Single
## 1760                                Single
## 1761                               Widowed
## 1762                                Single
## 1763                                Single
## 1764                                Single
## 1765                                Single
## 1766                                Single
## 1767                               Widowed
## 1768                                Single
## 1769                                Single
## 1770                                Single
## 1771                                Single
## 1772                                Single
## 1773                                Single
## 1774                                Single
## 1775                                Single
## 1776                                Single
## 1777                                Single
## 1778                                Single
## 1779                                Single
## 1780                                Single
## 1781                                Single
## 1782                               Widowed
## 1783                                Single
## 1784                                Single
## 1785                               Widowed
## 1786                                Single
## 1787                                Single
## 1788                                Single
## 1789                                Single
## 1790                               Widowed
## 1791                                Single
## 1792                                Single
## 1793                               Widowed
## 1794                                Single
## 1795                                Single
## 1796                                Single
## 1797                                Single
## 1798                                Single
## 1799                                Single
## 1800                                Single
## 1801                               Widowed
## 1802                               Widowed
## 1803                               Widowed
## 1804                                Single
## 1805                                Single
## 1806                                Single
## 1807                                Single
## 1808                                Single
## 1809                                Single
## 1810                                Single
## 1811                                Single
## 1812                                Single
## 1813                                Single
## 1814                                Single
## 1815                                Single
## 1816                                Single
## 1817                                Single
## 1818                                Single
## 1819                                Single
## 1820                                Single
## 1821                                Single
## 1822                                Single
## 1823                                Single
## 1824                                Single
## 1825                               Widowed
## 1826                                Single
## 1827                                Single
## 1828                                Single
## 1829                                Single
## 1830                                Single
## 1831                                Single
## 1832                               Widowed
## 1833                                Single
## 1834                                Single
## 1835                                Single
## 1836                                Single
## 1837                                Single
## 1838                                Single
## 1839                                Single
## 1840                                Single
## 1841                                Single
## 1842                                Single
## 1843                                Single
## 1844                                Single
## 1845                                Single
## 1846                                Single
## 1847                                Single
## 1848                                Single
## 1849                                Single
## 1850                                Single
## 1851                                Single
## 1852                                Single
## 1853                                Single
## 1854                                Single
## 1855                                Single
## 1856                                Single
## 1857                                Single
## 1858                                Single
## 1859                                Single
## 1860                                Single
## 1861                                Single
## 1862                               Widowed
## 1863                                Single
## 1864                                Single
## 1865                                Single
## 1866                                Single
## 1867                               Widowed
## 1868                                Single
## 1869                                Single
## 1870                                Single
## 1871                                Single
## 1872                                Single
## 1873                                Single
## 1874                                Single
## 1875                                Single
## 1876                                Single
## 1877                                Single
## 1878                               Widowed
## 1879                                Single
## 1880                                Single
## 1881                                Single
## 1882                                Single
## 1883                                Single
## 1884                                Single
## 1885                                Single
## 1886                                Single
## 1887                                Single
## 1888                                Single
## 1889                                Single
## 1890                                Single
## 1891                               Widowed
## 1892                                Single
## 1893                                Single
## 1894                                Single
## 1895                                Single
## 1896                                Single
## 1897                                Single
## 1898                                Single
## 1899                                Single
## 1900                                Single
## 1901                                Single
## 1902                                Single
## 1903                                Single
## 1904                                Single
## 1905                                Single
## 1906                               Widowed
## 1907                                Single
## 1908                                Single
## 1909                                Single
## 1910                                Single
## 1911                                Single
## 1912                                Single
## 1913                                Single
## 1914                                Single
## 1915                                Single
## 1916                                Single
## 1917                                Single
## 1918                               Widowed
## 1919                                Single
## 1920                                Single
## 1921                                Single
## 1922                                Single
## 1923                                Single
## 1924                                Single
## 1925                                Single
## 1926                               Widowed
## 1927                               Widowed
## 1928                                Single
## 1929                               Widowed
## 1930                                Single
## 1931                                Single
## 1932                                Single
## 1933                                Single
## 1934                                Single
## 1935                                Single
## 1936                                Single
## 1937                                Single
## 1938                                Single
## 1939                                Single
## 1940                                Single
## 1941                               Widowed
## 1942                                Single
## 1943                               Widowed
## 1944                                Single
## 1945                                Single
## 1946                                Single
## 1947                                Single
## 1948                                Single
## 1949                                Single
## 1950                                Single
## 1951                                Single
## 1952                                Single
## 1953                               Widowed
## 1954                                Single
## 1955                               Widowed
## 1956                                Single
## 1957                                Single
## 1958                                Single
## 1959                               Widowed
## 1960                                Single
## 1961                                Single
## 1962                                Single
## 1963                                Single
## 1964                                Single
## 1965                                Single
## 1966                                Single
## 1967                                Single
## 1968                                Single
## 1969                                Single
## 1970                                Single
## 1971                                Single
## 1972                                Single
## 1973                                Single
## 1974                                Single
## 1975                                Single
## 1976                                Single
## 1977                                Single
## 1978                                Single
## 1979                                Single
## 1980                                Single
## 1981                                Single
## 1982                                Single
## 1983                                Single
## 1984                                Single
## 1985                                Single
## 1986                                Single
## 1987                                Single
## 1988                                Single
## 1989                                Single
## 1990                                Single
## 1991                                Single
## 1992                                Single
## 1993                                Single
## 1994                                Single
## 1995                                Single
## 1996                                Single
## 1997                               Widowed
## 1998                                Single
## 1999                                Single
## 2000                                Single
## 2001                                Single
## 2002                               Widowed
## 2003                                Single
## 2004                                Single
## 2005                                Single
## 2006                                Single
## 2007                               Widowed
## 2008                                Single
## 2009                                Single
## 2010                                Single
## 2011                                Single
## 2012                               Widowed
## 2013                                Single
## 2014                                Single
## 2015                                Single
## 2016                                Single
## 2017                                Single
## 2018                                Single
## 2019                                Single
## 2020                                Single
## 2021                                Single
## 2022                                Single
## 2023                                Single
## 2024                                Single
## 2025                                Single
## 2026                                Single
## 2027                                Single
## 2028                                Single
## 2029                                Single
## 2030                                Single
## 2031                                Single
## 2032                                Single
## 2033                                Single
## 2034                                Single
## 2035                                Single
## 2036                                Single
## 2037                                Single
## 2038                                Single
## 2039                                Single
## 2040                                Single
## 2041                                Single
## 2042                                Single
## 2043                                Single
## 2044                                Single
## 2045                                Single
## 2046                                Single
## 2047                                Single
## 2048                                Single
## 2049                               Widowed
## 2050                                Single
## 2051                                Single
## 2052                               Widowed
## 2053                               Widowed
## 2054                                Single
## 2055                                Single
## 2056                                Single
## 2057                                Single
## 2058                                Single
## 2059                               Widowed
## 2060                                Single
## 2061                                Single
## 2062                                Single
## 2063                                Single
## 2064                                Single
## 2065                                Single
## 2066                                Single
## 2067                               Widowed
## 2068                                Single
## 2069                                Single
## 2070                                Single
## 2071                                Single
## 2072                                Single
## 2073                                Single
## 2074                                Single
## 2075                                Single
## 2076                               Widowed
## 2077                                Single
## 2078                                Single
## 2079                                Single
## 2080                                Single
## 2081                                Single
## 2082                                Single
## 2083                                Single
## 2084                                Single
## 2085                                Single
## 2086                                Single
## 2087                                Single
## 2088                                Single
## 2089                                Single
## 2090                                Single
## 2091                                Single
## 2092                                Single
## 2093                                Single
## 2094                                Single
## 2095                                Single
## 2096                                Single
## 2097                                Single
## 2098                                Single
## 2099                                Single
## 2100                               Widowed
## 2101                                Single
## 2102                                Single
## 2103                                Single
## 2104                                Single
## 2105                                Single
## 2106                                Single
## 2107                               Widowed
## 2108                                Single
## 2109                                Single
## 2110                               Widowed
## 2111                                Single
## 2112                                Single
## 2113                               Widowed
## 2114                                Single
## 2115                                Single
## 2116                                Single
## 2117                                Single
## 2118                                Single
## 2119                                Single
## 2120                                Single
## 2121                                Single
## 2122                               Widowed
## 2123                                Single
## 2124                                Single
## 2125                               Widowed
## 2126                                Single
## 2127                                Single
##      if_else(Q4 == 1, "No formal education", "Some primary")
## 1                                        No formal education
## 2                                               Some primary
## 3                                               Some primary
## 4                                               Some primary
## 5                                        No formal education
## 6                                               Some primary
## 7                                               Some primary
## 8                                               Some primary
## 9                                               Some primary
## 10                                              Some primary
## 11                                              Some primary
## 12                                              Some primary
## 13                                              Some primary
## 14                                              Some primary
## 15                                              Some primary
## 16                                              Some primary
## 17                                              Some primary
## 18                                              Some primary
## 19                                              Some primary
## 20                                              Some primary
## 21                                              Some primary
## 22                                              Some primary
## 23                                       No formal education
## 24                                       No formal education
## 25                                              Some primary
## 26                                              Some primary
## 27                                              Some primary
## 28                                              Some primary
## 29                                              Some primary
## 30                                              Some primary
## 31                                       No formal education
## 32                                              Some primary
## 33                                              Some primary
## 34                                              Some primary
## 35                                       No formal education
## 36                                       No formal education
## 37                                              Some primary
## 38                                              Some primary
## 39                                              Some primary
## 40                                              Some primary
## 41                                              Some primary
## 42                                       No formal education
## 43                                              Some primary
## 44                                       No formal education
## 45                                              Some primary
## 46                                              Some primary
## 47                                              Some primary
## 48                                              Some primary
## 49                                              Some primary
## 50                                              Some primary
## 51                                       No formal education
## 52                                              Some primary
## 53                                              Some primary
## 54                                              Some primary
## 55                                              Some primary
## 56                                              Some primary
## 57                                       No formal education
## 58                                       No formal education
## 59                                              Some primary
## 60                                              Some primary
## 61                                              Some primary
## 62                                              Some primary
## 63                                              Some primary
## 64                                              Some primary
## 65                                       No formal education
## 66                                              Some primary
## 67                                              Some primary
## 68                                              Some primary
## 69                                              Some primary
## 70                                              Some primary
## 71                                       No formal education
## 72                                              Some primary
## 73                                              Some primary
## 74                                              Some primary
## 75                                              Some primary
## 76                                              Some primary
## 77                                              Some primary
## 78                                       No formal education
## 79                                              Some primary
## 80                                              Some primary
## 81                                              Some primary
## 82                                              Some primary
## 83                                              Some primary
## 84                                              Some primary
## 85                                              Some primary
## 86                                              Some primary
## 87                                              Some primary
## 88                                              Some primary
## 89                                              Some primary
## 90                                              Some primary
## 91                                              Some primary
## 92                                              Some primary
## 93                                              Some primary
## 94                                              Some primary
## 95                                              Some primary
## 96                                              Some primary
## 97                                       No formal education
## 98                                              Some primary
## 99                                              Some primary
## 100                                             Some primary
## 101                                             Some primary
## 102                                             Some primary
## 103                                             Some primary
## 104                                             Some primary
## 105                                             Some primary
## 106                                      No formal education
## 107                                             Some primary
## 108                                             Some primary
## 109                                             Some primary
## 110                                             Some primary
## 111                                             Some primary
## 112                                             Some primary
## 113                                             Some primary
## 114                                      No formal education
## 115                                             Some primary
## 116                                             Some primary
## 117                                             Some primary
## 118                                             Some primary
## 119                                             Some primary
## 120                                             Some primary
## 121                                             Some primary
## 122                                             Some primary
## 123                                             Some primary
## 124                                             Some primary
## 125                                             Some primary
## 126                                             Some primary
## 127                                             Some primary
## 128                                             Some primary
## 129                                             Some primary
## 130                                             Some primary
## 131                                             Some primary
## 132                                             Some primary
## 133                                             Some primary
## 134                                             Some primary
## 135                                             Some primary
## 136                                             Some primary
## 137                                      No formal education
## 138                                             Some primary
## 139                                             Some primary
## 140                                      No formal education
## 141                                             Some primary
## 142                                             Some primary
## 143                                             Some primary
## 144                                      No formal education
## 145                                             Some primary
## 146                                             Some primary
## 147                                             Some primary
## 148                                             Some primary
## 149                                             Some primary
## 150                                      No formal education
## 151                                             Some primary
## 152                                      No formal education
## 153                                             Some primary
## 154                                             Some primary
## 155                                             Some primary
## 156                                             Some primary
## 157                                      No formal education
## 158                                             Some primary
## 159                                             Some primary
## 160                                             Some primary
## 161                                             Some primary
## 162                                             Some primary
## 163                                             Some primary
## 164                                      No formal education
## 165                                             Some primary
## 166                                             Some primary
## 167                                             Some primary
## 168                                      No formal education
## 169                                             Some primary
## 170                                             Some primary
## 171                                             Some primary
## 172                                             Some primary
## 173                                             Some primary
## 174                                             Some primary
## 175                                             Some primary
## 176                                             Some primary
## 177                                             Some primary
## 178                                             Some primary
## 179                                             Some primary
## 180                                             Some primary
## 181                                             Some primary
## 182                                             Some primary
## 183                                             Some primary
## 184                                             Some primary
## 185                                      No formal education
## 186                                      No formal education
## 187                                             Some primary
## 188                                      No formal education
## 189                                             Some primary
## 190                                             Some primary
## 191                                             Some primary
## 192                                             Some primary
## 193                                             Some primary
## 194                                             Some primary
## 195                                      No formal education
## 196                                             Some primary
## 197                                             Some primary
## 198                                             Some primary
## 199                                             Some primary
## 200                                             Some primary
## 201                                             Some primary
## 202                                             Some primary
## 203                                             Some primary
## 204                                             Some primary
## 205                                             Some primary
## 206                                             Some primary
## 207                                      No formal education
## 208                                             Some primary
## 209                                             Some primary
## 210                                      No formal education
## 211                                             Some primary
## 212                                             Some primary
## 213                                             Some primary
## 214                                      No formal education
## 215                                             Some primary
## 216                                             Some primary
## 217                                             Some primary
## 218                                      No formal education
## 219                                             Some primary
## 220                                             Some primary
## 221                                             Some primary
## 222                                             Some primary
## 223                                             Some primary
## 224                                             Some primary
## 225                                             Some primary
## 226                                             Some primary
## 227                                      No formal education
## 228                                      No formal education
## 229                                             Some primary
## 230                                      No formal education
## 231                                             Some primary
## 232                                             Some primary
## 233                                             Some primary
## 234                                             Some primary
## 235                                             Some primary
## 236                                             Some primary
## 237                                             Some primary
## 238                                             Some primary
## 239                                             Some primary
## 240                                             Some primary
## 241                                             Some primary
## 242                                             Some primary
## 243                                             Some primary
## 244                                             Some primary
## 245                                             Some primary
## 246                                             Some primary
## 247                                             Some primary
## 248                                             Some primary
## 249                                      No formal education
## 250                                             Some primary
## 251                                             Some primary
## 252                                             Some primary
## 253                                             Some primary
## 254                                      No formal education
## 255                                             Some primary
## 256                                             Some primary
## 257                                      No formal education
## 258                                             Some primary
## 259                                             Some primary
## 260                                             Some primary
## 261                                             Some primary
## 262                                             Some primary
## 263                                             Some primary
## 264                                             Some primary
## 265                                             Some primary
## 266                                             Some primary
## 267                                             Some primary
## 268                                             Some primary
## 269                                             Some primary
## 270                                             Some primary
## 271                                      No formal education
## 272                                             Some primary
## 273                                             Some primary
## 274                                      No formal education
## 275                                             Some primary
## 276                                             Some primary
## 277                                             Some primary
## 278                                             Some primary
## 279                                             Some primary
## 280                                             Some primary
## 281                                             Some primary
## 282                                             Some primary
## 283                                      No formal education
## 284                                      No formal education
## 285                                             Some primary
## 286                                      No formal education
## 287                                             Some primary
## 288                                      No formal education
## 289                                      No formal education
## 290                                             Some primary
## 291                                             Some primary
## 292                                             Some primary
## 293                                      No formal education
## 294                                             Some primary
## 295                                      No formal education
## 296                                             Some primary
## 297                                             Some primary
## 298                                      No formal education
## 299                                             Some primary
## 300                                             Some primary
## 301                                             Some primary
## 302                                             Some primary
## 303                                             Some primary
## 304                                             Some primary
## 305                                      No formal education
## 306                                             Some primary
## 307                                             Some primary
## 308                                      No formal education
## 309                                             Some primary
## 310                                             Some primary
## 311                                             Some primary
## 312                                             Some primary
## 313                                             Some primary
## 314                                             Some primary
## 315                                             Some primary
## 316                                             Some primary
## 317                                      No formal education
## 318                                             Some primary
## 319                                             Some primary
## 320                                             Some primary
## 321                                             Some primary
## 322                                             Some primary
## 323                                             Some primary
## 324                                             Some primary
## 325                                             Some primary
## 326                                             Some primary
## 327                                             Some primary
## 328                                             Some primary
## 329                                             Some primary
## 330                                      No formal education
## 331                                             Some primary
## 332                                             Some primary
## 333                                             Some primary
## 334                                             Some primary
## 335                                             Some primary
## 336                                             Some primary
## 337                                             Some primary
## 338                                             Some primary
## 339                                             Some primary
## 340                                             Some primary
## 341                                             Some primary
## 342                                             Some primary
## 343                                             Some primary
## 344                                             Some primary
## 345                                             Some primary
## 346                                             Some primary
## 347                                             Some primary
## 348                                      No formal education
## 349                                             Some primary
## 350                                      No formal education
## 351                                             Some primary
## 352                                             Some primary
## 353                                             Some primary
## 354                                             Some primary
## 355                                      No formal education
## 356                                             Some primary
## 357                                      No formal education
## 358                                      No formal education
## 359                                             Some primary
## 360                                             Some primary
## 361                                             Some primary
## 362                                             Some primary
## 363                                             Some primary
## 364                                      No formal education
## 365                                             Some primary
## 366                                             Some primary
## 367                                             Some primary
## 368                                             Some primary
## 369                                             Some primary
## 370                                             Some primary
## 371                                             Some primary
## 372                                             Some primary
## 373                                      No formal education
## 374                                             Some primary
## 375                                             Some primary
## 376                                             Some primary
## 377                                             Some primary
## 378                                             Some primary
## 379                                             Some primary
## 380                                             Some primary
## 381                                      No formal education
## 382                                             Some primary
## 383                                             Some primary
## 384                                             Some primary
## 385                                             Some primary
## 386                                             Some primary
## 387                                      No formal education
## 388                                             Some primary
## 389                                             Some primary
## 390                                             Some primary
## 391                                             Some primary
## 392                                             Some primary
## 393                                      No formal education
## 394                                             Some primary
## 395                                      No formal education
## 396                                             Some primary
## 397                                      No formal education
## 398                                             Some primary
## 399                                             Some primary
## 400                                             Some primary
## 401                                             Some primary
## 402                                             Some primary
## 403                                             Some primary
## 404                                      No formal education
## 405                                             Some primary
## 406                                             Some primary
## 407                                             Some primary
## 408                                             Some primary
## 409                                             Some primary
## 410                                      No formal education
## 411                                             Some primary
## 412                                             Some primary
## 413                                             Some primary
## 414                                             Some primary
## 415                                             Some primary
## 416                                             Some primary
## 417                                      No formal education
## 418                                             Some primary
## 419                                             Some primary
## 420                                             Some primary
## 421                                             Some primary
## 422                                             Some primary
## 423                                             Some primary
## 424                                      No formal education
## 425                                             Some primary
## 426                                             Some primary
## 427                                             Some primary
## 428                                      No formal education
## 429                                             Some primary
## 430                                             Some primary
## 431                                             Some primary
## 432                                             Some primary
## 433                                             Some primary
## 434                                      No formal education
## 435                                             Some primary
## 436                                             Some primary
## 437                                             Some primary
## 438                                             Some primary
## 439                                             Some primary
## 440                                             Some primary
## 441                                             Some primary
## 442                                             Some primary
## 443                                             Some primary
## 444                                             Some primary
## 445                                      No formal education
## 446                                             Some primary
## 447                                             Some primary
## 448                                             Some primary
## 449                                             Some primary
## 450                                             Some primary
## 451                                             Some primary
## 452                                      No formal education
## 453                                             Some primary
## 454                                             Some primary
## 455                                             Some primary
## 456                                             Some primary
## 457                                             Some primary
## 458                                             Some primary
## 459                                             Some primary
## 460                                             Some primary
## 461                                             Some primary
## 462                                             Some primary
## 463                                             Some primary
## 464                                      No formal education
## 465                                             Some primary
## 466                                             Some primary
## 467                                      No formal education
## 468                                             Some primary
## 469                                             Some primary
## 470                                             Some primary
## 471                                             Some primary
## 472                                             Some primary
## 473                                             Some primary
## 474                                             Some primary
## 475                                             Some primary
## 476                                             Some primary
## 477                                      No formal education
## 478                                             Some primary
## 479                                             Some primary
## 480                                      No formal education
## 481                                             Some primary
## 482                                             Some primary
## 483                                             Some primary
## 484                                             Some primary
## 485                                             Some primary
## 486                                      No formal education
## 487                                      No formal education
## 488                                      No formal education
## 489                                             Some primary
## 490                                             Some primary
## 491                                             Some primary
## 492                                      No formal education
## 493                                             Some primary
## 494                                             Some primary
## 495                                      No formal education
## 496                                             Some primary
## 497                                             Some primary
## 498                                             Some primary
## 499                                             Some primary
## 500                                      No formal education
## 501                                             Some primary
## 502                                             Some primary
## 503                                             Some primary
## 504                                             Some primary
## 505                                             Some primary
## 506                                             Some primary
## 507                                             Some primary
## 508                                             Some primary
## 509                                      No formal education
## 510                                             Some primary
## 511                                      No formal education
## 512                                             Some primary
## 513                                             Some primary
## 514                                             Some primary
## 515                                             Some primary
## 516                                             Some primary
## 517                                             Some primary
## 518                                             Some primary
## 519                                             Some primary
## 520                                             Some primary
## 521                                             Some primary
## 522                                             Some primary
## 523                                             Some primary
## 524                                             Some primary
## 525                                             Some primary
## 526                                             Some primary
## 527                                             Some primary
## 528                                             Some primary
## 529                                      No formal education
## 530                                             Some primary
## 531                                      No formal education
## 532                                      No formal education
## 533                                             Some primary
## 534                                             Some primary
## 535                                             Some primary
## 536                                             Some primary
## 537                                      No formal education
## 538                                             Some primary
## 539                                             Some primary
## 540                                             Some primary
## 541                                             Some primary
## 542                                             Some primary
## 543                                             Some primary
## 544                                             Some primary
## 545                                             Some primary
## 546                                             Some primary
## 547                                             Some primary
## 548                                             Some primary
## 549                                             Some primary
## 550                                      No formal education
## 551                                             Some primary
## 552                                             Some primary
## 553                                             Some primary
## 554                                             Some primary
## 555                                             Some primary
## 556                                             Some primary
## 557                                             Some primary
## 558                                             Some primary
## 559                                      No formal education
## 560                                      No formal education
## 561                                             Some primary
## 562                                             Some primary
## 563                                      No formal education
## 564                                             Some primary
## 565                                             Some primary
## 566                                             Some primary
## 567                                      No formal education
## 568                                             Some primary
## 569                                      No formal education
## 570                                             Some primary
## 571                                             Some primary
## 572                                      No formal education
## 573                                      No formal education
## 574                                             Some primary
## 575                                             Some primary
## 576                                             Some primary
## 577                                             Some primary
## 578                                             Some primary
## 579                                             Some primary
## 580                                             Some primary
## 581                                             Some primary
## 582                                             Some primary
## 583                                             Some primary
## 584                                      No formal education
## 585                                      No formal education
## 586                                             Some primary
## 587                                             Some primary
## 588                                             Some primary
## 589                                             Some primary
## 590                                             Some primary
## 591                                             Some primary
## 592                                             Some primary
## 593                                             Some primary
## 594                                             Some primary
## 595                                             Some primary
## 596                                             Some primary
## 597                                             Some primary
## 598                                             Some primary
## 599                                             Some primary
## 600                                             Some primary
## 601                                             Some primary
## 602                                      No formal education
## 603                                             Some primary
## 604                                             Some primary
## 605                                             Some primary
## 606                                             Some primary
## 607                                             Some primary
## 608                                             Some primary
## 609                                             Some primary
## 610                                             Some primary
## 611                                             Some primary
## 612                                             Some primary
## 613                                             Some primary
## 614                                             Some primary
## 615                                             Some primary
## 616                                             Some primary
## 617                                             Some primary
## 618                                             Some primary
## 619                                             Some primary
## 620                                             Some primary
## 621                                      No formal education
## 622                                             Some primary
## 623                                             Some primary
## 624                                      No formal education
## 625                                             Some primary
## 626                                             Some primary
## 627                                      No formal education
## 628                                             Some primary
## 629                                             Some primary
## 630                                             Some primary
## 631                                             Some primary
## 632                                             Some primary
## 633                                      No formal education
## 634                                             Some primary
## 635                                      No formal education
## 636                                             Some primary
## 637                                             Some primary
## 638                                             Some primary
## 639                                             Some primary
## 640                                      No formal education
## 641                                             Some primary
## 642                                             Some primary
## 643                                             Some primary
## 644                                             Some primary
## 645                                             Some primary
## 646                                             Some primary
## 647                                             Some primary
## 648                                             Some primary
## 649                                             Some primary
## 650                                             Some primary
## 651                                             Some primary
## 652                                             Some primary
## 653                                             Some primary
## 654                                             Some primary
## 655                                             Some primary
## 656                                             Some primary
## 657                                             Some primary
## 658                                             Some primary
## 659                                             Some primary
## 660                                             Some primary
## 661                                             Some primary
## 662                                             Some primary
## 663                                             Some primary
## 664                                             Some primary
## 665                                      No formal education
## 666                                             Some primary
## 667                                             Some primary
## 668                                             Some primary
## 669                                      No formal education
## 670                                             Some primary
## 671                                             Some primary
## 672                                             Some primary
## 673                                             Some primary
## 674                                             Some primary
## 675                                             Some primary
## 676                                             Some primary
## 677                                             Some primary
## 678                                      No formal education
## 679                                             Some primary
## 680                                      No formal education
## 681                                             Some primary
## 682                                             Some primary
## 683                                             Some primary
## 684                                             Some primary
## 685                                             Some primary
## 686                                             Some primary
## 687                                             Some primary
## 688                                             Some primary
## 689                                             Some primary
## 690                                             Some primary
## 691                                             Some primary
## 692                                             Some primary
## 693                                      No formal education
## 694                                      No formal education
## 695                                             Some primary
## 696                                             Some primary
## 697                                      No formal education
## 698                                             Some primary
## 699                                      No formal education
## 700                                             Some primary
## 701                                             Some primary
## 702                                             Some primary
## 703                                             Some primary
## 704                                             Some primary
## 705                                             Some primary
## 706                                             Some primary
## 707                                      No formal education
## 708                                             Some primary
## 709                                             Some primary
## 710                                             Some primary
## 711                                             Some primary
## 712                                             Some primary
## 713                                             Some primary
## 714                                      No formal education
## 715                                             Some primary
## 716                                             Some primary
## 717                                             Some primary
## 718                                             Some primary
## 719                                             Some primary
## 720                                             Some primary
## 721                                             Some primary
## 722                                             Some primary
## 723                                             Some primary
## 724                                             Some primary
## 725                                             Some primary
## 726                                             Some primary
## 727                                             Some primary
## 728                                             Some primary
## 729                                             Some primary
## 730                                      No formal education
## 731                                             Some primary
## 732                                             Some primary
## 733                                             Some primary
## 734                                             Some primary
## 735                                             Some primary
## 736                                             Some primary
## 737                                             Some primary
## 738                                      No formal education
## 739                                             Some primary
## 740                                             Some primary
## 741                                             Some primary
## 742                                             Some primary
## 743                                             Some primary
## 744                                             Some primary
## 745                                      No formal education
## 746                                             Some primary
## 747                                             Some primary
## 748                                             Some primary
## 749                                      No formal education
## 750                                             Some primary
## 751                                             Some primary
## 752                                      No formal education
## 753                                      No formal education
## 754                                      No formal education
## 755                                             Some primary
## 756                                             Some primary
## 757                                             Some primary
## 758                                             Some primary
## 759                                             Some primary
## 760                                      No formal education
## 761                                             Some primary
## 762                                      No formal education
## 763                                             Some primary
## 764                                             Some primary
## 765                                             Some primary
## 766                                             Some primary
## 767                                             Some primary
## 768                                             Some primary
## 769                                             Some primary
## 770                                      No formal education
## 771                                             Some primary
## 772                                             Some primary
## 773                                      No formal education
## 774                                             Some primary
## 775                                             Some primary
## 776                                      No formal education
## 777                                             Some primary
## 778                                             Some primary
## 779                                             Some primary
## 780                                             Some primary
## 781                                             Some primary
## 782                                             Some primary
## 783                                             Some primary
## 784                                             Some primary
## 785                                             Some primary
## 786                                             Some primary
## 787                                             Some primary
## 788                                             Some primary
## 789                                             Some primary
## 790                                             Some primary
## 791                                             Some primary
## 792                                             Some primary
## 793                                             Some primary
## 794                                             Some primary
## 795                                             Some primary
## 796                                             Some primary
## 797                                             Some primary
## 798                                             Some primary
## 799                                             Some primary
## 800                                             Some primary
## 801                                             Some primary
## 802                                             Some primary
## 803                                             Some primary
## 804                                             Some primary
## 805                                             Some primary
## 806                                             Some primary
## 807                                             Some primary
## 808                                             Some primary
## 809                                             Some primary
## 810                                             Some primary
## 811                                             Some primary
## 812                                             Some primary
## 813                                             Some primary
## 814                                             Some primary
## 815                                      No formal education
## 816                                             Some primary
## 817                                             Some primary
## 818                                             Some primary
## 819                                             Some primary
## 820                                             Some primary
## 821                                             Some primary
## 822                                             Some primary
## 823                                             Some primary
## 824                                             Some primary
## 825                                      No formal education
## 826                                      No formal education
## 827                                             Some primary
## 828                                             Some primary
## 829                                             Some primary
## 830                                             Some primary
## 831                                             Some primary
## 832                                             Some primary
## 833                                      No formal education
## 834                                             Some primary
## 835                                             Some primary
## 836                                             Some primary
## 837                                             Some primary
## 838                                      No formal education
## 839                                             Some primary
## 840                                             Some primary
## 841                                             Some primary
## 842                                             Some primary
## 843                                             Some primary
## 844                                      No formal education
## 845                                      No formal education
## 846                                             Some primary
## 847                                             Some primary
## 848                                             Some primary
## 849                                             Some primary
## 850                                             Some primary
## 851                                             Some primary
## 852                                             Some primary
## 853                                             Some primary
## 854                                             Some primary
## 855                                             Some primary
## 856                                             Some primary
## 857                                      No formal education
## 858                                      No formal education
## 859                                             Some primary
## 860                                             Some primary
## 861                                             Some primary
## 862                                             Some primary
## 863                                             Some primary
## 864                                      No formal education
## 865                                             Some primary
## 866                                             Some primary
## 867                                             Some primary
## 868                                             Some primary
## 869                                             Some primary
## 870                                             Some primary
## 871                                             Some primary
## 872                                             Some primary
## 873                                             Some primary
## 874                                             Some primary
## 875                                             Some primary
## 876                                             Some primary
## 877                                             Some primary
## 878                                             Some primary
## 879                                             Some primary
## 880                                             Some primary
## 881                                             Some primary
## 882                                             Some primary
## 883                                             Some primary
## 884                                             Some primary
## 885                                      No formal education
## 886                                             Some primary
## 887                                             Some primary
## 888                                             Some primary
## 889                                             Some primary
## 890                                             Some primary
## 891                                             Some primary
## 892                                             Some primary
## 893                                             Some primary
## 894                                      No formal education
## 895                                             Some primary
## 896                                             Some primary
## 897                                      No formal education
## 898                                             Some primary
## 899                                             Some primary
## 900                                             Some primary
## 901                                             Some primary
## 902                                      No formal education
## 903                                             Some primary
## 904                                             Some primary
## 905                                             Some primary
## 906                                             Some primary
## 907                                             Some primary
## 908                                             Some primary
## 909                                             Some primary
## 910                                             Some primary
## 911                                             Some primary
## 912                                             Some primary
## 913                                             Some primary
## 914                                             Some primary
## 915                                      No formal education
## 916                                             Some primary
## 917                                             Some primary
## 918                                             Some primary
## 919                                             Some primary
## 920                                             Some primary
## 921                                      No formal education
## 922                                      No formal education
## 923                                             Some primary
## 924                                             Some primary
## 925                                      No formal education
## 926                                      No formal education
## 927                                      No formal education
## 928                                             Some primary
## 929                                             Some primary
## 930                                             Some primary
## 931                                             Some primary
## 932                                             Some primary
## 933                                             Some primary
## 934                                             Some primary
## 935                                             Some primary
## 936                                             Some primary
## 937                                             Some primary
## 938                                      No formal education
## 939                                             Some primary
## 940                                             Some primary
## 941                                             Some primary
## 942                                             Some primary
## 943                                             Some primary
## 944                                             Some primary
## 945                                             Some primary
## 946                                      No formal education
## 947                                             Some primary
## 948                                             Some primary
## 949                                      No formal education
## 950                                             Some primary
## 951                                             Some primary
## 952                                             Some primary
## 953                                             Some primary
## 954                                             Some primary
## 955                                             Some primary
## 956                                             Some primary
## 957                                             Some primary
## 958                                      No formal education
## 959                                      No formal education
## 960                                             Some primary
## 961                                             Some primary
## 962                                             Some primary
## 963                                             Some primary
## 964                                             Some primary
## 965                                      No formal education
## 966                                             Some primary
## 967                                             Some primary
## 968                                             Some primary
## 969                                             Some primary
## 970                                             Some primary
## 971                                             Some primary
## 972                                             Some primary
## 973                                             Some primary
## 974                                             Some primary
## 975                                             Some primary
## 976                                             Some primary
## 977                                      No formal education
## 978                                             Some primary
## 979                                      No formal education
## 980                                             Some primary
## 981                                      No formal education
## 982                                             Some primary
## 983                                             Some primary
## 984                                      No formal education
## 985                                      No formal education
## 986                                             Some primary
## 987                                             Some primary
## 988                                             Some primary
## 989                                             Some primary
## 990                                      No formal education
## 991                                             Some primary
## 992                                             Some primary
## 993                                      No formal education
## 994                                             Some primary
## 995                                             Some primary
## 996                                             Some primary
## 997                                             Some primary
## 998                                      No formal education
## 999                                             Some primary
## 1000                                            Some primary
## 1001                                     No formal education
## 1002                                            Some primary
## 1003                                            Some primary
## 1004                                            Some primary
## 1005                                            Some primary
## 1006                                     No formal education
## 1007                                            Some primary
## 1008                                            Some primary
## 1009                                            Some primary
## 1010                                            Some primary
## 1011                                            Some primary
## 1012                                            Some primary
## 1013                                            Some primary
## 1014                                            Some primary
## 1015                                            Some primary
## 1016                                     No formal education
## 1017                                            Some primary
## 1018                                            Some primary
## 1019                                            Some primary
## 1020                                            Some primary
## 1021                                            Some primary
## 1022                                            Some primary
## 1023                                            Some primary
## 1024                                            Some primary
## 1025                                            Some primary
## 1026                                            Some primary
## 1027                                     No formal education
## 1028                                            Some primary
## 1029                                            Some primary
## 1030                                            Some primary
## 1031                                     No formal education
## 1032                                            Some primary
## 1033                                     No formal education
## 1034                                     No formal education
## 1035                                            Some primary
## 1036                                            Some primary
## 1037                                     No formal education
## 1038                                     No formal education
## 1039                                            Some primary
## 1040                                            Some primary
## 1041                                     No formal education
## 1042                                     No formal education
## 1043                                            Some primary
## 1044                                     No formal education
## 1045                                     No formal education
## 1046                                            Some primary
## 1047                                            Some primary
## 1048                                            Some primary
## 1049                                            Some primary
## 1050                                            Some primary
## 1051                                            Some primary
## 1052                                            Some primary
## 1053                                     No formal education
## 1054                                            Some primary
## 1055                                     No formal education
## 1056                                     No formal education
## 1057                                            Some primary
## 1058                                     No formal education
## 1059                                            Some primary
## 1060                                     No formal education
## 1061                                            Some primary
## 1062                                            Some primary
## 1063                                            Some primary
## 1064                                     No formal education
## 1065                                     No formal education
## 1066                                            Some primary
## 1067                                            Some primary
## 1068                                            Some primary
## 1069                                            Some primary
## 1070                                            Some primary
## 1071                                            Some primary
## 1072                                     No formal education
## 1073                                     No formal education
## 1074                                            Some primary
## 1075                                            Some primary
## 1076                                            Some primary
## 1077                                            Some primary
## 1078                                            Some primary
## 1079                                            Some primary
## 1080                                            Some primary
## 1081                                            Some primary
## 1082                                            Some primary
## 1083                                            Some primary
## 1084                                            Some primary
## 1085                                            Some primary
## 1086                                            Some primary
## 1087                                            Some primary
## 1088                                            Some primary
## 1089                                            Some primary
## 1090                                            Some primary
## 1091                                            Some primary
## 1092                                            Some primary
## 1093                                            Some primary
## 1094                                            Some primary
## 1095                                            Some primary
## 1096                                            Some primary
## 1097                                     No formal education
## 1098                                            Some primary
## 1099                                            Some primary
## 1100                                     No formal education
## 1101                                            Some primary
## 1102                                            Some primary
## 1103                                            Some primary
## 1104                                            Some primary
## 1105                                            Some primary
## 1106                                            Some primary
## 1107                                            Some primary
## 1108                                            Some primary
## 1109                                            Some primary
## 1110                                     No formal education
## 1111                                            Some primary
## 1112                                     No formal education
## 1113                                     No formal education
## 1114                                            Some primary
## 1115                                            Some primary
## 1116                                            Some primary
## 1117                                     No formal education
## 1118                                            Some primary
## 1119                                            Some primary
## 1120                                            Some primary
## 1121                                     No formal education
## 1122                                     No formal education
## 1123                                            Some primary
## 1124                                     No formal education
## 1125                                            Some primary
## 1126                                     No formal education
## 1127                                            Some primary
## 1128                                     No formal education
## 1129                                            Some primary
## 1130                                            Some primary
## 1131                                            Some primary
## 1132                                     No formal education
## 1133                                     No formal education
## 1134                                            Some primary
## 1135                                            Some primary
## 1136                                            Some primary
## 1137                                     No formal education
## 1138                                            Some primary
## 1139                                            Some primary
## 1140                                            Some primary
## 1141                                            Some primary
## 1142                                            Some primary
## 1143                                            Some primary
## 1144                                            Some primary
## 1145                                            Some primary
## 1146                                     No formal education
## 1147                                            Some primary
## 1148                                            Some primary
## 1149                                            Some primary
## 1150                                     No formal education
## 1151                                            Some primary
## 1152                                            Some primary
## 1153                                            Some primary
## 1154                                            Some primary
## 1155                                            Some primary
## 1156                                            Some primary
## 1157                                            Some primary
## 1158                                            Some primary
## 1159                                            Some primary
## 1160                                            Some primary
## 1161                                            Some primary
## 1162                                            Some primary
## 1163                                            Some primary
## 1164                                            Some primary
## 1165                                     No formal education
## 1166                                            Some primary
## 1167                                            Some primary
## 1168                                            Some primary
## 1169                                            Some primary
## 1170                                            Some primary
## 1171                                            Some primary
## 1172                                     No formal education
## 1173                                            Some primary
## 1174                                            Some primary
## 1175                                            Some primary
## 1176                                            Some primary
## 1177                                            Some primary
## 1178                                            Some primary
## 1179                                     No formal education
## 1180                                            Some primary
## 1181                                     No formal education
## 1182                                            Some primary
## 1183                                            Some primary
## 1184                                            Some primary
## 1185                                            Some primary
## 1186                                            Some primary
## 1187                                            Some primary
## 1188                                            Some primary
## 1189                                            Some primary
## 1190                                     No formal education
## 1191                                            Some primary
## 1192                                            Some primary
## 1193                                     No formal education
## 1194                                            Some primary
## 1195                                            Some primary
## 1196                                            Some primary
## 1197                                            Some primary
## 1198                                            Some primary
## 1199                                            Some primary
## 1200                                            Some primary
## 1201                                     No formal education
## 1202                                     No formal education
## 1203                                            Some primary
## 1204                                            Some primary
## 1205                                            Some primary
## 1206                                            Some primary
## 1207                                            Some primary
## 1208                                            Some primary
## 1209                                            Some primary
## 1210                                            Some primary
## 1211                                            Some primary
## 1212                                            Some primary
## 1213                                     No formal education
## 1214                                            Some primary
## 1215                                            Some primary
## 1216                                            Some primary
## 1217                                     No formal education
## 1218                                            Some primary
## 1219                                            Some primary
## 1220                                            Some primary
## 1221                                            Some primary
## 1222                                            Some primary
## 1223                                            Some primary
## 1224                                     No formal education
## 1225                                            Some primary
## 1226                                            Some primary
## 1227                                            Some primary
## 1228                                            Some primary
## 1229                                            Some primary
## 1230                                            Some primary
## 1231                                            Some primary
## 1232                                     No formal education
## 1233                                            Some primary
## 1234                                            Some primary
## 1235                                            Some primary
## 1236                                            Some primary
## 1237                                            Some primary
## 1238                                            Some primary
## 1239                                            Some primary
## 1240                                            Some primary
## 1241                                            Some primary
## 1242                                     No formal education
## 1243                                            Some primary
## 1244                                            Some primary
## 1245                                            Some primary
## 1246                                            Some primary
## 1247                                            Some primary
## 1248                                            Some primary
## 1249                                            Some primary
## 1250                                     No formal education
## 1251                                            Some primary
## 1252                                            Some primary
## 1253                                            Some primary
## 1254                                            Some primary
## 1255                                            Some primary
## 1256                                            Some primary
## 1257                                            Some primary
## 1258                                            Some primary
## 1259                                            Some primary
## 1260                                            Some primary
## 1261                                            Some primary
## 1262                                            Some primary
## 1263                                     No formal education
## 1264                                            Some primary
## 1265                                            Some primary
## 1266                                            Some primary
## 1267                                     No formal education
## 1268                                            Some primary
## 1269                                            Some primary
## 1270                                            Some primary
## 1271                                            Some primary
## 1272                                            Some primary
## 1273                                            Some primary
## 1274                                            Some primary
## 1275                                            Some primary
## 1276                                            Some primary
## 1277                                     No formal education
## 1278                                     No formal education
## 1279                                            Some primary
## 1280                                            Some primary
## 1281                                            Some primary
## 1282                                            Some primary
## 1283                                            Some primary
## 1284                                            Some primary
## 1285                                            Some primary
## 1286                                     No formal education
## 1287                                            Some primary
## 1288                                            Some primary
## 1289                                            Some primary
## 1290                                     No formal education
## 1291                                     No formal education
## 1292                                     No formal education
## 1293                                            Some primary
## 1294                                            Some primary
## 1295                                            Some primary
## 1296                                            Some primary
## 1297                                            Some primary
## 1298                                            Some primary
## 1299                                            Some primary
## 1300                                            Some primary
## 1301                                     No formal education
## 1302                                            Some primary
## 1303                                            Some primary
## 1304                                            Some primary
## 1305                                            Some primary
## 1306                                            Some primary
## 1307                                     No formal education
## 1308                                     No formal education
## 1309                                            Some primary
## 1310                                     No formal education
## 1311                                            Some primary
## 1312                                            Some primary
## 1313                                            Some primary
## 1314                                            Some primary
## 1315                                            Some primary
## 1316                                     No formal education
## 1317                                            Some primary
## 1318                                            Some primary
## 1319                                            Some primary
## 1320                                            Some primary
## 1321                                            Some primary
## 1322                                            Some primary
## 1323                                     No formal education
## 1324                                            Some primary
## 1325                                            Some primary
## 1326                                            Some primary
## 1327                                            Some primary
## 1328                                            Some primary
## 1329                                            Some primary
## 1330                                     No formal education
## 1331                                            Some primary
## 1332                                     No formal education
## 1333                                     No formal education
## 1334                                            Some primary
## 1335                                            Some primary
## 1336                                            Some primary
## 1337                                            Some primary
## 1338                                            Some primary
## 1339                                            Some primary
## 1340                                            Some primary
## 1341                                     No formal education
## 1342                                            Some primary
## 1343                                            Some primary
## 1344                                            Some primary
## 1345                                            Some primary
## 1346                                            Some primary
## 1347                                            Some primary
## 1348                                            Some primary
## 1349                                            Some primary
## 1350                                            Some primary
## 1351                                            Some primary
## 1352                                     No formal education
## 1353                                            Some primary
## 1354                                            Some primary
## 1355                                            Some primary
## 1356                                     No formal education
## 1357                                            Some primary
## 1358                                            Some primary
## 1359                                            Some primary
## 1360                                            Some primary
## 1361                                            Some primary
## 1362                                            Some primary
## 1363                                            Some primary
## 1364                                     No formal education
## 1365                                            Some primary
## 1366                                            Some primary
## 1367                                            Some primary
## 1368                                            Some primary
## 1369                                            Some primary
## 1370                                            Some primary
## 1371                                     No formal education
## 1372                                            Some primary
## 1373                                            Some primary
## 1374                                     No formal education
## 1375                                     No formal education
## 1376                                            Some primary
## 1377                                            Some primary
## 1378                                            Some primary
## 1379                                            Some primary
## 1380                                            Some primary
## 1381                                            Some primary
## 1382                                            Some primary
## 1383                                            Some primary
## 1384                                            Some primary
## 1385                                            Some primary
## 1386                                            Some primary
## 1387                                            Some primary
## 1388                                            Some primary
## 1389                                     No formal education
## 1390                                            Some primary
## 1391                                            Some primary
## 1392                                            Some primary
## 1393                                            Some primary
## 1394                                            Some primary
## 1395                                            Some primary
## 1396                                            Some primary
## 1397                                            Some primary
## 1398                                            Some primary
## 1399                                     No formal education
## 1400                                            Some primary
## 1401                                            Some primary
## 1402                                            Some primary
## 1403                                            Some primary
## 1404                                            Some primary
## 1405                                     No formal education
## 1406                                            Some primary
## 1407                                     No formal education
## 1408                                            Some primary
## 1409                                            Some primary
## 1410                                            Some primary
## 1411                                            Some primary
## 1412                                     No formal education
## 1413                                     No formal education
## 1414                                            Some primary
## 1415                                            Some primary
## 1416                                            Some primary
## 1417                                     No formal education
## 1418                                     No formal education
## 1419                                     No formal education
## 1420                                            Some primary
## 1421                                     No formal education
## 1422                                     No formal education
## 1423                                     No formal education
## 1424                                            Some primary
## 1425                                            Some primary
## 1426                                            Some primary
## 1427                                            Some primary
## 1428                                            Some primary
## 1429                                            Some primary
## 1430                                     No formal education
## 1431                                            Some primary
## 1432                                            Some primary
## 1433                                            Some primary
## 1434                                            Some primary
## 1435                                            Some primary
## 1436                                            Some primary
## 1437                                     No formal education
## 1438                                            Some primary
## 1439                                            Some primary
## 1440                                     No formal education
## 1441                                     No formal education
## 1442                                            Some primary
## 1443                                            Some primary
## 1444                                            Some primary
## 1445                                            Some primary
## 1446                                     No formal education
## 1447                                            Some primary
## 1448                                            Some primary
## 1449                                            Some primary
## 1450                                     No formal education
## 1451                                            Some primary
## 1452                                            Some primary
## 1453                                            Some primary
## 1454                                            Some primary
## 1455                                            Some primary
## 1456                                     No formal education
## 1457                                     No formal education
## 1458                                            Some primary
## 1459                                            Some primary
## 1460                                            Some primary
## 1461                                     No formal education
## 1462                                            Some primary
## 1463                                            Some primary
## 1464                                            Some primary
## 1465                                            Some primary
## 1466                                            Some primary
## 1467                                            Some primary
## 1468                                            Some primary
## 1469                                            Some primary
## 1470                                            Some primary
## 1471                                     No formal education
## 1472                                     No formal education
## 1473                                            Some primary
## 1474                                            Some primary
## 1475                                     No formal education
## 1476                                            Some primary
## 1477                                            Some primary
## 1478                                            Some primary
## 1479                                            Some primary
## 1480                                            Some primary
## 1481                                            Some primary
## 1482                                            Some primary
## 1483                                            Some primary
## 1484                                            Some primary
## 1485                                            Some primary
## 1486                                     No formal education
## 1487                                     No formal education
## 1488                                            Some primary
## 1489                                            Some primary
## 1490                                     No formal education
## 1491                                     No formal education
## 1492                                            Some primary
## 1493                                            Some primary
## 1494                                            Some primary
## 1495                                            Some primary
## 1496                                            Some primary
## 1497                                            Some primary
## 1498                                            Some primary
## 1499                                            Some primary
## 1500                                            Some primary
## 1501                                            Some primary
## 1502                                            Some primary
## 1503                                            Some primary
## 1504                                            Some primary
## 1505                                            Some primary
## 1506                                            Some primary
## 1507                                            Some primary
## 1508                                            Some primary
## 1509                                            Some primary
## 1510                                            Some primary
## 1511                                            Some primary
## 1512                                     No formal education
## 1513                                            Some primary
## 1514                                            Some primary
## 1515                                            Some primary
## 1516                                            Some primary
## 1517                                            Some primary
## 1518                                            Some primary
## 1519                                            Some primary
## 1520                                     No formal education
## 1521                                            Some primary
## 1522                                            Some primary
## 1523                                            Some primary
## 1524                                            Some primary
## 1525                                            Some primary
## 1526                                            Some primary
## 1527                                            Some primary
## 1528                                            Some primary
## 1529                                            Some primary
## 1530                                     No formal education
## 1531                                     No formal education
## 1532                                            Some primary
## 1533                                            Some primary
## 1534                                            Some primary
## 1535                                            Some primary
## 1536                                     No formal education
## 1537                                            Some primary
## 1538                                            Some primary
## 1539                                            Some primary
## 1540                                     No formal education
## 1541                                            Some primary
## 1542                                            Some primary
## 1543                                            Some primary
## 1544                                     No formal education
## 1545                                            Some primary
## 1546                                     No formal education
## 1547                                            Some primary
## 1548                                            Some primary
## 1549                                            Some primary
## 1550                                            Some primary
## 1551                                            Some primary
## 1552                                            Some primary
## 1553                                            Some primary
## 1554                                            Some primary
## 1555                                            Some primary
## 1556                                            Some primary
## 1557                                            Some primary
## 1558                                            Some primary
## 1559                                            Some primary
## 1560                                     No formal education
## 1561                                            Some primary
## 1562                                            Some primary
## 1563                                            Some primary
## 1564                                            Some primary
## 1565                                            Some primary
## 1566                                            Some primary
## 1567                                            Some primary
## 1568                                     No formal education
## 1569                                            Some primary
## 1570                                            Some primary
## 1571                                            Some primary
## 1572                                     No formal education
## 1573                                            Some primary
## 1574                                     No formal education
## 1575                                            Some primary
## 1576                                     No formal education
## 1577                                            Some primary
## 1578                                            Some primary
## 1579                                            Some primary
## 1580                                            Some primary
## 1581                                            Some primary
## 1582                                            Some primary
## 1583                                            Some primary
## 1584                                     No formal education
## 1585                                            Some primary
## 1586                                            Some primary
## 1587                                            Some primary
## 1588                                            Some primary
## 1589                                            Some primary
## 1590                                            Some primary
## 1591                                     No formal education
## 1592                                            Some primary
## 1593                                            Some primary
## 1594                                            Some primary
## 1595                                            Some primary
## 1596                                            Some primary
## 1597                                            Some primary
## 1598                                            Some primary
## 1599                                            Some primary
## 1600                                            Some primary
## 1601                                            Some primary
## 1602                                            Some primary
## 1603                                            Some primary
## 1604                                            Some primary
## 1605                                            Some primary
## 1606                                            Some primary
## 1607                                            Some primary
## 1608                                            Some primary
## 1609                                            Some primary
## 1610                                            Some primary
## 1611                                            Some primary
## 1612                                            Some primary
## 1613                                            Some primary
## 1614                                     No formal education
## 1615                                            Some primary
## 1616                                            Some primary
## 1617                                            Some primary
## 1618                                            Some primary
## 1619                                            Some primary
## 1620                                            Some primary
## 1621                                            Some primary
## 1622                                            Some primary
## 1623                                            Some primary
## 1624                                            Some primary
## 1625                                            Some primary
## 1626                                            Some primary
## 1627                                            Some primary
## 1628                                            Some primary
## 1629                                            Some primary
## 1630                                            Some primary
## 1631                                     No formal education
## 1632                                            Some primary
## 1633                                            Some primary
## 1634                                     No formal education
## 1635                                            Some primary
## 1636                                            Some primary
## 1637                                     No formal education
## 1638                                     No formal education
## 1639                                            Some primary
## 1640                                            Some primary
## 1641                                     No formal education
## 1642                                            Some primary
## 1643                                            Some primary
## 1644                                            Some primary
## 1645                                            Some primary
## 1646                                            Some primary
## 1647                                            Some primary
## 1648                                            Some primary
## 1649                                            Some primary
## 1650                                            Some primary
## 1651                                            Some primary
## 1652                                            Some primary
## 1653                                     No formal education
## 1654                                            Some primary
## 1655                                            Some primary
## 1656                                            Some primary
## 1657                                            Some primary
## 1658                                            Some primary
## 1659                                            Some primary
## 1660                                     No formal education
## 1661                                            Some primary
## 1662                                            Some primary
## 1663                                            Some primary
## 1664                                            Some primary
## 1665                                            Some primary
## 1666                                            Some primary
## 1667                                            Some primary
## 1668                                            Some primary
## 1669                                     No formal education
## 1670                                     No formal education
## 1671                                            Some primary
## 1672                                            Some primary
## 1673                                            Some primary
## 1674                                            Some primary
## 1675                                            Some primary
## 1676                                            Some primary
## 1677                                            Some primary
## 1678                                            Some primary
## 1679                                            Some primary
## 1680                                            Some primary
## 1681                                            Some primary
## 1682                                            Some primary
## 1683                                            Some primary
## 1684                                            Some primary
## 1685                                            Some primary
## 1686                                            Some primary
## 1687                                            Some primary
## 1688                                            Some primary
## 1689                                            Some primary
## 1690                                            Some primary
## 1691                                            Some primary
## 1692                                     No formal education
## 1693                                     No formal education
## 1694                                            Some primary
## 1695                                            Some primary
## 1696                                            Some primary
## 1697                                     No formal education
## 1698                                            Some primary
## 1699                                     No formal education
## 1700                                            Some primary
## 1701                                     No formal education
## 1702                                     No formal education
## 1703                                            Some primary
## 1704                                            Some primary
## 1705                                            Some primary
## 1706                                            Some primary
## 1707                                            Some primary
## 1708                                            Some primary
## 1709                                            Some primary
## 1710                                            Some primary
## 1711                                            Some primary
## 1712                                     No formal education
## 1713                                            Some primary
## 1714                                            Some primary
## 1715                                            Some primary
## 1716                                     No formal education
## 1717                                     No formal education
## 1718                                            Some primary
## 1719                                            Some primary
## 1720                                            Some primary
## 1721                                            Some primary
## 1722                                            Some primary
## 1723                                            Some primary
## 1724                                            Some primary
## 1725                                            Some primary
## 1726                                            Some primary
## 1727                                            Some primary
## 1728                                            Some primary
## 1729                                     No formal education
## 1730                                            Some primary
## 1731                                            Some primary
## 1732                                            Some primary
## 1733                                            Some primary
## 1734                                            Some primary
## 1735                                            Some primary
## 1736                                            Some primary
## 1737                                            Some primary
## 1738                                            Some primary
## 1739                                            Some primary
## 1740                                            Some primary
## 1741                                            Some primary
## 1742                                     No formal education
## 1743                                            Some primary
## 1744                                            Some primary
## 1745                                            Some primary
## 1746                                            Some primary
## 1747                                            Some primary
## 1748                                            Some primary
## 1749                                            Some primary
## 1750                                            Some primary
## 1751                                     No formal education
## 1752                                            Some primary
## 1753                                            Some primary
## 1754                                            Some primary
## 1755                                            Some primary
## 1756                                            Some primary
## 1757                                            Some primary
## 1758                                     No formal education
## 1759                                            Some primary
## 1760                                            Some primary
## 1761                                            Some primary
## 1762                                            Some primary
## 1763                                            Some primary
## 1764                                     No formal education
## 1765                                            Some primary
## 1766                                            Some primary
## 1767                                            Some primary
## 1768                                            Some primary
## 1769                                     No formal education
## 1770                                            Some primary
## 1771                                            Some primary
## 1772                                            Some primary
## 1773                                            Some primary
## 1774                                     No formal education
## 1775                                            Some primary
## 1776                                            Some primary
## 1777                                     No formal education
## 1778                                            Some primary
## 1779                                            Some primary
## 1780                                            Some primary
## 1781                                            Some primary
## 1782                                            Some primary
## 1783                                            Some primary
## 1784                                            Some primary
## 1785                                            Some primary
## 1786                                            Some primary
## 1787                                            Some primary
## 1788                                            Some primary
## 1789                                            Some primary
## 1790                                            Some primary
## 1791                                            Some primary
## 1792                                            Some primary
## 1793                                     No formal education
## 1794                                     No formal education
## 1795                                            Some primary
## 1796                                            Some primary
## 1797                                            Some primary
## 1798                                     No formal education
## 1799                                            Some primary
## 1800                                            Some primary
## 1801                                            Some primary
## 1802                                            Some primary
## 1803                                            Some primary
## 1804                                            Some primary
## 1805                                            Some primary
## 1806                                            Some primary
## 1807                                            Some primary
## 1808                                            Some primary
## 1809                                            Some primary
## 1810                                            Some primary
## 1811                                            Some primary
## 1812                                            Some primary
## 1813                                     No formal education
## 1814                                     No formal education
## 1815                                            Some primary
## 1816                                            Some primary
## 1817                                     No formal education
## 1818                                            Some primary
## 1819                                            Some primary
## 1820                                            Some primary
## 1821                                            Some primary
## 1822                                            Some primary
## 1823                                            Some primary
## 1824                                            Some primary
## 1825                                     No formal education
## 1826                                            Some primary
## 1827                                            Some primary
## 1828                                            Some primary
## 1829                                            Some primary
## 1830                                            Some primary
## 1831                                     No formal education
## 1832                                            Some primary
## 1833                                            Some primary
## 1834                                     No formal education
## 1835                                            Some primary
## 1836                                            Some primary
## 1837                                            Some primary
## 1838                                            Some primary
## 1839                                            Some primary
## 1840                                     No formal education
## 1841                                     No formal education
## 1842                                            Some primary
## 1843                                            Some primary
## 1844                                            Some primary
## 1845                                     No formal education
## 1846                                            Some primary
## 1847                                            Some primary
## 1848                                            Some primary
## 1849                                            Some primary
## 1850                                            Some primary
## 1851                                            Some primary
## 1852                                            Some primary
## 1853                                            Some primary
## 1854                                            Some primary
## 1855                                            Some primary
## 1856                                            Some primary
## 1857                                            Some primary
## 1858                                            Some primary
## 1859                                            Some primary
## 1860                                            Some primary
## 1861                                            Some primary
## 1862                                     No formal education
## 1863                                            Some primary
## 1864                                            Some primary
## 1865                                            Some primary
## 1866                                            Some primary
## 1867                                            Some primary
## 1868                                            Some primary
## 1869                                            Some primary
## 1870                                            Some primary
## 1871                                            Some primary
## 1872                                     No formal education
## 1873                                            Some primary
## 1874                                     No formal education
## 1875                                            Some primary
## 1876                                            Some primary
## 1877                                            Some primary
## 1878                                            Some primary
## 1879                                            Some primary
## 1880                                     No formal education
## 1881                                            Some primary
## 1882                                            Some primary
## 1883                                            Some primary
## 1884                                            Some primary
## 1885                                            Some primary
## 1886                                            Some primary
## 1887                                            Some primary
## 1888                                     No formal education
## 1889                                            Some primary
## 1890                                     No formal education
## 1891                                     No formal education
## 1892                                            Some primary
## 1893                                            Some primary
## 1894                                     No formal education
## 1895                                            Some primary
## 1896                                            Some primary
## 1897                                            Some primary
## 1898                                     No formal education
## 1899                                            Some primary
## 1900                                            Some primary
## 1901                                            Some primary
## 1902                                            Some primary
## 1903                                            Some primary
## 1904                                     No formal education
## 1905                                            Some primary
## 1906                                            Some primary
## 1907                                            Some primary
## 1908                                     No formal education
## 1909                                            Some primary
## 1910                                            Some primary
## 1911                                            Some primary
## 1912                                            Some primary
## 1913                                            Some primary
## 1914                                            Some primary
## 1915                                     No formal education
## 1916                                            Some primary
## 1917                                            Some primary
## 1918                                            Some primary
## 1919                                            Some primary
## 1920                                            Some primary
## 1921                                            Some primary
## 1922                                            Some primary
## 1923                                            Some primary
## 1924                                            Some primary
## 1925                                            Some primary
## 1926                                            Some primary
## 1927                                     No formal education
## 1928                                            Some primary
## 1929                                     No formal education
## 1930                                            Some primary
## 1931                                            Some primary
## 1932                                            Some primary
## 1933                                            Some primary
## 1934                                     No formal education
## 1935                                            Some primary
## 1936                                            Some primary
## 1937                                            Some primary
## 1938                                            Some primary
## 1939                                            Some primary
## 1940                                            Some primary
## 1941                                            Some primary
## 1942                                            Some primary
## 1943                                     No formal education
## 1944                                            Some primary
## 1945                                            Some primary
## 1946                                            Some primary
## 1947                                            Some primary
## 1948                                            Some primary
## 1949                                            Some primary
## 1950                                            Some primary
## 1951                                            Some primary
## 1952                                            Some primary
## 1953                                            Some primary
## 1954                                            Some primary
## 1955                                            Some primary
## 1956                                            Some primary
## 1957                                            Some primary
## 1958                                            Some primary
## 1959                                     No formal education
## 1960                                            Some primary
## 1961                                            Some primary
## 1962                                            Some primary
## 1963                                            Some primary
## 1964                                            Some primary
## 1965                                            Some primary
## 1966                                            Some primary
## 1967                                            Some primary
## 1968                                            Some primary
## 1969                                            Some primary
## 1970                                     No formal education
## 1971                                            Some primary
## 1972                                            Some primary
## 1973                                            Some primary
## 1974                                     No formal education
## 1975                                            Some primary
## 1976                                            Some primary
## 1977                                            Some primary
## 1978                                            Some primary
## 1979                                            Some primary
## 1980                                            Some primary
## 1981                                            Some primary
## 1982                                            Some primary
## 1983                                            Some primary
## 1984                                            Some primary
## 1985                                            Some primary
## 1986                                            Some primary
## 1987                                            Some primary
## 1988                                            Some primary
## 1989                                            Some primary
## 1990                                            Some primary
## 1991                                            Some primary
## 1992                                            Some primary
## 1993                                            Some primary
## 1994                                            Some primary
## 1995                                            Some primary
## 1996                                            Some primary
## 1997                                     No formal education
## 1998                                            Some primary
## 1999                                            Some primary
## 2000                                            Some primary
## 2001                                            Some primary
## 2002                                            Some primary
## 2003                                     No formal education
## 2004                                            Some primary
## 2005                                            Some primary
## 2006                                            Some primary
## 2007                                            Some primary
## 2008                                            Some primary
## 2009                                            Some primary
## 2010                                            Some primary
## 2011                                            Some primary
## 2012                                            Some primary
## 2013                                            Some primary
## 2014                                            Some primary
## 2015                                            Some primary
## 2016                                            Some primary
## 2017                                     No formal education
## 2018                                            Some primary
## 2019                                            Some primary
## 2020                                            Some primary
## 2021                                            Some primary
## 2022                                            Some primary
## 2023                                            Some primary
## 2024                                            Some primary
## 2025                                     No formal education
## 2026                                            Some primary
## 2027                                            Some primary
## 2028                                            Some primary
## 2029                                            Some primary
## 2030                                            Some primary
## 2031                                            Some primary
## 2032                                            Some primary
## 2033                                            Some primary
## 2034                                            Some primary
## 2035                                            Some primary
## 2036                                            Some primary
## 2037                                     No formal education
## 2038                                            Some primary
## 2039                                            Some primary
## 2040                                            Some primary
## 2041                                            Some primary
## 2042                                     No formal education
## 2043                                            Some primary
## 2044                                            Some primary
## 2045                                            Some primary
## 2046                                            Some primary
## 2047                                            Some primary
## 2048                                            Some primary
## 2049                                            Some primary
## 2050                                            Some primary
## 2051                                            Some primary
## 2052                                            Some primary
## 2053                                     No formal education
## 2054                                            Some primary
## 2055                                            Some primary
## 2056                                            Some primary
## 2057                                            Some primary
## 2058                                            Some primary
## 2059                                            Some primary
## 2060                                            Some primary
## 2061                                     No formal education
## 2062                                            Some primary
## 2063                                            Some primary
## 2064                                            Some primary
## 2065                                            Some primary
## 2066                                            Some primary
## 2067                                            Some primary
## 2068                                            Some primary
## 2069                                            Some primary
## 2070                                            Some primary
## 2071                                            Some primary
## 2072                                            Some primary
## 2073                                            Some primary
## 2074                                            Some primary
## 2075                                            Some primary
## 2076                                     No formal education
## 2077                                            Some primary
## 2078                                            Some primary
## 2079                                     No formal education
## 2080                                            Some primary
## 2081                                            Some primary
## 2082                                            Some primary
## 2083                                     No formal education
## 2084                                            Some primary
## 2085                                            Some primary
## 2086                                            Some primary
## 2087                                            Some primary
## 2088                                            Some primary
## 2089                                            Some primary
## 2090                                            Some primary
## 2091                                            Some primary
## 2092                                     No formal education
## 2093                                     No formal education
## 2094                                     No formal education
## 2095                                            Some primary
## 2096                                            Some primary
## 2097                                            Some primary
## 2098                                            Some primary
## 2099                                            Some primary
## 2100                                            Some primary
## 2101                                            Some primary
## 2102                                            Some primary
## 2103                                            Some primary
## 2104                                            Some primary
## 2105                                            Some primary
## 2106                                            Some primary
## 2107                                            Some primary
## 2108                                            Some primary
## 2109                                            Some primary
## 2110                                     No formal education
## 2111                                            Some primary
## 2112                                            Some primary
## 2113                                            Some primary
## 2114                                            Some primary
## 2115                                            Some primary
## 2116                                            Some primary
## 2117                                            Some primary
## 2118                                            Some primary
## 2119                                            Some primary
## 2120                                            Some primary
## 2121                                            Some primary
## 2122                                            Some primary
## 2123                                            Some primary
## 2124                                            Some primary
## 2125                                     No formal education
## 2126                                            Some primary
## 2127                                            Some primary
##      if_else(Q4 == 3, "Primary completed", "Post primary technical training")
## 1                                             Post primary technical training
## 2                                                           Primary completed
## 3                                             Post primary technical training
## 4                                                           Primary completed
## 5                                             Post primary technical training
## 6                                                           Primary completed
## 7                                                           Primary completed
## 8                                             Post primary technical training
## 9                                                           Primary completed
## 10                                                          Primary completed
## 11                                            Post primary technical training
## 12                                            Post primary technical training
## 13                                                          Primary completed
## 14                                            Post primary technical training
## 15                                            Post primary technical training
## 16                                                          Primary completed
## 17                                            Post primary technical training
## 18                                                          Primary completed
## 19                                            Post primary technical training
## 20                                                          Primary completed
## 21                                                          Primary completed
## 22                                                          Primary completed
## 23                                            Post primary technical training
## 24                                            Post primary technical training
## 25                                                          Primary completed
## 26                                                          Primary completed
## 27                                                          Primary completed
## 28                                                          Primary completed
## 29                                                          Primary completed
## 30                                            Post primary technical training
## 31                                            Post primary technical training
## 32                                                          Primary completed
## 33                                                          Primary completed
## 34                                                          Primary completed
## 35                                            Post primary technical training
## 36                                            Post primary technical training
## 37                                                          Primary completed
## 38                                            Post primary technical training
## 39                                                          Primary completed
## 40                                            Post primary technical training
## 41                                                          Primary completed
## 42                                            Post primary technical training
## 43                                            Post primary technical training
## 44                                            Post primary technical training
## 45                                                          Primary completed
## 46                                                          Primary completed
## 47                                                          Primary completed
## 48                                                          Primary completed
## 49                                                          Primary completed
## 50                                                          Primary completed
## 51                                            Post primary technical training
## 52                                                          Primary completed
## 53                                                          Primary completed
## 54                                            Post primary technical training
## 55                                                          Primary completed
## 56                                                          Primary completed
## 57                                            Post primary technical training
## 58                                            Post primary technical training
## 59                                            Post primary technical training
## 60                                                          Primary completed
## 61                                            Post primary technical training
## 62                                            Post primary technical training
## 63                                            Post primary technical training
## 64                                                          Primary completed
## 65                                            Post primary technical training
## 66                                                          Primary completed
## 67                                                          Primary completed
## 68                                            Post primary technical training
## 69                                                          Primary completed
## 70                                                          Primary completed
## 71                                            Post primary technical training
## 72                                            Post primary technical training
## 73                                            Post primary technical training
## 74                                                          Primary completed
## 75                                            Post primary technical training
## 76                                            Post primary technical training
## 77                                                          Primary completed
## 78                                            Post primary technical training
## 79                                                          Primary completed
## 80                                            Post primary technical training
## 81                                                          Primary completed
## 82                                                          Primary completed
## 83                                                          Primary completed
## 84                                                          Primary completed
## 85                                            Post primary technical training
## 86                                                          Primary completed
## 87                                            Post primary technical training
## 88                                                          Primary completed
## 89                                            Post primary technical training
## 90                                                          Primary completed
## 91                                                          Primary completed
## 92                                            Post primary technical training
## 93                                                          Primary completed
## 94                                                          Primary completed
## 95                                                          Primary completed
## 96                                                          Primary completed
## 97                                            Post primary technical training
## 98                                                          Primary completed
## 99                                            Post primary technical training
## 100                                                         Primary completed
## 101                                                         Primary completed
## 102                                                         Primary completed
## 103                                                         Primary completed
## 104                                           Post primary technical training
## 105                                                         Primary completed
## 106                                           Post primary technical training
## 107                                                         Primary completed
## 108                                                         Primary completed
## 109                                                         Primary completed
## 110                                                         Primary completed
## 111                                                         Primary completed
## 112                                           Post primary technical training
## 113                                                         Primary completed
## 114                                           Post primary technical training
## 115                                           Post primary technical training
## 116                                                         Primary completed
## 117                                           Post primary technical training
## 118                                           Post primary technical training
## 119                                           Post primary technical training
## 120                                           Post primary technical training
## 121                                                         Primary completed
## 122                                                         Primary completed
## 123                                                         Primary completed
## 124                                                         Primary completed
## 125                                           Post primary technical training
## 126                                           Post primary technical training
## 127                                           Post primary technical training
## 128                                                         Primary completed
## 129                                           Post primary technical training
## 130                                           Post primary technical training
## 131                                                         Primary completed
## 132                                           Post primary technical training
## 133                                                         Primary completed
## 134                                           Post primary technical training
## 135                                                         Primary completed
## 136                                           Post primary technical training
## 137                                           Post primary technical training
## 138                                           Post primary technical training
## 139                                           Post primary technical training
## 140                                           Post primary technical training
## 141                                                         Primary completed
## 142                                                         Primary completed
## 143                                                         Primary completed
## 144                                           Post primary technical training
## 145                                           Post primary technical training
## 146                                                         Primary completed
## 147                                           Post primary technical training
## 148                                           Post primary technical training
## 149                                                         Primary completed
## 150                                           Post primary technical training
## 151                                                         Primary completed
## 152                                           Post primary technical training
## 153                                           Post primary technical training
## 154                                           Post primary technical training
## 155                                                         Primary completed
## 156                                                         Primary completed
## 157                                           Post primary technical training
## 158                                           Post primary technical training
## 159                                                         Primary completed
## 160                                                         Primary completed
## 161                                           Post primary technical training
## 162                                           Post primary technical training
## 163                                                         Primary completed
## 164                                           Post primary technical training
## 165                                           Post primary technical training
## 166                                                         Primary completed
## 167                                           Post primary technical training
## 168                                           Post primary technical training
## 169                                                         Primary completed
## 170                                           Post primary technical training
## 171                                           Post primary technical training
## 172                                           Post primary technical training
## 173                                                         Primary completed
## 174                                                         Primary completed
## 175                                                         Primary completed
## 176                                           Post primary technical training
## 177                                           Post primary technical training
## 178                                                         Primary completed
## 179                                                         Primary completed
## 180                                                         Primary completed
## 181                                                         Primary completed
## 182                                                         Primary completed
## 183                                                         Primary completed
## 184                                                         Primary completed
## 185                                           Post primary technical training
## 186                                           Post primary technical training
## 187                                           Post primary technical training
## 188                                           Post primary technical training
## 189                                                         Primary completed
## 190                                           Post primary technical training
## 191                                                         Primary completed
## 192                                           Post primary technical training
## 193                                           Post primary technical training
## 194                                           Post primary technical training
## 195                                           Post primary technical training
## 196                                           Post primary technical training
## 197                                                         Primary completed
## 198                                           Post primary technical training
## 199                                                         Primary completed
## 200                                           Post primary technical training
## 201                                           Post primary technical training
## 202                                                         Primary completed
## 203                                                         Primary completed
## 204                                                         Primary completed
## 205                                                         Primary completed
## 206                                                         Primary completed
## 207                                           Post primary technical training
## 208                                           Post primary technical training
## 209                                           Post primary technical training
## 210                                           Post primary technical training
## 211                                           Post primary technical training
## 212                                           Post primary technical training
## 213                                                         Primary completed
## 214                                           Post primary technical training
## 215                                           Post primary technical training
## 216                                           Post primary technical training
## 217                                           Post primary technical training
## 218                                           Post primary technical training
## 219                                                         Primary completed
## 220                                                         Primary completed
## 221                                           Post primary technical training
## 222                                           Post primary technical training
## 223                                                         Primary completed
## 224                                           Post primary technical training
## 225                                                         Primary completed
## 226                                           Post primary technical training
## 227                                           Post primary technical training
## 228                                           Post primary technical training
## 229                                                         Primary completed
## 230                                           Post primary technical training
## 231                                           Post primary technical training
## 232                                           Post primary technical training
## 233                                                         Primary completed
## 234                                                         Primary completed
## 235                                                         Primary completed
## 236                                                         Primary completed
## 237                                           Post primary technical training
## 238                                                         Primary completed
## 239                                           Post primary technical training
## 240                                           Post primary technical training
## 241                                                         Primary completed
## 242                                                         Primary completed
## 243                                                         Primary completed
## 244                                                         Primary completed
## 245                                                         Primary completed
## 246                                           Post primary technical training
## 247                                           Post primary technical training
## 248                                                         Primary completed
## 249                                           Post primary technical training
## 250                                                         Primary completed
## 251                                           Post primary technical training
## 252                                                         Primary completed
## 253                                                         Primary completed
## 254                                           Post primary technical training
## 255                                           Post primary technical training
## 256                                                         Primary completed
## 257                                           Post primary technical training
## 258                                                         Primary completed
## 259                                                         Primary completed
## 260                                                         Primary completed
## 261                                                         Primary completed
## 262                                           Post primary technical training
## 263                                           Post primary technical training
## 264                                                         Primary completed
## 265                                                         Primary completed
## 266                                                         Primary completed
## 267                                                         Primary completed
## 268                                                         Primary completed
## 269                                           Post primary technical training
## 270                                                         Primary completed
## 271                                           Post primary technical training
## 272                                                         Primary completed
## 273                                           Post primary technical training
## 274                                           Post primary technical training
## 275                                           Post primary technical training
## 276                                           Post primary technical training
## 277                                                         Primary completed
## 278                                                         Primary completed
## 279                                           Post primary technical training
## 280                                                         Primary completed
## 281                                                         Primary completed
## 282                                                         Primary completed
## 283                                           Post primary technical training
## 284                                           Post primary technical training
## 285                                           Post primary technical training
## 286                                           Post primary technical training
## 287                                                         Primary completed
## 288                                           Post primary technical training
## 289                                           Post primary technical training
## 290                                                         Primary completed
## 291                                                         Primary completed
## 292                                                         Primary completed
## 293                                           Post primary technical training
## 294                                                         Primary completed
## 295                                           Post primary technical training
## 296                                           Post primary technical training
## 297                                                         Primary completed
## 298                                           Post primary technical training
## 299                                                         Primary completed
## 300                                                         Primary completed
## 301                                                         Primary completed
## 302                                           Post primary technical training
## 303                                           Post primary technical training
## 304                                                         Primary completed
## 305                                           Post primary technical training
## 306                                                         Primary completed
## 307                                                         Primary completed
## 308                                           Post primary technical training
## 309                                                         Primary completed
## 310                                           Post primary technical training
## 311                                                         Primary completed
## 312                                           Post primary technical training
## 313                                                         Primary completed
## 314                                                         Primary completed
## 315                                                         Primary completed
## 316                                           Post primary technical training
## 317                                           Post primary technical training
## 318                                                         Primary completed
## 319                                           Post primary technical training
## 320                                                         Primary completed
## 321                                                         Primary completed
## 322                                                         Primary completed
## 323                                           Post primary technical training
## 324                                           Post primary technical training
## 325                                           Post primary technical training
## 326                                           Post primary technical training
## 327                                                         Primary completed
## 328                                           Post primary technical training
## 329                                           Post primary technical training
## 330                                           Post primary technical training
## 331                                                         Primary completed
## 332                                                         Primary completed
## 333                                           Post primary technical training
## 334                                                         Primary completed
## 335                                                         Primary completed
## 336                                                         Primary completed
## 337                                           Post primary technical training
## 338                                                         Primary completed
## 339                                                         Primary completed
## 340                                           Post primary technical training
## 341                                                         Primary completed
## 342                                           Post primary technical training
## 343                                           Post primary technical training
## 344                                           Post primary technical training
## 345                                           Post primary technical training
## 346                                           Post primary technical training
## 347                                           Post primary technical training
## 348                                           Post primary technical training
## 349                                           Post primary technical training
## 350                                           Post primary technical training
## 351                                                         Primary completed
## 352                                                         Primary completed
## 353                                           Post primary technical training
## 354                                                         Primary completed
## 355                                           Post primary technical training
## 356                                           Post primary technical training
## 357                                           Post primary technical training
## 358                                           Post primary technical training
## 359                                                         Primary completed
## 360                                           Post primary technical training
## 361                                           Post primary technical training
## 362                                                         Primary completed
## 363                                                         Primary completed
## 364                                           Post primary technical training
## 365                                                         Primary completed
## 366                                                         Primary completed
## 367                                                         Primary completed
## 368                                                         Primary completed
## 369                                                         Primary completed
## 370                                                         Primary completed
## 371                                                         Primary completed
## 372                                                         Primary completed
## 373                                           Post primary technical training
## 374                                                         Primary completed
## 375                                                         Primary completed
## 376                                           Post primary technical training
## 377                                           Post primary technical training
## 378                                           Post primary technical training
## 379                                           Post primary technical training
## 380                                                         Primary completed
## 381                                           Post primary technical training
## 382                                           Post primary technical training
## 383                                                         Primary completed
## 384                                                         Primary completed
## 385                                                         Primary completed
## 386                                           Post primary technical training
## 387                                           Post primary technical training
## 388                                           Post primary technical training
## 389                                           Post primary technical training
## 390                                                         Primary completed
## 391                                                         Primary completed
## 392                                                         Primary completed
## 393                                           Post primary technical training
## 394                                           Post primary technical training
## 395                                           Post primary technical training
## 396                                           Post primary technical training
## 397                                           Post primary technical training
## 398                                           Post primary technical training
## 399                                           Post primary technical training
## 400                                           Post primary technical training
## 401                                                         Primary completed
## 402                                           Post primary technical training
## 403                                           Post primary technical training
## 404                                           Post primary technical training
## 405                                                         Primary completed
## 406                                                         Primary completed
## 407                                           Post primary technical training
## 408                                                         Primary completed
## 409                                           Post primary technical training
## 410                                           Post primary technical training
## 411                                           Post primary technical training
## 412                                                         Primary completed
## 413                                           Post primary technical training
## 414                                                         Primary completed
## 415                                                         Primary completed
## 416                                           Post primary technical training
## 417                                           Post primary technical training
## 418                                           Post primary technical training
## 419                                                         Primary completed
## 420                                                         Primary completed
## 421                                                         Primary completed
## 422                                                         Primary completed
## 423                                                         Primary completed
## 424                                           Post primary technical training
## 425                                                         Primary completed
## 426                                                         Primary completed
## 427                                                         Primary completed
## 428                                           Post primary technical training
## 429                                                         Primary completed
## 430                                                         Primary completed
## 431                                           Post primary technical training
## 432                                                         Primary completed
## 433                                           Post primary technical training
## 434                                           Post primary technical training
## 435                                                         Primary completed
## 436                                                         Primary completed
## 437                                           Post primary technical training
## 438                                                         Primary completed
## 439                                           Post primary technical training
## 440                                                         Primary completed
## 441                                                         Primary completed
## 442                                           Post primary technical training
## 443                                                         Primary completed
## 444                                                         Primary completed
## 445                                           Post primary technical training
## 446                                                         Primary completed
## 447                                           Post primary technical training
## 448                                                         Primary completed
## 449                                                         Primary completed
## 450                                                         Primary completed
## 451                                                         Primary completed
## 452                                           Post primary technical training
## 453                                                         Primary completed
## 454                                                         Primary completed
## 455                                                         Primary completed
## 456                                           Post primary technical training
## 457                                                         Primary completed
## 458                                           Post primary technical training
## 459                                           Post primary technical training
## 460                                                         Primary completed
## 461                                                         Primary completed
## 462                                                         Primary completed
## 463                                                         Primary completed
## 464                                           Post primary technical training
## 465                                                         Primary completed
## 466                                           Post primary technical training
## 467                                           Post primary technical training
## 468                                                         Primary completed
## 469                                           Post primary technical training
## 470                                                         Primary completed
## 471                                                         Primary completed
## 472                                           Post primary technical training
## 473                                                         Primary completed
## 474                                           Post primary technical training
## 475                                                         Primary completed
## 476                                           Post primary technical training
## 477                                           Post primary technical training
## 478                                           Post primary technical training
## 479                                           Post primary technical training
## 480                                           Post primary technical training
## 481                                                         Primary completed
## 482                                           Post primary technical training
## 483                                                         Primary completed
## 484                                           Post primary technical training
## 485                                                         Primary completed
## 486                                           Post primary technical training
## 487                                           Post primary technical training
## 488                                           Post primary technical training
## 489                                           Post primary technical training
## 490                                           Post primary technical training
## 491                                                         Primary completed
## 492                                           Post primary technical training
## 493                                           Post primary technical training
## 494                                                         Primary completed
## 495                                           Post primary technical training
## 496                                           Post primary technical training
## 497                                                         Primary completed
## 498                                                         Primary completed
## 499                                           Post primary technical training
## 500                                           Post primary technical training
## 501                                                         Primary completed
## 502                                           Post primary technical training
## 503                                                         Primary completed
## 504                                                         Primary completed
## 505                                                         Primary completed
## 506                                                         Primary completed
## 507                                                         Primary completed
## 508                                           Post primary technical training
## 509                                           Post primary technical training
## 510                                                         Primary completed
## 511                                           Post primary technical training
## 512                                                         Primary completed
## 513                                                         Primary completed
## 514                                           Post primary technical training
## 515                                           Post primary technical training
## 516                                                         Primary completed
## 517                                                         Primary completed
## 518                                           Post primary technical training
## 519                                                         Primary completed
## 520                                                         Primary completed
## 521                                                         Primary completed
## 522                                                         Primary completed
## 523                                           Post primary technical training
## 524                                                         Primary completed
## 525                                                         Primary completed
## 526                                                         Primary completed
## 527                                                         Primary completed
## 528                                           Post primary technical training
## 529                                           Post primary technical training
## 530                                                         Primary completed
## 531                                           Post primary technical training
## 532                                           Post primary technical training
## 533                                                         Primary completed
## 534                                                         Primary completed
## 535                                                         Primary completed
## 536                                           Post primary technical training
## 537                                           Post primary technical training
## 538                                                         Primary completed
## 539                                                         Primary completed
## 540                                                         Primary completed
## 541                                           Post primary technical training
## 542                                                         Primary completed
## 543                                                         Primary completed
## 544                                           Post primary technical training
## 545                                           Post primary technical training
## 546                                           Post primary technical training
## 547                                           Post primary technical training
## 548                                                         Primary completed
## 549                                                         Primary completed
## 550                                           Post primary technical training
## 551                                           Post primary technical training
## 552                                           Post primary technical training
## 553                                           Post primary technical training
## 554                                                         Primary completed
## 555                                                         Primary completed
## 556                                           Post primary technical training
## 557                                                         Primary completed
## 558                                           Post primary technical training
## 559                                           Post primary technical training
## 560                                           Post primary technical training
## 561                                                         Primary completed
## 562                                           Post primary technical training
## 563                                           Post primary technical training
## 564                                                         Primary completed
## 565                                                         Primary completed
## 566                                                         Primary completed
## 567                                           Post primary technical training
## 568                                           Post primary technical training
## 569                                           Post primary technical training
## 570                                                         Primary completed
## 571                                           Post primary technical training
## 572                                           Post primary technical training
## 573                                           Post primary technical training
## 574                                                         Primary completed
## 575                                                         Primary completed
## 576                                                         Primary completed
## 577                                                         Primary completed
## 578                                                         Primary completed
## 579                                           Post primary technical training
## 580                                                         Primary completed
## 581                                                         Primary completed
## 582                                                         Primary completed
## 583                                           Post primary technical training
## 584                                           Post primary technical training
## 585                                           Post primary technical training
## 586                                                         Primary completed
## 587                                                         Primary completed
## 588                                                         Primary completed
## 589                                                         Primary completed
## 590                                                         Primary completed
## 591                                                         Primary completed
## 592                                           Post primary technical training
## 593                                           Post primary technical training
## 594                                                         Primary completed
## 595                                           Post primary technical training
## 596                                           Post primary technical training
## 597                                                         Primary completed
## 598                                                         Primary completed
## 599                                           Post primary technical training
## 600                                           Post primary technical training
## 601                                                         Primary completed
## 602                                           Post primary technical training
## 603                                           Post primary technical training
## 604                                                         Primary completed
## 605                                                         Primary completed
## 606                                                         Primary completed
## 607                                                         Primary completed
## 608                                                         Primary completed
## 609                                                         Primary completed
## 610                                           Post primary technical training
## 611                                                         Primary completed
## 612                                                         Primary completed
## 613                                           Post primary technical training
## 614                                                         Primary completed
## 615                                           Post primary technical training
## 616                                           Post primary technical training
## 617                                                         Primary completed
## 618                                           Post primary technical training
## 619                                                         Primary completed
## 620                                                         Primary completed
## 621                                           Post primary technical training
## 622                                           Post primary technical training
## 623                                           Post primary technical training
## 624                                           Post primary technical training
## 625                                           Post primary technical training
## 626                                                         Primary completed
## 627                                           Post primary technical training
## 628                                           Post primary technical training
## 629                                           Post primary technical training
## 630                                                         Primary completed
## 631                                                         Primary completed
## 632                                                         Primary completed
## 633                                           Post primary technical training
## 634                                                         Primary completed
## 635                                           Post primary technical training
## 636                                                         Primary completed
## 637                                           Post primary technical training
## 638                                                         Primary completed
## 639                                           Post primary technical training
## 640                                           Post primary technical training
## 641                                           Post primary technical training
## 642                                                         Primary completed
## 643                                                         Primary completed
## 644                                                         Primary completed
## 645                                           Post primary technical training
## 646                                           Post primary technical training
## 647                                                         Primary completed
## 648                                                         Primary completed
## 649                                           Post primary technical training
## 650                                           Post primary technical training
## 651                                           Post primary technical training
## 652                                                         Primary completed
## 653                                           Post primary technical training
## 654                                           Post primary technical training
## 655                                                         Primary completed
## 656                                                         Primary completed
## 657                                                         Primary completed
## 658                                           Post primary technical training
## 659                                                         Primary completed
## 660                                                         Primary completed
## 661                                                         Primary completed
## 662                                           Post primary technical training
## 663                                           Post primary technical training
## 664                                                         Primary completed
## 665                                           Post primary technical training
## 666                                           Post primary technical training
## 667                                                         Primary completed
## 668                                                         Primary completed
## 669                                           Post primary technical training
## 670                                                         Primary completed
## 671                                                         Primary completed
## 672                                                         Primary completed
## 673                                                         Primary completed
## 674                                                         Primary completed
## 675                                                         Primary completed
## 676                                                         Primary completed
## 677                                                         Primary completed
## 678                                           Post primary technical training
## 679                                           Post primary technical training
## 680                                           Post primary technical training
## 681                                           Post primary technical training
## 682                                                         Primary completed
## 683                                                         Primary completed
## 684                                                         Primary completed
## 685                                                         Primary completed
## 686                                                         Primary completed
## 687                                           Post primary technical training
## 688                                                         Primary completed
## 689                                                         Primary completed
## 690                                                         Primary completed
## 691                                                         Primary completed
## 692                                                         Primary completed
## 693                                           Post primary technical training
## 694                                           Post primary technical training
## 695                                           Post primary technical training
## 696                                                         Primary completed
## 697                                           Post primary technical training
## 698                                                         Primary completed
## 699                                           Post primary technical training
## 700                                                         Primary completed
## 701                                           Post primary technical training
## 702                                           Post primary technical training
## 703                                           Post primary technical training
## 704                                           Post primary technical training
## 705                                           Post primary technical training
## 706                                                         Primary completed
## 707                                           Post primary technical training
## 708                                           Post primary technical training
## 709                                                         Primary completed
## 710                                                         Primary completed
## 711                                                         Primary completed
## 712                                           Post primary technical training
## 713                                                         Primary completed
## 714                                           Post primary technical training
## 715                                                         Primary completed
## 716                                                         Primary completed
## 717                                           Post primary technical training
## 718                                                         Primary completed
## 719                                                         Primary completed
## 720                                           Post primary technical training
## 721                                                         Primary completed
## 722                                                         Primary completed
## 723                                           Post primary technical training
## 724                                           Post primary technical training
## 725                                                         Primary completed
## 726                                                         Primary completed
## 727                                           Post primary technical training
## 728                                           Post primary technical training
## 729                                                         Primary completed
## 730                                           Post primary technical training
## 731                                                         Primary completed
## 732                                           Post primary technical training
## 733                                                         Primary completed
## 734                                           Post primary technical training
## 735                                                         Primary completed
## 736                                           Post primary technical training
## 737                                           Post primary technical training
## 738                                           Post primary technical training
## 739                                           Post primary technical training
## 740                                                         Primary completed
## 741                                                         Primary completed
## 742                                                         Primary completed
## 743                                                         Primary completed
## 744                                                         Primary completed
## 745                                           Post primary technical training
## 746                                           Post primary technical training
## 747                                                         Primary completed
## 748                                           Post primary technical training
## 749                                           Post primary technical training
## 750                                                         Primary completed
## 751                                           Post primary technical training
## 752                                           Post primary technical training
## 753                                           Post primary technical training
## 754                                           Post primary technical training
## 755                                           Post primary technical training
## 756                                           Post primary technical training
## 757                                           Post primary technical training
## 758                                                         Primary completed
## 759                                                         Primary completed
## 760                                           Post primary technical training
## 761                                           Post primary technical training
## 762                                           Post primary technical training
## 763                                           Post primary technical training
## 764                                                         Primary completed
## 765                                                         Primary completed
## 766                                                         Primary completed
## 767                                                         Primary completed
## 768                                                         Primary completed
## 769                                                         Primary completed
## 770                                           Post primary technical training
## 771                                                         Primary completed
## 772                                                         Primary completed
## 773                                           Post primary technical training
## 774                                                         Primary completed
## 775                                           Post primary technical training
## 776                                           Post primary technical training
## 777                                           Post primary technical training
## 778                                                         Primary completed
## 779                                                         Primary completed
## 780                                                         Primary completed
## 781                                                         Primary completed
## 782                                                         Primary completed
## 783                                           Post primary technical training
## 784                                                         Primary completed
## 785                                                         Primary completed
## 786                                                         Primary completed
## 787                                           Post primary technical training
## 788                                                         Primary completed
## 789                                                         Primary completed
## 790                                                         Primary completed
## 791                                                         Primary completed
## 792                                           Post primary technical training
## 793                                           Post primary technical training
## 794                                                         Primary completed
## 795                                                         Primary completed
## 796                                                         Primary completed
## 797                                                         Primary completed
## 798                                                         Primary completed
## 799                                                         Primary completed
## 800                                                         Primary completed
## 801                                                         Primary completed
## 802                                           Post primary technical training
## 803                                                         Primary completed
## 804                                           Post primary technical training
## 805                                           Post primary technical training
## 806                                           Post primary technical training
## 807                                           Post primary technical training
## 808                                                         Primary completed
## 809                                                         Primary completed
## 810                                                         Primary completed
## 811                                           Post primary technical training
## 812                                                         Primary completed
## 813                                                         Primary completed
## 814                                           Post primary technical training
## 815                                           Post primary technical training
## 816                                           Post primary technical training
## 817                                           Post primary technical training
## 818                                           Post primary technical training
## 819                                                         Primary completed
## 820                                                         Primary completed
## 821                                                         Primary completed
## 822                                           Post primary technical training
## 823                                           Post primary technical training
## 824                                           Post primary technical training
## 825                                           Post primary technical training
## 826                                           Post primary technical training
## 827                                           Post primary technical training
## 828                                                         Primary completed
## 829                                           Post primary technical training
## 830                                           Post primary technical training
## 831                                           Post primary technical training
## 832                                           Post primary technical training
## 833                                           Post primary technical training
## 834                                                         Primary completed
## 835                                           Post primary technical training
## 836                                                         Primary completed
## 837                                           Post primary technical training
## 838                                           Post primary technical training
## 839                                           Post primary technical training
## 840                                                         Primary completed
## 841                                           Post primary technical training
## 842                                                         Primary completed
## 843                                                         Primary completed
## 844                                           Post primary technical training
## 845                                           Post primary technical training
## 846                                           Post primary technical training
## 847                                                         Primary completed
## 848                                                         Primary completed
## 849                                           Post primary technical training
## 850                                           Post primary technical training
## 851                                           Post primary technical training
## 852                                           Post primary technical training
## 853                                                         Primary completed
## 854                                           Post primary technical training
## 855                                                         Primary completed
## 856                                                         Primary completed
## 857                                           Post primary technical training
## 858                                           Post primary technical training
## 859                                                         Primary completed
## 860                                                         Primary completed
## 861                                                         Primary completed
## 862                                                         Primary completed
## 863                                                         Primary completed
## 864                                           Post primary technical training
## 865                                                         Primary completed
## 866                                                         Primary completed
## 867                                                         Primary completed
## 868                                           Post primary technical training
## 869                                           Post primary technical training
## 870                                           Post primary technical training
## 871                                                         Primary completed
## 872                                                         Primary completed
## 873                                                         Primary completed
## 874                                                         Primary completed
## 875                                           Post primary technical training
## 876                                           Post primary technical training
## 877                                                         Primary completed
## 878                                           Post primary technical training
## 879                                                         Primary completed
## 880                                           Post primary technical training
## 881                                           Post primary technical training
## 882                                           Post primary technical training
## 883                                                         Primary completed
## 884                                                         Primary completed
## 885                                           Post primary technical training
## 886                                           Post primary technical training
## 887                                                         Primary completed
## 888                                                         Primary completed
## 889                                                         Primary completed
## 890                                           Post primary technical training
## 891                                           Post primary technical training
## 892                                           Post primary technical training
## 893                                           Post primary technical training
## 894                                           Post primary technical training
## 895                                                         Primary completed
## 896                                                         Primary completed
## 897                                           Post primary technical training
## 898                                                         Primary completed
## 899                                                         Primary completed
## 900                                           Post primary technical training
## 901                                                         Primary completed
## 902                                           Post primary technical training
## 903                                                         Primary completed
## 904                                           Post primary technical training
## 905                                                         Primary completed
## 906                                                         Primary completed
## 907                                                         Primary completed
## 908                                                         Primary completed
## 909                                                         Primary completed
## 910                                                         Primary completed
## 911                                                         Primary completed
## 912                                           Post primary technical training
## 913                                           Post primary technical training
## 914                                                         Primary completed
## 915                                           Post primary technical training
## 916                                           Post primary technical training
## 917                                           Post primary technical training
## 918                                                         Primary completed
## 919                                           Post primary technical training
## 920                                                         Primary completed
## 921                                           Post primary technical training
## 922                                           Post primary technical training
## 923                                           Post primary technical training
## 924                                                         Primary completed
## 925                                           Post primary technical training
## 926                                           Post primary technical training
## 927                                           Post primary technical training
## 928                                           Post primary technical training
## 929                                           Post primary technical training
## 930                                           Post primary technical training
## 931                                                         Primary completed
## 932                                                         Primary completed
## 933                                                         Primary completed
## 934                                                         Primary completed
## 935                                                         Primary completed
## 936                                           Post primary technical training
## 937                                           Post primary technical training
## 938                                           Post primary technical training
## 939                                                         Primary completed
## 940                                           Post primary technical training
## 941                                                         Primary completed
## 942                                                         Primary completed
## 943                                           Post primary technical training
## 944                                                         Primary completed
## 945                                                         Primary completed
## 946                                           Post primary technical training
## 947                                           Post primary technical training
## 948                                           Post primary technical training
## 949                                           Post primary technical training
## 950                                           Post primary technical training
## 951                                                         Primary completed
## 952                                           Post primary technical training
## 953                                                         Primary completed
## 954                                                         Primary completed
## 955                                           Post primary technical training
## 956                                           Post primary technical training
## 957                                                         Primary completed
## 958                                           Post primary technical training
## 959                                           Post primary technical training
## 960                                                         Primary completed
## 961                                                         Primary completed
## 962                                           Post primary technical training
## 963                                           Post primary technical training
## 964                                           Post primary technical training
## 965                                           Post primary technical training
## 966                                                         Primary completed
## 967                                                         Primary completed
## 968                                                         Primary completed
## 969                                           Post primary technical training
## 970                                                         Primary completed
## 971                                                         Primary completed
## 972                                                         Primary completed
## 973                                                         Primary completed
## 974                                                         Primary completed
## 975                                           Post primary technical training
## 976                                           Post primary technical training
## 977                                           Post primary technical training
## 978                                           Post primary technical training
## 979                                           Post primary technical training
## 980                                                         Primary completed
## 981                                           Post primary technical training
## 982                                                         Primary completed
## 983                                                         Primary completed
## 984                                           Post primary technical training
## 985                                           Post primary technical training
## 986                                                         Primary completed
## 987                                                         Primary completed
## 988                                           Post primary technical training
## 989                                                         Primary completed
## 990                                           Post primary technical training
## 991                                                         Primary completed
## 992                                           Post primary technical training
## 993                                           Post primary technical training
## 994                                                         Primary completed
## 995                                                         Primary completed
## 996                                                         Primary completed
## 997                                                         Primary completed
## 998                                           Post primary technical training
## 999                                                         Primary completed
## 1000                                          Post primary technical training
## 1001                                          Post primary technical training
## 1002                                          Post primary technical training
## 1003                                          Post primary technical training
## 1004                                                        Primary completed
## 1005                                                        Primary completed
## 1006                                          Post primary technical training
## 1007                                                        Primary completed
## 1008                                                        Primary completed
## 1009                                          Post primary technical training
## 1010                                                        Primary completed
## 1011                                                        Primary completed
## 1012                                                        Primary completed
## 1013                                          Post primary technical training
## 1014                                                        Primary completed
## 1015                                          Post primary technical training
## 1016                                          Post primary technical training
## 1017                                          Post primary technical training
## 1018                                                        Primary completed
## 1019                                                        Primary completed
## 1020                                          Post primary technical training
## 1021                                          Post primary technical training
## 1022                                          Post primary technical training
## 1023                                          Post primary technical training
## 1024                                                        Primary completed
## 1025                                                        Primary completed
## 1026                                                        Primary completed
## 1027                                          Post primary technical training
## 1028                                          Post primary technical training
## 1029                                                        Primary completed
## 1030                                                        Primary completed
## 1031                                          Post primary technical training
## 1032                                                        Primary completed
## 1033                                          Post primary technical training
## 1034                                          Post primary technical training
## 1035                                          Post primary technical training
## 1036                                                        Primary completed
## 1037                                          Post primary technical training
## 1038                                          Post primary technical training
## 1039                                                        Primary completed
## 1040                                          Post primary technical training
## 1041                                          Post primary technical training
## 1042                                          Post primary technical training
## 1043                                          Post primary technical training
## 1044                                          Post primary technical training
## 1045                                          Post primary technical training
## 1046                                          Post primary technical training
## 1047                                          Post primary technical training
## 1048                                                        Primary completed
## 1049                                                        Primary completed
## 1050                                          Post primary technical training
## 1051                                          Post primary technical training
## 1052                                          Post primary technical training
## 1053                                          Post primary technical training
## 1054                                          Post primary technical training
## 1055                                          Post primary technical training
## 1056                                          Post primary technical training
## 1057                                                        Primary completed
## 1058                                          Post primary technical training
## 1059                                          Post primary technical training
## 1060                                          Post primary technical training
## 1061                                                        Primary completed
## 1062                                          Post primary technical training
## 1063                                                        Primary completed
## 1064                                          Post primary technical training
## 1065                                          Post primary technical training
## 1066                                                        Primary completed
## 1067                                          Post primary technical training
## 1068                                                        Primary completed
## 1069                                                        Primary completed
## 1070                                                        Primary completed
## 1071                                                        Primary completed
## 1072                                          Post primary technical training
## 1073                                          Post primary technical training
## 1074                                                        Primary completed
## 1075                                                        Primary completed
## 1076                                          Post primary technical training
## 1077                                          Post primary technical training
## 1078                                          Post primary technical training
## 1079                                          Post primary technical training
## 1080                                                        Primary completed
## 1081                                          Post primary technical training
## 1082                                          Post primary technical training
## 1083                                                        Primary completed
## 1084                                                        Primary completed
## 1085                                                        Primary completed
## 1086                                          Post primary technical training
## 1087                                                        Primary completed
## 1088                                                        Primary completed
## 1089                                                        Primary completed
## 1090                                                        Primary completed
## 1091                                          Post primary technical training
## 1092                                                        Primary completed
## 1093                                                        Primary completed
## 1094                                                        Primary completed
## 1095                                          Post primary technical training
## 1096                                                        Primary completed
## 1097                                          Post primary technical training
## 1098                                                        Primary completed
## 1099                                                        Primary completed
## 1100                                          Post primary technical training
## 1101                                          Post primary technical training
## 1102                                                        Primary completed
## 1103                                          Post primary technical training
## 1104                                          Post primary technical training
## 1105                                          Post primary technical training
## 1106                                          Post primary technical training
## 1107                                                        Primary completed
## 1108                                                        Primary completed
## 1109                                                        Primary completed
## 1110                                          Post primary technical training
## 1111                                          Post primary technical training
## 1112                                          Post primary technical training
## 1113                                          Post primary technical training
## 1114                                          Post primary technical training
## 1115                                                        Primary completed
## 1116                                          Post primary technical training
## 1117                                          Post primary technical training
## 1118                                          Post primary technical training
## 1119                                                        Primary completed
## 1120                                                        Primary completed
## 1121                                          Post primary technical training
## 1122                                          Post primary technical training
## 1123                                                        Primary completed
## 1124                                          Post primary technical training
## 1125                                                        Primary completed
## 1126                                          Post primary technical training
## 1127                                                        Primary completed
## 1128                                          Post primary technical training
## 1129                                                        Primary completed
## 1130                                          Post primary technical training
## 1131                                                        Primary completed
## 1132                                          Post primary technical training
## 1133                                          Post primary technical training
## 1134                                                        Primary completed
## 1135                                                        Primary completed
## 1136                                          Post primary technical training
## 1137                                          Post primary technical training
## 1138                                          Post primary technical training
## 1139                                          Post primary technical training
## 1140                                          Post primary technical training
## 1141                                                        Primary completed
## 1142                                          Post primary technical training
## 1143                                          Post primary technical training
## 1144                                                        Primary completed
## 1145                                          Post primary technical training
## 1146                                          Post primary technical training
## 1147                                                        Primary completed
## 1148                                          Post primary technical training
## 1149                                          Post primary technical training
## 1150                                          Post primary technical training
## 1151                                                        Primary completed
## 1152                                                        Primary completed
## 1153                                                        Primary completed
## 1154                                          Post primary technical training
## 1155                                                        Primary completed
## 1156                                          Post primary technical training
## 1157                                          Post primary technical training
## 1158                                                        Primary completed
## 1159                                                        Primary completed
## 1160                                                        Primary completed
## 1161                                          Post primary technical training
## 1162                                                        Primary completed
## 1163                                          Post primary technical training
## 1164                                                        Primary completed
## 1165                                          Post primary technical training
## 1166                                          Post primary technical training
## 1167                                          Post primary technical training
## 1168                                          Post primary technical training
## 1169                                          Post primary technical training
## 1170                                                        Primary completed
## 1171                                          Post primary technical training
## 1172                                          Post primary technical training
## 1173                                          Post primary technical training
## 1174                                                        Primary completed
## 1175                                                        Primary completed
## 1176                                          Post primary technical training
## 1177                                          Post primary technical training
## 1178                                                        Primary completed
## 1179                                          Post primary technical training
## 1180                                                        Primary completed
## 1181                                          Post primary technical training
## 1182                                                        Primary completed
## 1183                                          Post primary technical training
## 1184                                          Post primary technical training
## 1185                                                        Primary completed
## 1186                                                        Primary completed
## 1187                                                        Primary completed
## 1188                                                        Primary completed
## 1189                                                        Primary completed
## 1190                                          Post primary technical training
## 1191                                                        Primary completed
## 1192                                          Post primary technical training
## 1193                                          Post primary technical training
## 1194                                                        Primary completed
## 1195                                          Post primary technical training
## 1196                                                        Primary completed
## 1197                                                        Primary completed
## 1198                                                        Primary completed
## 1199                                          Post primary technical training
## 1200                                          Post primary technical training
## 1201                                          Post primary technical training
## 1202                                          Post primary technical training
## 1203                                                        Primary completed
## 1204                                                        Primary completed
## 1205                                          Post primary technical training
## 1206                                                        Primary completed
## 1207                                                        Primary completed
## 1208                                                        Primary completed
## 1209                                          Post primary technical training
## 1210                                                        Primary completed
## 1211                                                        Primary completed
## 1212                                          Post primary technical training
## 1213                                          Post primary technical training
## 1214                                          Post primary technical training
## 1215                                          Post primary technical training
## 1216                                          Post primary technical training
## 1217                                          Post primary technical training
## 1218                                                        Primary completed
## 1219                                                        Primary completed
## 1220                                                        Primary completed
## 1221                                          Post primary technical training
## 1222                                          Post primary technical training
## 1223                                                        Primary completed
## 1224                                          Post primary technical training
## 1225                                                        Primary completed
## 1226                                                        Primary completed
## 1227                                                        Primary completed
## 1228                                                        Primary completed
## 1229                                                        Primary completed
## 1230                                                        Primary completed
## 1231                                                        Primary completed
## 1232                                          Post primary technical training
## 1233                                                        Primary completed
## 1234                                                        Primary completed
## 1235                                                        Primary completed
## 1236                                                        Primary completed
## 1237                                                        Primary completed
## 1238                                                        Primary completed
## 1239                                          Post primary technical training
## 1240                                                        Primary completed
## 1241                                          Post primary technical training
## 1242                                          Post primary technical training
## 1243                                          Post primary technical training
## 1244                                                        Primary completed
## 1245                                          Post primary technical training
## 1246                                          Post primary technical training
## 1247                                                        Primary completed
## 1248                                          Post primary technical training
## 1249                                          Post primary technical training
## 1250                                          Post primary technical training
## 1251                                          Post primary technical training
## 1252                                                        Primary completed
## 1253                                          Post primary technical training
## 1254                                          Post primary technical training
## 1255                                          Post primary technical training
## 1256                                          Post primary technical training
## 1257                                                        Primary completed
## 1258                                          Post primary technical training
## 1259                                          Post primary technical training
## 1260                                                        Primary completed
## 1261                                                        Primary completed
## 1262                                                        Primary completed
## 1263                                          Post primary technical training
## 1264                                                        Primary completed
## 1265                                          Post primary technical training
## 1266                                          Post primary technical training
## 1267                                          Post primary technical training
## 1268                                                        Primary completed
## 1269                                          Post primary technical training
## 1270                                          Post primary technical training
## 1271                                                        Primary completed
## 1272                                                        Primary completed
## 1273                                                        Primary completed
## 1274                                                        Primary completed
## 1275                                          Post primary technical training
## 1276                                                        Primary completed
## 1277                                          Post primary technical training
## 1278                                          Post primary technical training
## 1279                                                        Primary completed
## 1280                                                        Primary completed
## 1281                                          Post primary technical training
## 1282                                          Post primary technical training
## 1283                                                        Primary completed
## 1284                                                        Primary completed
## 1285                                                        Primary completed
## 1286                                          Post primary technical training
## 1287                                          Post primary technical training
## 1288                                          Post primary technical training
## 1289                                          Post primary technical training
## 1290                                          Post primary technical training
## 1291                                          Post primary technical training
## 1292                                          Post primary technical training
## 1293                                          Post primary technical training
## 1294                                                        Primary completed
## 1295                                                        Primary completed
## 1296                                          Post primary technical training
## 1297                                                        Primary completed
## 1298                                                        Primary completed
## 1299                                                        Primary completed
## 1300                                                        Primary completed
## 1301                                          Post primary technical training
## 1302                                          Post primary technical training
## 1303                                          Post primary technical training
## 1304                                                        Primary completed
## 1305                                                        Primary completed
## 1306                                          Post primary technical training
## 1307                                          Post primary technical training
## 1308                                          Post primary technical training
## 1309                                          Post primary technical training
## 1310                                          Post primary technical training
## 1311                                          Post primary technical training
## 1312                                                        Primary completed
## 1313                                                        Primary completed
## 1314                                          Post primary technical training
## 1315                                                        Primary completed
## 1316                                          Post primary technical training
## 1317                                          Post primary technical training
## 1318                                                        Primary completed
## 1319                                          Post primary technical training
## 1320                                                        Primary completed
## 1321                                                        Primary completed
## 1322                                                        Primary completed
## 1323                                          Post primary technical training
## 1324                                          Post primary technical training
## 1325                                          Post primary technical training
## 1326                                          Post primary technical training
## 1327                                                        Primary completed
## 1328                                                        Primary completed
## 1329                                                        Primary completed
## 1330                                          Post primary technical training
## 1331                                                        Primary completed
## 1332                                          Post primary technical training
## 1333                                          Post primary technical training
## 1334                                                        Primary completed
## 1335                                                        Primary completed
## 1336                                          Post primary technical training
## 1337                                                        Primary completed
## 1338                                          Post primary technical training
## 1339                                                        Primary completed
## 1340                                          Post primary technical training
## 1341                                          Post primary technical training
## 1342                                                        Primary completed
## 1343                                                        Primary completed
## 1344                                          Post primary technical training
## 1345                                          Post primary technical training
## 1346                                                        Primary completed
## 1347                                                        Primary completed
## 1348                                                        Primary completed
## 1349                                                        Primary completed
## 1350                                                        Primary completed
## 1351                                          Post primary technical training
## 1352                                          Post primary technical training
## 1353                                          Post primary technical training
## 1354                                                        Primary completed
## 1355                                                        Primary completed
## 1356                                          Post primary technical training
## 1357                                                        Primary completed
## 1358                                                        Primary completed
## 1359                                                        Primary completed
## 1360                                          Post primary technical training
## 1361                                          Post primary technical training
## 1362                                                        Primary completed
## 1363                                                        Primary completed
## 1364                                          Post primary technical training
## 1365                                          Post primary technical training
## 1366                                                        Primary completed
## 1367                                                        Primary completed
## 1368                                          Post primary technical training
## 1369                                                        Primary completed
## 1370                                          Post primary technical training
## 1371                                          Post primary technical training
## 1372                                                        Primary completed
## 1373                                                        Primary completed
## 1374                                          Post primary technical training
## 1375                                          Post primary technical training
## 1376                                                        Primary completed
## 1377                                          Post primary technical training
## 1378                                          Post primary technical training
## 1379                                          Post primary technical training
## 1380                                          Post primary technical training
## 1381                                          Post primary technical training
## 1382                                                        Primary completed
## 1383                                                        Primary completed
## 1384                                                        Primary completed
## 1385                                                        Primary completed
## 1386                                                        Primary completed
## 1387                                                        Primary completed
## 1388                                                        Primary completed
## 1389                                          Post primary technical training
## 1390                                          Post primary technical training
## 1391                                          Post primary technical training
## 1392                                                        Primary completed
## 1393                                                        Primary completed
## 1394                                                        Primary completed
## 1395                                          Post primary technical training
## 1396                                                        Primary completed
## 1397                                                        Primary completed
## 1398                                          Post primary technical training
## 1399                                          Post primary technical training
## 1400                                                        Primary completed
## 1401                                          Post primary technical training
## 1402                                          Post primary technical training
## 1403                                                        Primary completed
## 1404                                          Post primary technical training
## 1405                                          Post primary technical training
## 1406                                                        Primary completed
## 1407                                          Post primary technical training
## 1408                                                        Primary completed
## 1409                                                        Primary completed
## 1410                                                        Primary completed
## 1411                                          Post primary technical training
## 1412                                          Post primary technical training
## 1413                                          Post primary technical training
## 1414                                          Post primary technical training
## 1415                                          Post primary technical training
## 1416                                                        Primary completed
## 1417                                          Post primary technical training
## 1418                                          Post primary technical training
## 1419                                          Post primary technical training
## 1420                                                        Primary completed
## 1421                                          Post primary technical training
## 1422                                          Post primary technical training
## 1423                                          Post primary technical training
## 1424                                                        Primary completed
## 1425                                          Post primary technical training
## 1426                                                        Primary completed
## 1427                                                        Primary completed
## 1428                                                        Primary completed
## 1429                                                        Primary completed
## 1430                                          Post primary technical training
## 1431                                          Post primary technical training
## 1432                                          Post primary technical training
## 1433                                          Post primary technical training
## 1434                                          Post primary technical training
## 1435                                          Post primary technical training
## 1436                                                        Primary completed
## 1437                                          Post primary technical training
## 1438                                                        Primary completed
## 1439                                                        Primary completed
## 1440                                          Post primary technical training
## 1441                                          Post primary technical training
## 1442                                                        Primary completed
## 1443                                                        Primary completed
## 1444                                                        Primary completed
## 1445                                          Post primary technical training
## 1446                                          Post primary technical training
## 1447                                          Post primary technical training
## 1448                                                        Primary completed
## 1449                                                        Primary completed
## 1450                                          Post primary technical training
## 1451                                                        Primary completed
## 1452                                          Post primary technical training
## 1453                                                        Primary completed
## 1454                                                        Primary completed
## 1455                                                        Primary completed
## 1456                                          Post primary technical training
## 1457                                          Post primary technical training
## 1458                                          Post primary technical training
## 1459                                          Post primary technical training
## 1460                                                        Primary completed
## 1461                                          Post primary technical training
## 1462                                                        Primary completed
## 1463                                                        Primary completed
## 1464                                          Post primary technical training
## 1465                                                        Primary completed
## 1466                                          Post primary technical training
## 1467                                                        Primary completed
## 1468                                          Post primary technical training
## 1469                                                        Primary completed
## 1470                                                        Primary completed
## 1471                                          Post primary technical training
## 1472                                          Post primary technical training
## 1473                                          Post primary technical training
## 1474                                          Post primary technical training
## 1475                                          Post primary technical training
## 1476                                                        Primary completed
## 1477                                                        Primary completed
## 1478                                          Post primary technical training
## 1479                                          Post primary technical training
## 1480                                                        Primary completed
## 1481                                          Post primary technical training
## 1482                                          Post primary technical training
## 1483                                          Post primary technical training
## 1484                                                        Primary completed
## 1485                                          Post primary technical training
## 1486                                          Post primary technical training
## 1487                                          Post primary technical training
## 1488                                                        Primary completed
## 1489                                                        Primary completed
## 1490                                          Post primary technical training
## 1491                                          Post primary technical training
## 1492                                          Post primary technical training
## 1493                                                        Primary completed
## 1494                                                        Primary completed
## 1495                                                        Primary completed
## 1496                                                        Primary completed
## 1497                                          Post primary technical training
## 1498                                                        Primary completed
## 1499                                          Post primary technical training
## 1500                                          Post primary technical training
## 1501                                                        Primary completed
## 1502                                          Post primary technical training
## 1503                                                        Primary completed
## 1504                                          Post primary technical training
## 1505                                                        Primary completed
## 1506                                                        Primary completed
## 1507                                                        Primary completed
## 1508                                                        Primary completed
## 1509                                                        Primary completed
## 1510                                          Post primary technical training
## 1511                                                        Primary completed
## 1512                                          Post primary technical training
## 1513                                          Post primary technical training
## 1514                                                        Primary completed
## 1515                                                        Primary completed
## 1516                                          Post primary technical training
## 1517                                                        Primary completed
## 1518                                                        Primary completed
## 1519                                          Post primary technical training
## 1520                                          Post primary technical training
## 1521                                                        Primary completed
## 1522                                          Post primary technical training
## 1523                                                        Primary completed
## 1524                                                        Primary completed
## 1525                                                        Primary completed
## 1526                                          Post primary technical training
## 1527                                                        Primary completed
## 1528                                          Post primary technical training
## 1529                                          Post primary technical training
## 1530                                          Post primary technical training
## 1531                                          Post primary technical training
## 1532                                                        Primary completed
## 1533                                          Post primary technical training
## 1534                                                        Primary completed
## 1535                                                        Primary completed
## 1536                                          Post primary technical training
## 1537                                          Post primary technical training
## 1538                                          Post primary technical training
## 1539                                          Post primary technical training
## 1540                                          Post primary technical training
## 1541                                          Post primary technical training
## 1542                                                        Primary completed
## 1543                                          Post primary technical training
## 1544                                          Post primary technical training
## 1545                                          Post primary technical training
## 1546                                          Post primary technical training
## 1547                                          Post primary technical training
## 1548                                          Post primary technical training
## 1549                                          Post primary technical training
## 1550                                                        Primary completed
## 1551                                                        Primary completed
## 1552                                          Post primary technical training
## 1553                                          Post primary technical training
## 1554                                                        Primary completed
## 1555                                                        Primary completed
## 1556                                                        Primary completed
## 1557                                          Post primary technical training
## 1558                                                        Primary completed
## 1559                                                        Primary completed
## 1560                                          Post primary technical training
## 1561                                                        Primary completed
## 1562                                                        Primary completed
## 1563                                                        Primary completed
## 1564                                                        Primary completed
## 1565                                                        Primary completed
## 1566                                                        Primary completed
## 1567                                                        Primary completed
## 1568                                          Post primary technical training
## 1569                                          Post primary technical training
## 1570                                                        Primary completed
## 1571                                          Post primary technical training
## 1572                                          Post primary technical training
## 1573                                          Post primary technical training
## 1574                                          Post primary technical training
## 1575                                                        Primary completed
## 1576                                          Post primary technical training
## 1577                                          Post primary technical training
## 1578                                          Post primary technical training
## 1579                                                        Primary completed
## 1580                                          Post primary technical training
## 1581                                                        Primary completed
## 1582                                                        Primary completed
## 1583                                                        Primary completed
## 1584                                          Post primary technical training
## 1585                                                        Primary completed
## 1586                                                        Primary completed
## 1587                                          Post primary technical training
## 1588                                          Post primary technical training
## 1589                                                        Primary completed
## 1590                                          Post primary technical training
## 1591                                          Post primary technical training
## 1592                                                        Primary completed
## 1593                                          Post primary technical training
## 1594                                          Post primary technical training
## 1595                                          Post primary technical training
## 1596                                          Post primary technical training
## 1597                                                        Primary completed
## 1598                                          Post primary technical training
## 1599                                                        Primary completed
## 1600                                          Post primary technical training
## 1601                                                        Primary completed
## 1602                                                        Primary completed
## 1603                                          Post primary technical training
## 1604                                          Post primary technical training
## 1605                                                        Primary completed
## 1606                                                        Primary completed
## 1607                                          Post primary technical training
## 1608                                                        Primary completed
## 1609                                                        Primary completed
## 1610                                                        Primary completed
## 1611                                          Post primary technical training
## 1612                                                        Primary completed
## 1613                                                        Primary completed
## 1614                                          Post primary technical training
## 1615                                                        Primary completed
## 1616                                                        Primary completed
## 1617                                          Post primary technical training
## 1618                                                        Primary completed
## 1619                                          Post primary technical training
## 1620                                                        Primary completed
## 1621                                                        Primary completed
## 1622                                                        Primary completed
## 1623                                          Post primary technical training
## 1624                                                        Primary completed
## 1625                                                        Primary completed
## 1626                                                        Primary completed
## 1627                                          Post primary technical training
## 1628                                                        Primary completed
## 1629                                                        Primary completed
## 1630                                                        Primary completed
## 1631                                          Post primary technical training
## 1632                                                        Primary completed
## 1633                                          Post primary technical training
## 1634                                          Post primary technical training
## 1635                                                        Primary completed
## 1636                                          Post primary technical training
## 1637                                          Post primary technical training
## 1638                                          Post primary technical training
## 1639                                                        Primary completed
## 1640                                                        Primary completed
## 1641                                          Post primary technical training
## 1642                                                        Primary completed
## 1643                                                        Primary completed
## 1644                                                        Primary completed
## 1645                                          Post primary technical training
## 1646                                          Post primary technical training
## 1647                                                        Primary completed
## 1648                                          Post primary technical training
## 1649                                          Post primary technical training
## 1650                                                        Primary completed
## 1651                                          Post primary technical training
## 1652                                          Post primary technical training
## 1653                                          Post primary technical training
## 1654                                                        Primary completed
## 1655                                                        Primary completed
## 1656                                          Post primary technical training
## 1657                                          Post primary technical training
## 1658                                          Post primary technical training
## 1659                                          Post primary technical training
## 1660                                          Post primary technical training
## 1661                                                        Primary completed
## 1662                                                        Primary completed
## 1663                                                        Primary completed
## 1664                                                        Primary completed
## 1665                                          Post primary technical training
## 1666                                                        Primary completed
## 1667                                                        Primary completed
## 1668                                          Post primary technical training
## 1669                                          Post primary technical training
## 1670                                          Post primary technical training
## 1671                                          Post primary technical training
## 1672                                                        Primary completed
## 1673                                          Post primary technical training
## 1674                                                        Primary completed
## 1675                                                        Primary completed
## 1676                                                        Primary completed
## 1677                                                        Primary completed
## 1678                                          Post primary technical training
## 1679                                          Post primary technical training
## 1680                                                        Primary completed
## 1681                                                        Primary completed
## 1682                                          Post primary technical training
## 1683                                                        Primary completed
## 1684                                                        Primary completed
## 1685                                          Post primary technical training
## 1686                                                        Primary completed
## 1687                                                        Primary completed
## 1688                                                        Primary completed
## 1689                                                        Primary completed
## 1690                                                        Primary completed
## 1691                                                        Primary completed
## 1692                                          Post primary technical training
## 1693                                          Post primary technical training
## 1694                                                        Primary completed
## 1695                                          Post primary technical training
## 1696                                          Post primary technical training
## 1697                                          Post primary technical training
## 1698                                          Post primary technical training
## 1699                                          Post primary technical training
## 1700                                          Post primary technical training
## 1701                                          Post primary technical training
## 1702                                          Post primary technical training
## 1703                                          Post primary technical training
## 1704                                          Post primary technical training
## 1705                                                        Primary completed
## 1706                                                        Primary completed
## 1707                                                        Primary completed
## 1708                                                        Primary completed
## 1709                                                        Primary completed
## 1710                                                        Primary completed
## 1711                                          Post primary technical training
## 1712                                          Post primary technical training
## 1713                                                        Primary completed
## 1714                                                        Primary completed
## 1715                                          Post primary technical training
## 1716                                          Post primary technical training
## 1717                                          Post primary technical training
## 1718                                                        Primary completed
## 1719                                                        Primary completed
## 1720                                                        Primary completed
## 1721                                          Post primary technical training
## 1722                                          Post primary technical training
## 1723                                                        Primary completed
## 1724                                                        Primary completed
## 1725                                          Post primary technical training
## 1726                                                        Primary completed
## 1727                                          Post primary technical training
## 1728                                          Post primary technical training
## 1729                                          Post primary technical training
## 1730                                                        Primary completed
## 1731                                                        Primary completed
## 1732                                                        Primary completed
## 1733                                                        Primary completed
## 1734                                                        Primary completed
## 1735                                                        Primary completed
## 1736                                                        Primary completed
## 1737                                                        Primary completed
## 1738                                          Post primary technical training
## 1739                                                        Primary completed
## 1740                                          Post primary technical training
## 1741                                          Post primary technical training
## 1742                                          Post primary technical training
## 1743                                                        Primary completed
## 1744                                          Post primary technical training
## 1745                                          Post primary technical training
## 1746                                          Post primary technical training
## 1747                                                        Primary completed
## 1748                                          Post primary technical training
## 1749                                                        Primary completed
## 1750                                          Post primary technical training
## 1751                                          Post primary technical training
## 1752                                                        Primary completed
## 1753                                          Post primary technical training
## 1754                                                        Primary completed
## 1755                                                        Primary completed
## 1756                                                        Primary completed
## 1757                                                        Primary completed
## 1758                                          Post primary technical training
## 1759                                                        Primary completed
## 1760                                                        Primary completed
## 1761                                          Post primary technical training
## 1762                                                        Primary completed
## 1763                                          Post primary technical training
## 1764                                          Post primary technical training
## 1765                                          Post primary technical training
## 1766                                          Post primary technical training
## 1767                                          Post primary technical training
## 1768                                                        Primary completed
## 1769                                          Post primary technical training
## 1770                                          Post primary technical training
## 1771                                                        Primary completed
## 1772                                          Post primary technical training
## 1773                                          Post primary technical training
## 1774                                          Post primary technical training
## 1775                                          Post primary technical training
## 1776                                                        Primary completed
## 1777                                          Post primary technical training
## 1778                                          Post primary technical training
## 1779                                                        Primary completed
## 1780                                                        Primary completed
## 1781                                                        Primary completed
## 1782                                          Post primary technical training
## 1783                                                        Primary completed
## 1784                                          Post primary technical training
## 1785                                                        Primary completed
## 1786                                                        Primary completed
## 1787                                                        Primary completed
## 1788                                                        Primary completed
## 1789                                          Post primary technical training
## 1790                                                        Primary completed
## 1791                                                        Primary completed
## 1792                                          Post primary technical training
## 1793                                          Post primary technical training
## 1794                                          Post primary technical training
## 1795                                          Post primary technical training
## 1796                                                        Primary completed
## 1797                                          Post primary technical training
## 1798                                          Post primary technical training
## 1799                                          Post primary technical training
## 1800                                                        Primary completed
## 1801                                          Post primary technical training
## 1802                                          Post primary technical training
## 1803                                                        Primary completed
## 1804                                          Post primary technical training
## 1805                                                        Primary completed
## 1806                                                        Primary completed
## 1807                                          Post primary technical training
## 1808                                          Post primary technical training
## 1809                                                        Primary completed
## 1810                                                        Primary completed
## 1811                                          Post primary technical training
## 1812                                                        Primary completed
## 1813                                          Post primary technical training
## 1814                                          Post primary technical training
## 1815                                                        Primary completed
## 1816                                                        Primary completed
## 1817                                          Post primary technical training
## 1818                                          Post primary technical training
## 1819                                          Post primary technical training
## 1820                                                        Primary completed
## 1821                                          Post primary technical training
## 1822                                                        Primary completed
## 1823                                          Post primary technical training
## 1824                                                        Primary completed
## 1825                                          Post primary technical training
## 1826                                                        Primary completed
## 1827                                          Post primary technical training
## 1828                                          Post primary technical training
## 1829                                          Post primary technical training
## 1830                                          Post primary technical training
## 1831                                          Post primary technical training
## 1832                                          Post primary technical training
## 1833                                          Post primary technical training
## 1834                                          Post primary technical training
## 1835                                          Post primary technical training
## 1836                                                        Primary completed
## 1837                                                        Primary completed
## 1838                                          Post primary technical training
## 1839                                          Post primary technical training
## 1840                                          Post primary technical training
## 1841                                          Post primary technical training
## 1842                                                        Primary completed
## 1843                                                        Primary completed
## 1844                                          Post primary technical training
## 1845                                          Post primary technical training
## 1846                                                        Primary completed
## 1847                                                        Primary completed
## 1848                                          Post primary technical training
## 1849                                          Post primary technical training
## 1850                                                        Primary completed
## 1851                                          Post primary technical training
## 1852                                                        Primary completed
## 1853                                                        Primary completed
## 1854                                                        Primary completed
## 1855                                          Post primary technical training
## 1856                                          Post primary technical training
## 1857                                                        Primary completed
## 1858                                          Post primary technical training
## 1859                                          Post primary technical training
## 1860                                                        Primary completed
## 1861                                                        Primary completed
## 1862                                          Post primary technical training
## 1863                                                        Primary completed
## 1864                                                        Primary completed
## 1865                                                        Primary completed
## 1866                                                        Primary completed
## 1867                                                        Primary completed
## 1868                                          Post primary technical training
## 1869                                                        Primary completed
## 1870                                                        Primary completed
## 1871                                          Post primary technical training
## 1872                                          Post primary technical training
## 1873                                                        Primary completed
## 1874                                          Post primary technical training
## 1875                                          Post primary technical training
## 1876                                                        Primary completed
## 1877                                          Post primary technical training
## 1878                                                        Primary completed
## 1879                                                        Primary completed
## 1880                                          Post primary technical training
## 1881                                                        Primary completed
## 1882                                          Post primary technical training
## 1883                                                        Primary completed
## 1884                                                        Primary completed
## 1885                                          Post primary technical training
## 1886                                                        Primary completed
## 1887                                          Post primary technical training
## 1888                                          Post primary technical training
## 1889                                                        Primary completed
## 1890                                          Post primary technical training
## 1891                                          Post primary technical training
## 1892                                                        Primary completed
## 1893                                          Post primary technical training
## 1894                                          Post primary technical training
## 1895                                          Post primary technical training
## 1896                                                        Primary completed
## 1897                                          Post primary technical training
## 1898                                          Post primary technical training
## 1899                                          Post primary technical training
## 1900                                                        Primary completed
## 1901                                                        Primary completed
## 1902                                                        Primary completed
## 1903                                                        Primary completed
## 1904                                          Post primary technical training
## 1905                                                        Primary completed
## 1906                                                        Primary completed
## 1907                                                        Primary completed
## 1908                                          Post primary technical training
## 1909                                                        Primary completed
## 1910                                          Post primary technical training
## 1911                                          Post primary technical training
## 1912                                          Post primary technical training
## 1913                                                        Primary completed
## 1914                                          Post primary technical training
## 1915                                          Post primary technical training
## 1916                                                        Primary completed
## 1917                                          Post primary technical training
## 1918                                          Post primary technical training
## 1919                                          Post primary technical training
## 1920                                                        Primary completed
## 1921                                          Post primary technical training
## 1922                                          Post primary technical training
## 1923                                                        Primary completed
## 1924                                                        Primary completed
## 1925                                                        Primary completed
## 1926                                          Post primary technical training
## 1927                                          Post primary technical training
## 1928                                                        Primary completed
## 1929                                          Post primary technical training
## 1930                                                        Primary completed
## 1931                                          Post primary technical training
## 1932                                          Post primary technical training
## 1933                                          Post primary technical training
## 1934                                          Post primary technical training
## 1935                                          Post primary technical training
## 1936                                                        Primary completed
## 1937                                                        Primary completed
## 1938                                                        Primary completed
## 1939                                          Post primary technical training
## 1940                                                        Primary completed
## 1941                                                        Primary completed
## 1942                                                        Primary completed
## 1943                                          Post primary technical training
## 1944                                                        Primary completed
## 1945                                                        Primary completed
## 1946                                                        Primary completed
## 1947                                                        Primary completed
## 1948                                          Post primary technical training
## 1949                                                        Primary completed
## 1950                                                        Primary completed
## 1951                                                        Primary completed
## 1952                                          Post primary technical training
## 1953                                                        Primary completed
## 1954                                                        Primary completed
## 1955                                          Post primary technical training
## 1956                                                        Primary completed
## 1957                                                        Primary completed
## 1958                                                        Primary completed
## 1959                                          Post primary technical training
## 1960                                          Post primary technical training
## 1961                                          Post primary technical training
## 1962                                                        Primary completed
## 1963                                                        Primary completed
## 1964                                                        Primary completed
## 1965                                                        Primary completed
## 1966                                                        Primary completed
## 1967                                                        Primary completed
## 1968                                          Post primary technical training
## 1969                                          Post primary technical training
## 1970                                          Post primary technical training
## 1971                                          Post primary technical training
## 1972                                          Post primary technical training
## 1973                                                        Primary completed
## 1974                                          Post primary technical training
## 1975                                          Post primary technical training
## 1976                                          Post primary technical training
## 1977                                                        Primary completed
## 1978                                          Post primary technical training
## 1979                                                        Primary completed
## 1980                                          Post primary technical training
## 1981                                          Post primary technical training
## 1982                                                        Primary completed
## 1983                                                        Primary completed
## 1984                                                        Primary completed
## 1985                                                        Primary completed
## 1986                                                        Primary completed
## 1987                                                        Primary completed
## 1988                                                        Primary completed
## 1989                                                        Primary completed
## 1990                                                        Primary completed
## 1991                                          Post primary technical training
## 1992                                                        Primary completed
## 1993                                                        Primary completed
## 1994                                                        Primary completed
## 1995                                          Post primary technical training
## 1996                                          Post primary technical training
## 1997                                          Post primary technical training
## 1998                                          Post primary technical training
## 1999                                                        Primary completed
## 2000                                          Post primary technical training
## 2001                                                        Primary completed
## 2002                                                        Primary completed
## 2003                                          Post primary technical training
## 2004                                                        Primary completed
## 2005                                                        Primary completed
## 2006                                          Post primary technical training
## 2007                                          Post primary technical training
## 2008                                          Post primary technical training
## 2009                                                        Primary completed
## 2010                                                        Primary completed
## 2011                                                        Primary completed
## 2012                                                        Primary completed
## 2013                                          Post primary technical training
## 2014                                                        Primary completed
## 2015                                          Post primary technical training
## 2016                                                        Primary completed
## 2017                                          Post primary technical training
## 2018                                                        Primary completed
## 2019                                                        Primary completed
## 2020                                                        Primary completed
## 2021                                                        Primary completed
## 2022                                          Post primary technical training
## 2023                                          Post primary technical training
## 2024                                                        Primary completed
## 2025                                          Post primary technical training
## 2026                                                        Primary completed
## 2027                                                        Primary completed
## 2028                                          Post primary technical training
## 2029                                                        Primary completed
## 2030                                                        Primary completed
## 2031                                                        Primary completed
## 2032                                                        Primary completed
## 2033                                                        Primary completed
## 2034                                                        Primary completed
## 2035                                                        Primary completed
## 2036                                          Post primary technical training
## 2037                                          Post primary technical training
## 2038                                                        Primary completed
## 2039                                                        Primary completed
## 2040                                          Post primary technical training
## 2041                                                        Primary completed
## 2042                                          Post primary technical training
## 2043                                          Post primary technical training
## 2044                                                        Primary completed
## 2045                                          Post primary technical training
## 2046                                          Post primary technical training
## 2047                                                        Primary completed
## 2048                                                        Primary completed
## 2049                                          Post primary technical training
## 2050                                                        Primary completed
## 2051                                          Post primary technical training
## 2052                                                        Primary completed
## 2053                                          Post primary technical training
## 2054                                          Post primary technical training
## 2055                                                        Primary completed
## 2056                                          Post primary technical training
## 2057                                                        Primary completed
## 2058                                          Post primary technical training
## 2059                                                        Primary completed
## 2060                                                        Primary completed
## 2061                                          Post primary technical training
## 2062                                                        Primary completed
## 2063                                          Post primary technical training
## 2064                                          Post primary technical training
## 2065                                          Post primary technical training
## 2066                                          Post primary technical training
## 2067                                          Post primary technical training
## 2068                                          Post primary technical training
## 2069                                                        Primary completed
## 2070                                          Post primary technical training
## 2071                                                        Primary completed
## 2072                                                        Primary completed
## 2073                                          Post primary technical training
## 2074                                          Post primary technical training
## 2075                                          Post primary technical training
## 2076                                          Post primary technical training
## 2077                                                        Primary completed
## 2078                                          Post primary technical training
## 2079                                          Post primary technical training
## 2080                                          Post primary technical training
## 2081                                          Post primary technical training
## 2082                                          Post primary technical training
## 2083                                          Post primary technical training
## 2084                                          Post primary technical training
## 2085                                          Post primary technical training
## 2086                                                        Primary completed
## 2087                                                        Primary completed
## 2088                                          Post primary technical training
## 2089                                                        Primary completed
## 2090                                                        Primary completed
## 2091                                                        Primary completed
## 2092                                          Post primary technical training
## 2093                                          Post primary technical training
## 2094                                          Post primary technical training
## 2095                                                        Primary completed
## 2096                                          Post primary technical training
## 2097                                                        Primary completed
## 2098                                                        Primary completed
## 2099                                                        Primary completed
## 2100                                                        Primary completed
## 2101                                          Post primary technical training
## 2102                                                        Primary completed
## 2103                                          Post primary technical training
## 2104                                          Post primary technical training
## 2105                                                        Primary completed
## 2106                                                        Primary completed
## 2107                                          Post primary technical training
## 2108                                                        Primary completed
## 2109                                                        Primary completed
## 2110                                          Post primary technical training
## 2111                                          Post primary technical training
## 2112                                                        Primary completed
## 2113                                                        Primary completed
## 2114                                          Post primary technical training
## 2115                                                        Primary completed
## 2116                                                        Primary completed
## 2117                                                        Primary completed
## 2118                                          Post primary technical training
## 2119                                          Post primary technical training
## 2120                                                        Primary completed
## 2121                                                        Primary completed
## 2122                                                        Primary completed
## 2123                                          Post primary technical training
## 2124                                          Post primary technical training
## 2125                                          Post primary technical training
## 2126                                                        Primary completed
## 2127                                                        Primary completed
##      if_else(Q4 == 5, "Some secondary", "University or other thing")
## 1                                          University or other thing
## 2                                          University or other thing
## 3                                          University or other thing
## 4                                          University or other thing
## 5                                          University or other thing
## 6                                          University or other thing
## 7                                          University or other thing
## 8                                                     Some secondary
## 9                                          University or other thing
## 10                                         University or other thing
## 11                                                    Some secondary
## 12                                         University or other thing
## 13                                         University or other thing
## 14                                         University or other thing
## 15                                         University or other thing
## 16                                         University or other thing
## 17                                         University or other thing
## 18                                         University or other thing
## 19                                         University or other thing
## 20                                         University or other thing
## 21                                         University or other thing
## 22                                         University or other thing
## 23                                         University or other thing
## 24                                         University or other thing
## 25                                         University or other thing
## 26                                         University or other thing
## 27                                         University or other thing
## 28                                         University or other thing
## 29                                         University or other thing
## 30                                         University or other thing
## 31                                         University or other thing
## 32                                         University or other thing
## 33                                         University or other thing
## 34                                         University or other thing
## 35                                         University or other thing
## 36                                         University or other thing
## 37                                         University or other thing
## 38                                         University or other thing
## 39                                         University or other thing
## 40                                         University or other thing
## 41                                         University or other thing
## 42                                         University or other thing
## 43                                         University or other thing
## 44                                         University or other thing
## 45                                         University or other thing
## 46                                         University or other thing
## 47                                         University or other thing
## 48                                         University or other thing
## 49                                         University or other thing
## 50                                         University or other thing
## 51                                         University or other thing
## 52                                         University or other thing
## 53                                         University or other thing
## 54                                         University or other thing
## 55                                         University or other thing
## 56                                         University or other thing
## 57                                         University or other thing
## 58                                         University or other thing
## 59                                         University or other thing
## 60                                         University or other thing
## 61                                         University or other thing
## 62                                         University or other thing
## 63                                         University or other thing
## 64                                         University or other thing
## 65                                         University or other thing
## 66                                         University or other thing
## 67                                         University or other thing
## 68                                         University or other thing
## 69                                         University or other thing
## 70                                         University or other thing
## 71                                         University or other thing
## 72                                         University or other thing
## 73                                         University or other thing
## 74                                         University or other thing
## 75                                         University or other thing
## 76                                         University or other thing
## 77                                         University or other thing
## 78                                         University or other thing
## 79                                         University or other thing
## 80                                                    Some secondary
## 81                                         University or other thing
## 82                                         University or other thing
## 83                                         University or other thing
## 84                                         University or other thing
## 85                                         University or other thing
## 86                                         University or other thing
## 87                                         University or other thing
## 88                                         University or other thing
## 89                                         University or other thing
## 90                                         University or other thing
## 91                                         University or other thing
## 92                                         University or other thing
## 93                                         University or other thing
## 94                                         University or other thing
## 95                                         University or other thing
## 96                                         University or other thing
## 97                                         University or other thing
## 98                                         University or other thing
## 99                                         University or other thing
## 100                                        University or other thing
## 101                                        University or other thing
## 102                                        University or other thing
## 103                                        University or other thing
## 104                                        University or other thing
## 105                                        University or other thing
## 106                                        University or other thing
## 107                                        University or other thing
## 108                                        University or other thing
## 109                                        University or other thing
## 110                                        University or other thing
## 111                                        University or other thing
## 112                                        University or other thing
## 113                                        University or other thing
## 114                                        University or other thing
## 115                                        University or other thing
## 116                                        University or other thing
## 117                                        University or other thing
## 118                                        University or other thing
## 119                                                   Some secondary
## 120                                                   Some secondary
## 121                                        University or other thing
## 122                                        University or other thing
## 123                                        University or other thing
## 124                                        University or other thing
## 125                                                   Some secondary
## 126                                                   Some secondary
## 127                                        University or other thing
## 128                                        University or other thing
## 129                                        University or other thing
## 130                                                   Some secondary
## 131                                        University or other thing
## 132                                        University or other thing
## 133                                        University or other thing
## 134                                        University or other thing
## 135                                        University or other thing
## 136                                        University or other thing
## 137                                        University or other thing
## 138                                                   Some secondary
## 139                                        University or other thing
## 140                                        University or other thing
## 141                                        University or other thing
## 142                                        University or other thing
## 143                                        University or other thing
## 144                                        University or other thing
## 145                                        University or other thing
## 146                                        University or other thing
## 147                                        University or other thing
## 148                                        University or other thing
## 149                                        University or other thing
## 150                                        University or other thing
## 151                                        University or other thing
## 152                                        University or other thing
## 153                                        University or other thing
## 154                                        University or other thing
## 155                                        University or other thing
## 156                                        University or other thing
## 157                                        University or other thing
## 158                                        University or other thing
## 159                                        University or other thing
## 160                                        University or other thing
## 161                                        University or other thing
## 162                                        University or other thing
## 163                                        University or other thing
## 164                                        University or other thing
## 165                                        University or other thing
## 166                                        University or other thing
## 167                                                   Some secondary
## 168                                        University or other thing
## 169                                        University or other thing
## 170                                        University or other thing
## 171                                        University or other thing
## 172                                        University or other thing
## 173                                        University or other thing
## 174                                        University or other thing
## 175                                        University or other thing
## 176                                        University or other thing
## 177                                        University or other thing
## 178                                        University or other thing
## 179                                        University or other thing
## 180                                        University or other thing
## 181                                        University or other thing
## 182                                        University or other thing
## 183                                        University or other thing
## 184                                        University or other thing
## 185                                        University or other thing
## 186                                        University or other thing
## 187                                        University or other thing
## 188                                        University or other thing
## 189                                        University or other thing
## 190                                        University or other thing
## 191                                        University or other thing
## 192                                                   Some secondary
## 193                                        University or other thing
## 194                                        University or other thing
## 195                                        University or other thing
## 196                                        University or other thing
## 197                                        University or other thing
## 198                                        University or other thing
## 199                                        University or other thing
## 200                                        University or other thing
## 201                                        University or other thing
## 202                                        University or other thing
## 203                                        University or other thing
## 204                                        University or other thing
## 205                                        University or other thing
## 206                                        University or other thing
## 207                                        University or other thing
## 208                                        University or other thing
## 209                                        University or other thing
## 210                                        University or other thing
## 211                                        University or other thing
## 212                                        University or other thing
## 213                                        University or other thing
## 214                                        University or other thing
## 215                                        University or other thing
## 216                                        University or other thing
## 217                                        University or other thing
## 218                                        University or other thing
## 219                                        University or other thing
## 220                                        University or other thing
## 221                                        University or other thing
## 222                                        University or other thing
## 223                                        University or other thing
## 224                                        University or other thing
## 225                                        University or other thing
## 226                                        University or other thing
## 227                                        University or other thing
## 228                                        University or other thing
## 229                                        University or other thing
## 230                                        University or other thing
## 231                                                   Some secondary
## 232                                        University or other thing
## 233                                        University or other thing
## 234                                        University or other thing
## 235                                        University or other thing
## 236                                        University or other thing
## 237                                        University or other thing
## 238                                        University or other thing
## 239                                        University or other thing
## 240                                                   Some secondary
## 241                                        University or other thing
## 242                                        University or other thing
## 243                                        University or other thing
## 244                                        University or other thing
## 245                                        University or other thing
## 246                                        University or other thing
## 247                                                   Some secondary
## 248                                        University or other thing
## 249                                        University or other thing
## 250                                        University or other thing
## 251                                        University or other thing
## 252                                        University or other thing
## 253                                        University or other thing
## 254                                        University or other thing
## 255                                                   Some secondary
## 256                                        University or other thing
## 257                                        University or other thing
## 258                                        University or other thing
## 259                                        University or other thing
## 260                                        University or other thing
## 261                                        University or other thing
## 262                                        University or other thing
## 263                                        University or other thing
## 264                                        University or other thing
## 265                                        University or other thing
## 266                                        University or other thing
## 267                                        University or other thing
## 268                                        University or other thing
## 269                                        University or other thing
## 270                                        University or other thing
## 271                                        University or other thing
## 272                                        University or other thing
## 273                                        University or other thing
## 274                                        University or other thing
## 275                                                   Some secondary
## 276                                        University or other thing
## 277                                        University or other thing
## 278                                        University or other thing
## 279                                        University or other thing
## 280                                        University or other thing
## 281                                        University or other thing
## 282                                        University or other thing
## 283                                        University or other thing
## 284                                        University or other thing
## 285                                        University or other thing
## 286                                        University or other thing
## 287                                        University or other thing
## 288                                        University or other thing
## 289                                        University or other thing
## 290                                        University or other thing
## 291                                        University or other thing
## 292                                        University or other thing
## 293                                        University or other thing
## 294                                        University or other thing
## 295                                        University or other thing
## 296                                        University or other thing
## 297                                        University or other thing
## 298                                        University or other thing
## 299                                        University or other thing
## 300                                        University or other thing
## 301                                        University or other thing
## 302                                        University or other thing
## 303                                        University or other thing
## 304                                        University or other thing
## 305                                        University or other thing
## 306                                        University or other thing
## 307                                        University or other thing
## 308                                        University or other thing
## 309                                        University or other thing
## 310                                        University or other thing
## 311                                        University or other thing
## 312                                                   Some secondary
## 313                                        University or other thing
## 314                                        University or other thing
## 315                                        University or other thing
## 316                                        University or other thing
## 317                                        University or other thing
## 318                                        University or other thing
## 319                                                   Some secondary
## 320                                        University or other thing
## 321                                        University or other thing
## 322                                        University or other thing
## 323                                        University or other thing
## 324                                        University or other thing
## 325                                                   Some secondary
## 326                                        University or other thing
## 327                                        University or other thing
## 328                                        University or other thing
## 329                                        University or other thing
## 330                                        University or other thing
## 331                                        University or other thing
## 332                                        University or other thing
## 333                                        University or other thing
## 334                                        University or other thing
## 335                                        University or other thing
## 336                                        University or other thing
## 337                                                   Some secondary
## 338                                        University or other thing
## 339                                        University or other thing
## 340                                        University or other thing
## 341                                        University or other thing
## 342                                        University or other thing
## 343                                        University or other thing
## 344                                        University or other thing
## 345                                        University or other thing
## 346                                        University or other thing
## 347                                        University or other thing
## 348                                        University or other thing
## 349                                        University or other thing
## 350                                        University or other thing
## 351                                        University or other thing
## 352                                        University or other thing
## 353                                        University or other thing
## 354                                        University or other thing
## 355                                        University or other thing
## 356                                        University or other thing
## 357                                        University or other thing
## 358                                        University or other thing
## 359                                        University or other thing
## 360                                        University or other thing
## 361                                        University or other thing
## 362                                        University or other thing
## 363                                        University or other thing
## 364                                        University or other thing
## 365                                        University or other thing
## 366                                        University or other thing
## 367                                        University or other thing
## 368                                        University or other thing
## 369                                        University or other thing
## 370                                        University or other thing
## 371                                        University or other thing
## 372                                        University or other thing
## 373                                        University or other thing
## 374                                        University or other thing
## 375                                        University or other thing
## 376                                        University or other thing
## 377                                        University or other thing
## 378                                                   Some secondary
## 379                                        University or other thing
## 380                                        University or other thing
## 381                                        University or other thing
## 382                                        University or other thing
## 383                                        University or other thing
## 384                                        University or other thing
## 385                                        University or other thing
## 386                                        University or other thing
## 387                                        University or other thing
## 388                                        University or other thing
## 389                                        University or other thing
## 390                                        University or other thing
## 391                                        University or other thing
## 392                                        University or other thing
## 393                                        University or other thing
## 394                                        University or other thing
## 395                                        University or other thing
## 396                                        University or other thing
## 397                                        University or other thing
## 398                                        University or other thing
## 399                                        University or other thing
## 400                                        University or other thing
## 401                                        University or other thing
## 402                                                   Some secondary
## 403                                                   Some secondary
## 404                                        University or other thing
## 405                                        University or other thing
## 406                                        University or other thing
## 407                                        University or other thing
## 408                                        University or other thing
## 409                                                   Some secondary
## 410                                        University or other thing
## 411                                        University or other thing
## 412                                        University or other thing
## 413                                        University or other thing
## 414                                        University or other thing
## 415                                        University or other thing
## 416                                                   Some secondary
## 417                                        University or other thing
## 418                                        University or other thing
## 419                                        University or other thing
## 420                                        University or other thing
## 421                                        University or other thing
## 422                                        University or other thing
## 423                                        University or other thing
## 424                                        University or other thing
## 425                                        University or other thing
## 426                                        University or other thing
## 427                                        University or other thing
## 428                                        University or other thing
## 429                                        University or other thing
## 430                                        University or other thing
## 431                                        University or other thing
## 432                                        University or other thing
## 433                                        University or other thing
## 434                                        University or other thing
## 435                                        University or other thing
## 436                                        University or other thing
## 437                                                   Some secondary
## 438                                        University or other thing
## 439                                        University or other thing
## 440                                        University or other thing
## 441                                        University or other thing
## 442                                                   Some secondary
## 443                                        University or other thing
## 444                                        University or other thing
## 445                                        University or other thing
## 446                                        University or other thing
## 447                                        University or other thing
## 448                                        University or other thing
## 449                                        University or other thing
## 450                                        University or other thing
## 451                                        University or other thing
## 452                                        University or other thing
## 453                                        University or other thing
## 454                                        University or other thing
## 455                                        University or other thing
## 456                                        University or other thing
## 457                                        University or other thing
## 458                                        University or other thing
## 459                                        University or other thing
## 460                                        University or other thing
## 461                                        University or other thing
## 462                                        University or other thing
## 463                                        University or other thing
## 464                                        University or other thing
## 465                                        University or other thing
## 466                                                   Some secondary
## 467                                        University or other thing
## 468                                        University or other thing
## 469                                        University or other thing
## 470                                        University or other thing
## 471                                        University or other thing
## 472                                        University or other thing
## 473                                        University or other thing
## 474                                        University or other thing
## 475                                        University or other thing
## 476                                        University or other thing
## 477                                        University or other thing
## 478                                                   Some secondary
## 479                                                   Some secondary
## 480                                        University or other thing
## 481                                        University or other thing
## 482                                        University or other thing
## 483                                        University or other thing
## 484                                        University or other thing
## 485                                        University or other thing
## 486                                        University or other thing
## 487                                        University or other thing
## 488                                        University or other thing
## 489                                        University or other thing
## 490                                        University or other thing
## 491                                        University or other thing
## 492                                        University or other thing
## 493                                        University or other thing
## 494                                        University or other thing
## 495                                        University or other thing
## 496                                        University or other thing
## 497                                        University or other thing
## 498                                        University or other thing
## 499                                                   Some secondary
## 500                                        University or other thing
## 501                                        University or other thing
## 502                                        University or other thing
## 503                                        University or other thing
## 504                                        University or other thing
## 505                                        University or other thing
## 506                                        University or other thing
## 507                                        University or other thing
## 508                                        University or other thing
## 509                                        University or other thing
## 510                                        University or other thing
## 511                                        University or other thing
## 512                                        University or other thing
## 513                                        University or other thing
## 514                                        University or other thing
## 515                                                   Some secondary
## 516                                        University or other thing
## 517                                        University or other thing
## 518                                        University or other thing
## 519                                        University or other thing
## 520                                        University or other thing
## 521                                        University or other thing
## 522                                        University or other thing
## 523                                        University or other thing
## 524                                        University or other thing
## 525                                        University or other thing
## 526                                        University or other thing
## 527                                        University or other thing
## 528                                        University or other thing
## 529                                        University or other thing
## 530                                        University or other thing
## 531                                        University or other thing
## 532                                        University or other thing
## 533                                        University or other thing
## 534                                        University or other thing
## 535                                        University or other thing
## 536                                        University or other thing
## 537                                        University or other thing
## 538                                        University or other thing
## 539                                        University or other thing
## 540                                        University or other thing
## 541                                        University or other thing
## 542                                        University or other thing
## 543                                        University or other thing
## 544                                        University or other thing
## 545                                                   Some secondary
## 546                                        University or other thing
## 547                                        University or other thing
## 548                                        University or other thing
## 549                                        University or other thing
## 550                                        University or other thing
## 551                                        University or other thing
## 552                                        University or other thing
## 553                                                   Some secondary
## 554                                        University or other thing
## 555                                        University or other thing
## 556                                        University or other thing
## 557                                        University or other thing
## 558                                        University or other thing
## 559                                        University or other thing
## 560                                        University or other thing
## 561                                        University or other thing
## 562                                        University or other thing
## 563                                        University or other thing
## 564                                        University or other thing
## 565                                        University or other thing
## 566                                        University or other thing
## 567                                        University or other thing
## 568                                        University or other thing
## 569                                        University or other thing
## 570                                        University or other thing
## 571                                        University or other thing
## 572                                        University or other thing
## 573                                        University or other thing
## 574                                        University or other thing
## 575                                        University or other thing
## 576                                        University or other thing
## 577                                        University or other thing
## 578                                        University or other thing
## 579                                        University or other thing
## 580                                        University or other thing
## 581                                        University or other thing
## 582                                        University or other thing
## 583                                        University or other thing
## 584                                        University or other thing
## 585                                        University or other thing
## 586                                        University or other thing
## 587                                        University or other thing
## 588                                        University or other thing
## 589                                        University or other thing
## 590                                        University or other thing
## 591                                        University or other thing
## 592                                        University or other thing
## 593                                        University or other thing
## 594                                        University or other thing
## 595                                        University or other thing
## 596                                        University or other thing
## 597                                        University or other thing
## 598                                        University or other thing
## 599                                        University or other thing
## 600                                        University or other thing
## 601                                        University or other thing
## 602                                        University or other thing
## 603                                        University or other thing
## 604                                        University or other thing
## 605                                        University or other thing
## 606                                        University or other thing
## 607                                        University or other thing
## 608                                        University or other thing
## 609                                        University or other thing
## 610                                        University or other thing
## 611                                        University or other thing
## 612                                        University or other thing
## 613                                        University or other thing
## 614                                        University or other thing
## 615                                        University or other thing
## 616                                        University or other thing
## 617                                        University or other thing
## 618                                        University or other thing
## 619                                        University or other thing
## 620                                        University or other thing
## 621                                        University or other thing
## 622                                        University or other thing
## 623                                        University or other thing
## 624                                        University or other thing
## 625                                        University or other thing
## 626                                        University or other thing
## 627                                        University or other thing
## 628                                        University or other thing
## 629                                        University or other thing
## 630                                        University or other thing
## 631                                        University or other thing
## 632                                        University or other thing
## 633                                        University or other thing
## 634                                        University or other thing
## 635                                        University or other thing
## 636                                        University or other thing
## 637                                                   Some secondary
## 638                                        University or other thing
## 639                                        University or other thing
## 640                                        University or other thing
## 641                                        University or other thing
## 642                                        University or other thing
## 643                                        University or other thing
## 644                                        University or other thing
## 645                                        University or other thing
## 646                                                   Some secondary
## 647                                        University or other thing
## 648                                        University or other thing
## 649                                        University or other thing
## 650                                        University or other thing
## 651                                                   Some secondary
## 652                                        University or other thing
## 653                                                   Some secondary
## 654                                        University or other thing
## 655                                        University or other thing
## 656                                        University or other thing
## 657                                        University or other thing
## 658                                                   Some secondary
## 659                                        University or other thing
## 660                                        University or other thing
## 661                                        University or other thing
## 662                                        University or other thing
## 663                                                   Some secondary
## 664                                        University or other thing
## 665                                        University or other thing
## 666                                        University or other thing
## 667                                        University or other thing
## 668                                        University or other thing
## 669                                        University or other thing
## 670                                        University or other thing
## 671                                        University or other thing
## 672                                        University or other thing
## 673                                        University or other thing
## 674                                        University or other thing
## 675                                        University or other thing
## 676                                        University or other thing
## 677                                        University or other thing
## 678                                        University or other thing
## 679                                                   Some secondary
## 680                                        University or other thing
## 681                                        University or other thing
## 682                                        University or other thing
## 683                                        University or other thing
## 684                                        University or other thing
## 685                                        University or other thing
## 686                                        University or other thing
## 687                                        University or other thing
## 688                                        University or other thing
## 689                                        University or other thing
## 690                                        University or other thing
## 691                                        University or other thing
## 692                                        University or other thing
## 693                                        University or other thing
## 694                                        University or other thing
## 695                                        University or other thing
## 696                                        University or other thing
## 697                                        University or other thing
## 698                                        University or other thing
## 699                                        University or other thing
## 700                                        University or other thing
## 701                                        University or other thing
## 702                                        University or other thing
## 703                                        University or other thing
## 704                                        University or other thing
## 705                                        University or other thing
## 706                                        University or other thing
## 707                                        University or other thing
## 708                                        University or other thing
## 709                                        University or other thing
## 710                                        University or other thing
## 711                                        University or other thing
## 712                                        University or other thing
## 713                                        University or other thing
## 714                                        University or other thing
## 715                                        University or other thing
## 716                                        University or other thing
## 717                                        University or other thing
## 718                                        University or other thing
## 719                                        University or other thing
## 720                                                   Some secondary
## 721                                        University or other thing
## 722                                        University or other thing
## 723                                                   Some secondary
## 724                                        University or other thing
## 725                                        University or other thing
## 726                                        University or other thing
## 727                                        University or other thing
## 728                                                   Some secondary
## 729                                        University or other thing
## 730                                        University or other thing
## 731                                        University or other thing
## 732                                                   Some secondary
## 733                                        University or other thing
## 734                                        University or other thing
## 735                                        University or other thing
## 736                                        University or other thing
## 737                                        University or other thing
## 738                                        University or other thing
## 739                                        University or other thing
## 740                                        University or other thing
## 741                                        University or other thing
## 742                                        University or other thing
## 743                                        University or other thing
## 744                                        University or other thing
## 745                                        University or other thing
## 746                                        University or other thing
## 747                                        University or other thing
## 748                                        University or other thing
## 749                                        University or other thing
## 750                                        University or other thing
## 751                                        University or other thing
## 752                                        University or other thing
## 753                                        University or other thing
## 754                                        University or other thing
## 755                                        University or other thing
## 756                                        University or other thing
## 757                                        University or other thing
## 758                                        University or other thing
## 759                                        University or other thing
## 760                                        University or other thing
## 761                                        University or other thing
## 762                                        University or other thing
## 763                                                   Some secondary
## 764                                        University or other thing
## 765                                        University or other thing
## 766                                        University or other thing
## 767                                        University or other thing
## 768                                        University or other thing
## 769                                        University or other thing
## 770                                        University or other thing
## 771                                        University or other thing
## 772                                        University or other thing
## 773                                        University or other thing
## 774                                        University or other thing
## 775                                        University or other thing
## 776                                        University or other thing
## 777                                        University or other thing
## 778                                        University or other thing
## 779                                        University or other thing
## 780                                        University or other thing
## 781                                        University or other thing
## 782                                        University or other thing
## 783                                        University or other thing
## 784                                        University or other thing
## 785                                        University or other thing
## 786                                        University or other thing
## 787                                        University or other thing
## 788                                        University or other thing
## 789                                        University or other thing
## 790                                        University or other thing
## 791                                        University or other thing
## 792                                        University or other thing
## 793                                        University or other thing
## 794                                        University or other thing
## 795                                        University or other thing
## 796                                        University or other thing
## 797                                        University or other thing
## 798                                        University or other thing
## 799                                        University or other thing
## 800                                        University or other thing
## 801                                        University or other thing
## 802                                        University or other thing
## 803                                        University or other thing
## 804                                                   Some secondary
## 805                                                   Some secondary
## 806                                        University or other thing
## 807                                        University or other thing
## 808                                        University or other thing
## 809                                        University or other thing
## 810                                        University or other thing
## 811                                        University or other thing
## 812                                        University or other thing
## 813                                        University or other thing
## 814                                        University or other thing
## 815                                        University or other thing
## 816                                        University or other thing
## 817                                        University or other thing
## 818                                                   Some secondary
## 819                                        University or other thing
## 820                                        University or other thing
## 821                                        University or other thing
## 822                                        University or other thing
## 823                                        University or other thing
## 824                                        University or other thing
## 825                                        University or other thing
## 826                                        University or other thing
## 827                                                   Some secondary
## 828                                        University or other thing
## 829                                        University or other thing
## 830                                        University or other thing
## 831                                                   Some secondary
## 832                                        University or other thing
## 833                                        University or other thing
## 834                                        University or other thing
## 835                                                   Some secondary
## 836                                        University or other thing
## 837                                        University or other thing
## 838                                        University or other thing
## 839                                        University or other thing
## 840                                        University or other thing
## 841                                        University or other thing
## 842                                        University or other thing
## 843                                        University or other thing
## 844                                        University or other thing
## 845                                        University or other thing
## 846                                        University or other thing
## 847                                        University or other thing
## 848                                        University or other thing
## 849                                        University or other thing
## 850                                                   Some secondary
## 851                                        University or other thing
## 852                                                   Some secondary
## 853                                        University or other thing
## 854                                                   Some secondary
## 855                                        University or other thing
## 856                                        University or other thing
## 857                                        University or other thing
## 858                                        University or other thing
## 859                                        University or other thing
## 860                                        University or other thing
## 861                                        University or other thing
## 862                                        University or other thing
## 863                                        University or other thing
## 864                                        University or other thing
## 865                                        University or other thing
## 866                                        University or other thing
## 867                                        University or other thing
## 868                                        University or other thing
## 869                                        University or other thing
## 870                                        University or other thing
## 871                                        University or other thing
## 872                                        University or other thing
## 873                                        University or other thing
## 874                                        University or other thing
## 875                                        University or other thing
## 876                                        University or other thing
## 877                                        University or other thing
## 878                                        University or other thing
## 879                                        University or other thing
## 880                                        University or other thing
## 881                                        University or other thing
## 882                                        University or other thing
## 883                                        University or other thing
## 884                                        University or other thing
## 885                                        University or other thing
## 886                                        University or other thing
## 887                                        University or other thing
## 888                                        University or other thing
## 889                                        University or other thing
## 890                                                   Some secondary
## 891                                                   Some secondary
## 892                                                   Some secondary
## 893                                        University or other thing
## 894                                        University or other thing
## 895                                        University or other thing
## 896                                        University or other thing
## 897                                        University or other thing
## 898                                        University or other thing
## 899                                        University or other thing
## 900                                        University or other thing
## 901                                        University or other thing
## 902                                        University or other thing
## 903                                        University or other thing
## 904                                        University or other thing
## 905                                        University or other thing
## 906                                        University or other thing
## 907                                        University or other thing
## 908                                        University or other thing
## 909                                        University or other thing
## 910                                        University or other thing
## 911                                        University or other thing
## 912                                        University or other thing
## 913                                        University or other thing
## 914                                        University or other thing
## 915                                        University or other thing
## 916                                        University or other thing
## 917                                        University or other thing
## 918                                        University or other thing
## 919                                        University or other thing
## 920                                        University or other thing
## 921                                        University or other thing
## 922                                        University or other thing
## 923                                        University or other thing
## 924                                        University or other thing
## 925                                        University or other thing
## 926                                        University or other thing
## 927                                        University or other thing
## 928                                        University or other thing
## 929                                        University or other thing
## 930                                                   Some secondary
## 931                                        University or other thing
## 932                                        University or other thing
## 933                                        University or other thing
## 934                                        University or other thing
## 935                                        University or other thing
## 936                                        University or other thing
## 937                                        University or other thing
## 938                                        University or other thing
## 939                                        University or other thing
## 940                                                   Some secondary
## 941                                        University or other thing
## 942                                        University or other thing
## 943                                        University or other thing
## 944                                        University or other thing
## 945                                        University or other thing
## 946                                        University or other thing
## 947                                        University or other thing
## 948                                        University or other thing
## 949                                        University or other thing
## 950                                        University or other thing
## 951                                        University or other thing
## 952                                                   Some secondary
## 953                                        University or other thing
## 954                                        University or other thing
## 955                                        University or other thing
## 956                                        University or other thing
## 957                                        University or other thing
## 958                                        University or other thing
## 959                                        University or other thing
## 960                                        University or other thing
## 961                                        University or other thing
## 962                                        University or other thing
## 963                                                   Some secondary
## 964                                        University or other thing
## 965                                        University or other thing
## 966                                        University or other thing
## 967                                        University or other thing
## 968                                        University or other thing
## 969                                        University or other thing
## 970                                        University or other thing
## 971                                        University or other thing
## 972                                        University or other thing
## 973                                        University or other thing
## 974                                        University or other thing
## 975                                        University or other thing
## 976                                        University or other thing
## 977                                        University or other thing
## 978                                                   Some secondary
## 979                                        University or other thing
## 980                                        University or other thing
## 981                                        University or other thing
## 982                                        University or other thing
## 983                                        University or other thing
## 984                                        University or other thing
## 985                                        University or other thing
## 986                                        University or other thing
## 987                                        University or other thing
## 988                                        University or other thing
## 989                                        University or other thing
## 990                                        University or other thing
## 991                                        University or other thing
## 992                                        University or other thing
## 993                                        University or other thing
## 994                                        University or other thing
## 995                                        University or other thing
## 996                                        University or other thing
## 997                                        University or other thing
## 998                                        University or other thing
## 999                                        University or other thing
## 1000                                                  Some secondary
## 1001                                       University or other thing
## 1002                                       University or other thing
## 1003                                       University or other thing
## 1004                                       University or other thing
## 1005                                       University or other thing
## 1006                                       University or other thing
## 1007                                       University or other thing
## 1008                                       University or other thing
## 1009                                       University or other thing
## 1010                                       University or other thing
## 1011                                       University or other thing
## 1012                                       University or other thing
## 1013                                       University or other thing
## 1014                                       University or other thing
## 1015                                                  Some secondary
## 1016                                       University or other thing
## 1017                                                  Some secondary
## 1018                                       University or other thing
## 1019                                       University or other thing
## 1020                                       University or other thing
## 1021                                       University or other thing
## 1022                                       University or other thing
## 1023                                                  Some secondary
## 1024                                       University or other thing
## 1025                                       University or other thing
## 1026                                       University or other thing
## 1027                                       University or other thing
## 1028                                       University or other thing
## 1029                                       University or other thing
## 1030                                       University or other thing
## 1031                                       University or other thing
## 1032                                       University or other thing
## 1033                                       University or other thing
## 1034                                       University or other thing
## 1035                                                  Some secondary
## 1036                                       University or other thing
## 1037                                       University or other thing
## 1038                                       University or other thing
## 1039                                       University or other thing
## 1040                                                  Some secondary
## 1041                                       University or other thing
## 1042                                       University or other thing
## 1043                                       University or other thing
## 1044                                       University or other thing
## 1045                                       University or other thing
## 1046                                       University or other thing
## 1047                                       University or other thing
## 1048                                       University or other thing
## 1049                                       University or other thing
## 1050                                       University or other thing
## 1051                                                  Some secondary
## 1052                                                  Some secondary
## 1053                                       University or other thing
## 1054                                       University or other thing
## 1055                                       University or other thing
## 1056                                       University or other thing
## 1057                                       University or other thing
## 1058                                       University or other thing
## 1059                                       University or other thing
## 1060                                       University or other thing
## 1061                                       University or other thing
## 1062                                       University or other thing
## 1063                                       University or other thing
## 1064                                       University or other thing
## 1065                                       University or other thing
## 1066                                       University or other thing
## 1067                                       University or other thing
## 1068                                       University or other thing
## 1069                                       University or other thing
## 1070                                       University or other thing
## 1071                                       University or other thing
## 1072                                       University or other thing
## 1073                                       University or other thing
## 1074                                       University or other thing
## 1075                                       University or other thing
## 1076                                       University or other thing
## 1077                                       University or other thing
## 1078                                       University or other thing
## 1079                                       University or other thing
## 1080                                       University or other thing
## 1081                                       University or other thing
## 1082                                       University or other thing
## 1083                                       University or other thing
## 1084                                       University or other thing
## 1085                                       University or other thing
## 1086                                       University or other thing
## 1087                                       University or other thing
## 1088                                       University or other thing
## 1089                                       University or other thing
## 1090                                       University or other thing
## 1091                                       University or other thing
## 1092                                       University or other thing
## 1093                                       University or other thing
## 1094                                       University or other thing
## 1095                                       University or other thing
## 1096                                       University or other thing
## 1097                                       University or other thing
## 1098                                       University or other thing
## 1099                                       University or other thing
## 1100                                       University or other thing
## 1101                                       University or other thing
## 1102                                       University or other thing
## 1103                                                  Some secondary
## 1104                                       University or other thing
## 1105                                       University or other thing
## 1106                                       University or other thing
## 1107                                       University or other thing
## 1108                                       University or other thing
## 1109                                       University or other thing
## 1110                                       University or other thing
## 1111                                       University or other thing
## 1112                                       University or other thing
## 1113                                       University or other thing
## 1114                                       University or other thing
## 1115                                       University or other thing
## 1116                                       University or other thing
## 1117                                       University or other thing
## 1118                                       University or other thing
## 1119                                       University or other thing
## 1120                                       University or other thing
## 1121                                       University or other thing
## 1122                                       University or other thing
## 1123                                       University or other thing
## 1124                                       University or other thing
## 1125                                       University or other thing
## 1126                                       University or other thing
## 1127                                       University or other thing
## 1128                                       University or other thing
## 1129                                       University or other thing
## 1130                                       University or other thing
## 1131                                       University or other thing
## 1132                                       University or other thing
## 1133                                       University or other thing
## 1134                                       University or other thing
## 1135                                       University or other thing
## 1136                                       University or other thing
## 1137                                       University or other thing
## 1138                                       University or other thing
## 1139                                       University or other thing
## 1140                                       University or other thing
## 1141                                       University or other thing
## 1142                                                  Some secondary
## 1143                                       University or other thing
## 1144                                       University or other thing
## 1145                                       University or other thing
## 1146                                       University or other thing
## 1147                                       University or other thing
## 1148                                       University or other thing
## 1149                                       University or other thing
## 1150                                       University or other thing
## 1151                                       University or other thing
## 1152                                       University or other thing
## 1153                                       University or other thing
## 1154                                       University or other thing
## 1155                                       University or other thing
## 1156                                       University or other thing
## 1157                                       University or other thing
## 1158                                       University or other thing
## 1159                                       University or other thing
## 1160                                       University or other thing
## 1161                                       University or other thing
## 1162                                       University or other thing
## 1163                                       University or other thing
## 1164                                       University or other thing
## 1165                                       University or other thing
## 1166                                       University or other thing
## 1167                                                  Some secondary
## 1168                                                  Some secondary
## 1169                                                  Some secondary
## 1170                                       University or other thing
## 1171                                       University or other thing
## 1172                                       University or other thing
## 1173                                       University or other thing
## 1174                                       University or other thing
## 1175                                       University or other thing
## 1176                                                  Some secondary
## 1177                                       University or other thing
## 1178                                       University or other thing
## 1179                                       University or other thing
## 1180                                       University or other thing
## 1181                                       University or other thing
## 1182                                       University or other thing
## 1183                                       University or other thing
## 1184                                       University or other thing
## 1185                                       University or other thing
## 1186                                       University or other thing
## 1187                                       University or other thing
## 1188                                       University or other thing
## 1189                                       University or other thing
## 1190                                       University or other thing
## 1191                                       University or other thing
## 1192                                       University or other thing
## 1193                                       University or other thing
## 1194                                       University or other thing
## 1195                                                  Some secondary
## 1196                                       University or other thing
## 1197                                       University or other thing
## 1198                                       University or other thing
## 1199                                       University or other thing
## 1200                                                  Some secondary
## 1201                                       University or other thing
## 1202                                       University or other thing
## 1203                                       University or other thing
## 1204                                       University or other thing
## 1205                                       University or other thing
## 1206                                       University or other thing
## 1207                                       University or other thing
## 1208                                       University or other thing
## 1209                                       University or other thing
## 1210                                       University or other thing
## 1211                                       University or other thing
## 1212                                       University or other thing
## 1213                                       University or other thing
## 1214                                       University or other thing
## 1215                                       University or other thing
## 1216                                       University or other thing
## 1217                                       University or other thing
## 1218                                       University or other thing
## 1219                                       University or other thing
## 1220                                       University or other thing
## 1221                                       University or other thing
## 1222                                       University or other thing
## 1223                                       University or other thing
## 1224                                       University or other thing
## 1225                                       University or other thing
## 1226                                       University or other thing
## 1227                                       University or other thing
## 1228                                       University or other thing
## 1229                                       University or other thing
## 1230                                       University or other thing
## 1231                                       University or other thing
## 1232                                       University or other thing
## 1233                                       University or other thing
## 1234                                       University or other thing
## 1235                                       University or other thing
## 1236                                       University or other thing
## 1237                                       University or other thing
## 1238                                       University or other thing
## 1239                                       University or other thing
## 1240                                       University or other thing
## 1241                                       University or other thing
## 1242                                       University or other thing
## 1243                                                  Some secondary
## 1244                                       University or other thing
## 1245                                       University or other thing
## 1246                                       University or other thing
## 1247                                       University or other thing
## 1248                                       University or other thing
## 1249                                                  Some secondary
## 1250                                       University or other thing
## 1251                                       University or other thing
## 1252                                       University or other thing
## 1253                                                  Some secondary
## 1254                                       University or other thing
## 1255                                       University or other thing
## 1256                                                  Some secondary
## 1257                                       University or other thing
## 1258                                                  Some secondary
## 1259                                       University or other thing
## 1260                                       University or other thing
## 1261                                       University or other thing
## 1262                                       University or other thing
## 1263                                       University or other thing
## 1264                                       University or other thing
## 1265                                                  Some secondary
## 1266                                       University or other thing
## 1267                                       University or other thing
## 1268                                       University or other thing
## 1269                                                  Some secondary
## 1270                                       University or other thing
## 1271                                       University or other thing
## 1272                                       University or other thing
## 1273                                       University or other thing
## 1274                                       University or other thing
## 1275                                       University or other thing
## 1276                                       University or other thing
## 1277                                       University or other thing
## 1278                                       University or other thing
## 1279                                       University or other thing
## 1280                                       University or other thing
## 1281                                       University or other thing
## 1282                                       University or other thing
## 1283                                       University or other thing
## 1284                                       University or other thing
## 1285                                       University or other thing
## 1286                                       University or other thing
## 1287                                       University or other thing
## 1288                                       University or other thing
## 1289                                       University or other thing
## 1290                                       University or other thing
## 1291                                       University or other thing
## 1292                                       University or other thing
## 1293                                       University or other thing
## 1294                                       University or other thing
## 1295                                       University or other thing
## 1296                                                  Some secondary
## 1297                                       University or other thing
## 1298                                       University or other thing
## 1299                                       University or other thing
## 1300                                       University or other thing
## 1301                                       University or other thing
## 1302                                       University or other thing
## 1303                                       University or other thing
## 1304                                       University or other thing
## 1305                                       University or other thing
## 1306                                       University or other thing
## 1307                                       University or other thing
## 1308                                       University or other thing
## 1309                                       University or other thing
## 1310                                       University or other thing
## 1311                                       University or other thing
## 1312                                       University or other thing
## 1313                                       University or other thing
## 1314                                       University or other thing
## 1315                                       University or other thing
## 1316                                       University or other thing
## 1317                                       University or other thing
## 1318                                       University or other thing
## 1319                                                  Some secondary
## 1320                                       University or other thing
## 1321                                       University or other thing
## 1322                                       University or other thing
## 1323                                       University or other thing
## 1324                                       University or other thing
## 1325                                       University or other thing
## 1326                                       University or other thing
## 1327                                       University or other thing
## 1328                                       University or other thing
## 1329                                       University or other thing
## 1330                                       University or other thing
## 1331                                       University or other thing
## 1332                                       University or other thing
## 1333                                       University or other thing
## 1334                                       University or other thing
## 1335                                       University or other thing
## 1336                                       University or other thing
## 1337                                       University or other thing
## 1338                                       University or other thing
## 1339                                       University or other thing
## 1340                                       University or other thing
## 1341                                       University or other thing
## 1342                                       University or other thing
## 1343                                       University or other thing
## 1344                                       University or other thing
## 1345                                       University or other thing
## 1346                                       University or other thing
## 1347                                       University or other thing
## 1348                                       University or other thing
## 1349                                       University or other thing
## 1350                                       University or other thing
## 1351                                       University or other thing
## 1352                                       University or other thing
## 1353                                       University or other thing
## 1354                                       University or other thing
## 1355                                       University or other thing
## 1356                                       University or other thing
## 1357                                       University or other thing
## 1358                                       University or other thing
## 1359                                       University or other thing
## 1360                                       University or other thing
## 1361                                       University or other thing
## 1362                                       University or other thing
## 1363                                       University or other thing
## 1364                                       University or other thing
## 1365                                       University or other thing
## 1366                                       University or other thing
## 1367                                       University or other thing
## 1368                                       University or other thing
## 1369                                       University or other thing
## 1370                                       University or other thing
## 1371                                       University or other thing
## 1372                                       University or other thing
## 1373                                       University or other thing
## 1374                                       University or other thing
## 1375                                       University or other thing
## 1376                                       University or other thing
## 1377                                       University or other thing
## 1378                                                  Some secondary
## 1379                                       University or other thing
## 1380                                       University or other thing
## 1381                                       University or other thing
## 1382                                       University or other thing
## 1383                                       University or other thing
## 1384                                       University or other thing
## 1385                                       University or other thing
## 1386                                       University or other thing
## 1387                                       University or other thing
## 1388                                       University or other thing
## 1389                                       University or other thing
## 1390                                       University or other thing
## 1391                                       University or other thing
## 1392                                       University or other thing
## 1393                                       University or other thing
## 1394                                       University or other thing
## 1395                                       University or other thing
## 1396                                       University or other thing
## 1397                                       University or other thing
## 1398                                       University or other thing
## 1399                                       University or other thing
## 1400                                       University or other thing
## 1401                                       University or other thing
## 1402                                       University or other thing
## 1403                                       University or other thing
## 1404                                       University or other thing
## 1405                                       University or other thing
## 1406                                       University or other thing
## 1407                                       University or other thing
## 1408                                       University or other thing
## 1409                                       University or other thing
## 1410                                       University or other thing
## 1411                                                  Some secondary
## 1412                                       University or other thing
## 1413                                       University or other thing
## 1414                                       University or other thing
## 1415                                       University or other thing
## 1416                                       University or other thing
## 1417                                       University or other thing
## 1418                                       University or other thing
## 1419                                       University or other thing
## 1420                                       University or other thing
## 1421                                       University or other thing
## 1422                                       University or other thing
## 1423                                       University or other thing
## 1424                                       University or other thing
## 1425                                       University or other thing
## 1426                                       University or other thing
## 1427                                       University or other thing
## 1428                                       University or other thing
## 1429                                       University or other thing
## 1430                                       University or other thing
## 1431                                       University or other thing
## 1432                                                  Some secondary
## 1433                                       University or other thing
## 1434                                       University or other thing
## 1435                                       University or other thing
## 1436                                       University or other thing
## 1437                                       University or other thing
## 1438                                       University or other thing
## 1439                                       University or other thing
## 1440                                       University or other thing
## 1441                                       University or other thing
## 1442                                       University or other thing
## 1443                                       University or other thing
## 1444                                       University or other thing
## 1445                                       University or other thing
## 1446                                       University or other thing
## 1447                                       University or other thing
## 1448                                       University or other thing
## 1449                                       University or other thing
## 1450                                       University or other thing
## 1451                                       University or other thing
## 1452                                       University or other thing
## 1453                                       University or other thing
## 1454                                       University or other thing
## 1455                                       University or other thing
## 1456                                       University or other thing
## 1457                                       University or other thing
## 1458                                                  Some secondary
## 1459                                       University or other thing
## 1460                                       University or other thing
## 1461                                       University or other thing
## 1462                                       University or other thing
## 1463                                       University or other thing
## 1464                                       University or other thing
## 1465                                       University or other thing
## 1466                                                  Some secondary
## 1467                                       University or other thing
## 1468                                       University or other thing
## 1469                                       University or other thing
## 1470                                       University or other thing
## 1471                                       University or other thing
## 1472                                       University or other thing
## 1473                                                  Some secondary
## 1474                                       University or other thing
## 1475                                       University or other thing
## 1476                                       University or other thing
## 1477                                       University or other thing
## 1478                                       University or other thing
## 1479                                       University or other thing
## 1480                                       University or other thing
## 1481                                       University or other thing
## 1482                                       University or other thing
## 1483                                       University or other thing
## 1484                                       University or other thing
## 1485                                       University or other thing
## 1486                                       University or other thing
## 1487                                       University or other thing
## 1488                                       University or other thing
## 1489                                       University or other thing
## 1490                                       University or other thing
## 1491                                       University or other thing
## 1492                                       University or other thing
## 1493                                       University or other thing
## 1494                                       University or other thing
## 1495                                       University or other thing
## 1496                                       University or other thing
## 1497                                       University or other thing
## 1498                                       University or other thing
## 1499                                                  Some secondary
## 1500                                       University or other thing
## 1501                                       University or other thing
## 1502                                       University or other thing
## 1503                                       University or other thing
## 1504                                       University or other thing
## 1505                                       University or other thing
## 1506                                       University or other thing
## 1507                                       University or other thing
## 1508                                       University or other thing
## 1509                                       University or other thing
## 1510                                                  Some secondary
## 1511                                       University or other thing
## 1512                                       University or other thing
## 1513                                       University or other thing
## 1514                                       University or other thing
## 1515                                       University or other thing
## 1516                                       University or other thing
## 1517                                       University or other thing
## 1518                                       University or other thing
## 1519                                                  Some secondary
## 1520                                       University or other thing
## 1521                                       University or other thing
## 1522                                                  Some secondary
## 1523                                       University or other thing
## 1524                                       University or other thing
## 1525                                       University or other thing
## 1526                                       University or other thing
## 1527                                       University or other thing
## 1528                                       University or other thing
## 1529                                       University or other thing
## 1530                                       University or other thing
## 1531                                       University or other thing
## 1532                                       University or other thing
## 1533                                       University or other thing
## 1534                                       University or other thing
## 1535                                       University or other thing
## 1536                                       University or other thing
## 1537                                       University or other thing
## 1538                                       University or other thing
## 1539                                       University or other thing
## 1540                                       University or other thing
## 1541                                       University or other thing
## 1542                                       University or other thing
## 1543                                                  Some secondary
## 1544                                       University or other thing
## 1545                                       University or other thing
## 1546                                       University or other thing
## 1547                                       University or other thing
## 1548                                       University or other thing
## 1549                                       University or other thing
## 1550                                       University or other thing
## 1551                                       University or other thing
## 1552                                       University or other thing
## 1553                                       University or other thing
## 1554                                       University or other thing
## 1555                                       University or other thing
## 1556                                       University or other thing
## 1557                                       University or other thing
## 1558                                       University or other thing
## 1559                                       University or other thing
## 1560                                       University or other thing
## 1561                                       University or other thing
## 1562                                       University or other thing
## 1563                                       University or other thing
## 1564                                       University or other thing
## 1565                                       University or other thing
## 1566                                       University or other thing
## 1567                                       University or other thing
## 1568                                       University or other thing
## 1569                                       University or other thing
## 1570                                       University or other thing
## 1571                                       University or other thing
## 1572                                       University or other thing
## 1573                                       University or other thing
## 1574                                       University or other thing
## 1575                                       University or other thing
## 1576                                       University or other thing
## 1577                                       University or other thing
## 1578                                       University or other thing
## 1579                                       University or other thing
## 1580                                       University or other thing
## 1581                                       University or other thing
## 1582                                       University or other thing
## 1583                                       University or other thing
## 1584                                       University or other thing
## 1585                                       University or other thing
## 1586                                       University or other thing
## 1587                                       University or other thing
## 1588                                       University or other thing
## 1589                                       University or other thing
## 1590                                       University or other thing
## 1591                                       University or other thing
## 1592                                       University or other thing
## 1593                                       University or other thing
## 1594                                       University or other thing
## 1595                                       University or other thing
## 1596                                       University or other thing
## 1597                                       University or other thing
## 1598                                       University or other thing
## 1599                                       University or other thing
## 1600                                       University or other thing
## 1601                                       University or other thing
## 1602                                       University or other thing
## 1603                                       University or other thing
## 1604                                                  Some secondary
## 1605                                       University or other thing
## 1606                                       University or other thing
## 1607                                       University or other thing
## 1608                                       University or other thing
## 1609                                       University or other thing
## 1610                                       University or other thing
## 1611                                       University or other thing
## 1612                                       University or other thing
## 1613                                       University or other thing
## 1614                                       University or other thing
## 1615                                       University or other thing
## 1616                                       University or other thing
## 1617                                                  Some secondary
## 1618                                       University or other thing
## 1619                                       University or other thing
## 1620                                       University or other thing
## 1621                                       University or other thing
## 1622                                       University or other thing
## 1623                                       University or other thing
## 1624                                       University or other thing
## 1625                                       University or other thing
## 1626                                       University or other thing
## 1627                                       University or other thing
## 1628                                       University or other thing
## 1629                                       University or other thing
## 1630                                       University or other thing
## 1631                                       University or other thing
## 1632                                       University or other thing
## 1633                                                  Some secondary
## 1634                                       University or other thing
## 1635                                       University or other thing
## 1636                                       University or other thing
## 1637                                       University or other thing
## 1638                                       University or other thing
## 1639                                       University or other thing
## 1640                                       University or other thing
## 1641                                       University or other thing
## 1642                                       University or other thing
## 1643                                       University or other thing
## 1644                                       University or other thing
## 1645                                       University or other thing
## 1646                                       University or other thing
## 1647                                       University or other thing
## 1648                                       University or other thing
## 1649                                       University or other thing
## 1650                                       University or other thing
## 1651                                       University or other thing
## 1652                                       University or other thing
## 1653                                       University or other thing
## 1654                                       University or other thing
## 1655                                       University or other thing
## 1656                                                  Some secondary
## 1657                                       University or other thing
## 1658                                       University or other thing
## 1659                                       University or other thing
## 1660                                       University or other thing
## 1661                                       University or other thing
## 1662                                       University or other thing
## 1663                                       University or other thing
## 1664                                       University or other thing
## 1665                                       University or other thing
## 1666                                       University or other thing
## 1667                                       University or other thing
## 1668                                       University or other thing
## 1669                                       University or other thing
## 1670                                       University or other thing
## 1671                                                  Some secondary
## 1672                                       University or other thing
## 1673                                       University or other thing
## 1674                                       University or other thing
## 1675                                       University or other thing
## 1676                                       University or other thing
## 1677                                       University or other thing
## 1678                                       University or other thing
## 1679                                                  Some secondary
## 1680                                       University or other thing
## 1681                                       University or other thing
## 1682                                       University or other thing
## 1683                                       University or other thing
## 1684                                       University or other thing
## 1685                                       University or other thing
## 1686                                       University or other thing
## 1687                                       University or other thing
## 1688                                       University or other thing
## 1689                                       University or other thing
## 1690                                       University or other thing
## 1691                                       University or other thing
## 1692                                       University or other thing
## 1693                                       University or other thing
## 1694                                       University or other thing
## 1695                                                  Some secondary
## 1696                                       University or other thing
## 1697                                       University or other thing
## 1698                                       University or other thing
## 1699                                       University or other thing
## 1700                                       University or other thing
## 1701                                       University or other thing
## 1702                                       University or other thing
## 1703                                       University or other thing
## 1704                                       University or other thing
## 1705                                       University or other thing
## 1706                                       University or other thing
## 1707                                       University or other thing
## 1708                                       University or other thing
## 1709                                       University or other thing
## 1710                                       University or other thing
## 1711                                                  Some secondary
## 1712                                       University or other thing
## 1713                                       University or other thing
## 1714                                       University or other thing
## 1715                                       University or other thing
## 1716                                       University or other thing
## 1717                                       University or other thing
## 1718                                       University or other thing
## 1719                                       University or other thing
## 1720                                       University or other thing
## 1721                                       University or other thing
## 1722                                       University or other thing
## 1723                                       University or other thing
## 1724                                       University or other thing
## 1725                                                  Some secondary
## 1726                                       University or other thing
## 1727                                       University or other thing
## 1728                                       University or other thing
## 1729                                       University or other thing
## 1730                                       University or other thing
## 1731                                       University or other thing
## 1732                                       University or other thing
## 1733                                       University or other thing
## 1734                                       University or other thing
## 1735                                       University or other thing
## 1736                                       University or other thing
## 1737                                       University or other thing
## 1738                                       University or other thing
## 1739                                       University or other thing
## 1740                                                  Some secondary
## 1741                                       University or other thing
## 1742                                       University or other thing
## 1743                                       University or other thing
## 1744                                       University or other thing
## 1745                                       University or other thing
## 1746                                       University or other thing
## 1747                                       University or other thing
## 1748                                       University or other thing
## 1749                                       University or other thing
## 1750                                       University or other thing
## 1751                                       University or other thing
## 1752                                       University or other thing
## 1753                                                  Some secondary
## 1754                                       University or other thing
## 1755                                       University or other thing
## 1756                                       University or other thing
## 1757                                       University or other thing
## 1758                                       University or other thing
## 1759                                       University or other thing
## 1760                                       University or other thing
## 1761                                       University or other thing
## 1762                                       University or other thing
## 1763                                       University or other thing
## 1764                                       University or other thing
## 1765                                                  Some secondary
## 1766                                       University or other thing
## 1767                                       University or other thing
## 1768                                       University or other thing
## 1769                                       University or other thing
## 1770                                       University or other thing
## 1771                                       University or other thing
## 1772                                       University or other thing
## 1773                                       University or other thing
## 1774                                       University or other thing
## 1775                                       University or other thing
## 1776                                       University or other thing
## 1777                                       University or other thing
## 1778                                                  Some secondary
## 1779                                       University or other thing
## 1780                                       University or other thing
## 1781                                       University or other thing
## 1782                                       University or other thing
## 1783                                       University or other thing
## 1784                                                  Some secondary
## 1785                                       University or other thing
## 1786                                       University or other thing
## 1787                                       University or other thing
## 1788                                       University or other thing
## 1789                                       University or other thing
## 1790                                       University or other thing
## 1791                                       University or other thing
## 1792                                       University or other thing
## 1793                                       University or other thing
## 1794                                       University or other thing
## 1795                                       University or other thing
## 1796                                       University or other thing
## 1797                                       University or other thing
## 1798                                       University or other thing
## 1799                                       University or other thing
## 1800                                       University or other thing
## 1801                                       University or other thing
## 1802                                       University or other thing
## 1803                                       University or other thing
## 1804                                                  Some secondary
## 1805                                       University or other thing
## 1806                                       University or other thing
## 1807                                       University or other thing
## 1808                                       University or other thing
## 1809                                       University or other thing
## 1810                                       University or other thing
## 1811                                       University or other thing
## 1812                                       University or other thing
## 1813                                       University or other thing
## 1814                                       University or other thing
## 1815                                       University or other thing
## 1816                                       University or other thing
## 1817                                       University or other thing
## 1818                                       University or other thing
## 1819                                       University or other thing
## 1820                                       University or other thing
## 1821                                       University or other thing
## 1822                                       University or other thing
## 1823                                       University or other thing
## 1824                                       University or other thing
## 1825                                       University or other thing
## 1826                                       University or other thing
## 1827                                       University or other thing
## 1828                                       University or other thing
## 1829                                       University or other thing
## 1830                                       University or other thing
## 1831                                       University or other thing
## 1832                                       University or other thing
## 1833                                       University or other thing
## 1834                                       University or other thing
## 1835                                       University or other thing
## 1836                                       University or other thing
## 1837                                       University or other thing
## 1838                                       University or other thing
## 1839                                                  Some secondary
## 1840                                       University or other thing
## 1841                                       University or other thing
## 1842                                       University or other thing
## 1843                                       University or other thing
## 1844                                       University or other thing
## 1845                                       University or other thing
## 1846                                       University or other thing
## 1847                                       University or other thing
## 1848                                       University or other thing
## 1849                                       University or other thing
## 1850                                       University or other thing
## 1851                                       University or other thing
## 1852                                       University or other thing
## 1853                                       University or other thing
## 1854                                       University or other thing
## 1855                                       University or other thing
## 1856                                       University or other thing
## 1857                                       University or other thing
## 1858                                       University or other thing
## 1859                                       University or other thing
## 1860                                       University or other thing
## 1861                                       University or other thing
## 1862                                       University or other thing
## 1863                                       University or other thing
## 1864                                       University or other thing
## 1865                                       University or other thing
## 1866                                       University or other thing
## 1867                                       University or other thing
## 1868                                                  Some secondary
## 1869                                       University or other thing
## 1870                                       University or other thing
## 1871                                                  Some secondary
## 1872                                       University or other thing
## 1873                                       University or other thing
## 1874                                       University or other thing
## 1875                                                  Some secondary
## 1876                                       University or other thing
## 1877                                       University or other thing
## 1878                                       University or other thing
## 1879                                       University or other thing
## 1880                                       University or other thing
## 1881                                       University or other thing
## 1882                                       University or other thing
## 1883                                       University or other thing
## 1884                                       University or other thing
## 1885                                                  Some secondary
## 1886                                       University or other thing
## 1887                                       University or other thing
## 1888                                       University or other thing
## 1889                                       University or other thing
## 1890                                       University or other thing
## 1891                                       University or other thing
## 1892                                       University or other thing
## 1893                                       University or other thing
## 1894                                       University or other thing
## 1895                                       University or other thing
## 1896                                       University or other thing
## 1897                                       University or other thing
## 1898                                       University or other thing
## 1899                                       University or other thing
## 1900                                       University or other thing
## 1901                                       University or other thing
## 1902                                       University or other thing
## 1903                                       University or other thing
## 1904                                       University or other thing
## 1905                                       University or other thing
## 1906                                       University or other thing
## 1907                                       University or other thing
## 1908                                       University or other thing
## 1909                                       University or other thing
## 1910                                                  Some secondary
## 1911                                       University or other thing
## 1912                                       University or other thing
## 1913                                       University or other thing
## 1914                                       University or other thing
## 1915                                       University or other thing
## 1916                                       University or other thing
## 1917                                       University or other thing
## 1918                                       University or other thing
## 1919                                       University or other thing
## 1920                                       University or other thing
## 1921                                       University or other thing
## 1922                                       University or other thing
## 1923                                       University or other thing
## 1924                                       University or other thing
## 1925                                       University or other thing
## 1926                                       University or other thing
## 1927                                       University or other thing
## 1928                                       University or other thing
## 1929                                       University or other thing
## 1930                                       University or other thing
## 1931                                       University or other thing
## 1932                                       University or other thing
## 1933                                       University or other thing
## 1934                                       University or other thing
## 1935                                       University or other thing
## 1936                                       University or other thing
## 1937                                       University or other thing
## 1938                                       University or other thing
## 1939                                       University or other thing
## 1940                                       University or other thing
## 1941                                       University or other thing
## 1942                                       University or other thing
## 1943                                       University or other thing
## 1944                                       University or other thing
## 1945                                       University or other thing
## 1946                                       University or other thing
## 1947                                       University or other thing
## 1948                                                  Some secondary
## 1949                                       University or other thing
## 1950                                       University or other thing
## 1951                                       University or other thing
## 1952                                       University or other thing
## 1953                                       University or other thing
## 1954                                       University or other thing
## 1955                                       University or other thing
## 1956                                       University or other thing
## 1957                                       University or other thing
## 1958                                       University or other thing
## 1959                                       University or other thing
## 1960                                       University or other thing
## 1961                                                  Some secondary
## 1962                                       University or other thing
## 1963                                       University or other thing
## 1964                                       University or other thing
## 1965                                       University or other thing
## 1966                                       University or other thing
## 1967                                       University or other thing
## 1968                                       University or other thing
## 1969                                                  Some secondary
## 1970                                       University or other thing
## 1971                                       University or other thing
## 1972                                       University or other thing
## 1973                                       University or other thing
## 1974                                       University or other thing
## 1975                                       University or other thing
## 1976                                       University or other thing
## 1977                                       University or other thing
## 1978                                                  Some secondary
## 1979                                       University or other thing
## 1980                                       University or other thing
## 1981                                       University or other thing
## 1982                                       University or other thing
## 1983                                       University or other thing
## 1984                                       University or other thing
## 1985                                       University or other thing
## 1986                                       University or other thing
## 1987                                       University or other thing
## 1988                                       University or other thing
## 1989                                       University or other thing
## 1990                                       University or other thing
## 1991                                       University or other thing
## 1992                                       University or other thing
## 1993                                       University or other thing
## 1994                                       University or other thing
## 1995                                       University or other thing
## 1996                                       University or other thing
## 1997                                       University or other thing
## 1998                                       University or other thing
## 1999                                       University or other thing
## 2000                                       University or other thing
## 2001                                       University or other thing
## 2002                                       University or other thing
## 2003                                       University or other thing
## 2004                                       University or other thing
## 2005                                       University or other thing
## 2006                                                  Some secondary
## 2007                                       University or other thing
## 2008                                                  Some secondary
## 2009                                       University or other thing
## 2010                                       University or other thing
## 2011                                       University or other thing
## 2012                                       University or other thing
## 2013                                       University or other thing
## 2014                                       University or other thing
## 2015                                       University or other thing
## 2016                                       University or other thing
## 2017                                       University or other thing
## 2018                                       University or other thing
## 2019                                       University or other thing
## 2020                                       University or other thing
## 2021                                       University or other thing
## 2022                                       University or other thing
## 2023                                       University or other thing
## 2024                                       University or other thing
## 2025                                       University or other thing
## 2026                                       University or other thing
## 2027                                       University or other thing
## 2028                                                  Some secondary
## 2029                                       University or other thing
## 2030                                       University or other thing
## 2031                                       University or other thing
## 2032                                       University or other thing
## 2033                                       University or other thing
## 2034                                       University or other thing
## 2035                                       University or other thing
## 2036                                       University or other thing
## 2037                                       University or other thing
## 2038                                       University or other thing
## 2039                                       University or other thing
## 2040                                       University or other thing
## 2041                                       University or other thing
## 2042                                       University or other thing
## 2043                                       University or other thing
## 2044                                       University or other thing
## 2045                                       University or other thing
## 2046                                       University or other thing
## 2047                                       University or other thing
## 2048                                       University or other thing
## 2049                                       University or other thing
## 2050                                       University or other thing
## 2051                                       University or other thing
## 2052                                       University or other thing
## 2053                                       University or other thing
## 2054                                                  Some secondary
## 2055                                       University or other thing
## 2056                                       University or other thing
## 2057                                       University or other thing
## 2058                                                  Some secondary
## 2059                                       University or other thing
## 2060                                       University or other thing
## 2061                                       University or other thing
## 2062                                       University or other thing
## 2063                                       University or other thing
## 2064                                                  Some secondary
## 2065                                       University or other thing
## 2066                                                  Some secondary
## 2067                                       University or other thing
## 2068                                       University or other thing
## 2069                                       University or other thing
## 2070                                       University or other thing
## 2071                                       University or other thing
## 2072                                       University or other thing
## 2073                                       University or other thing
## 2074                                       University or other thing
## 2075                                       University or other thing
## 2076                                       University or other thing
## 2077                                       University or other thing
## 2078                                       University or other thing
## 2079                                       University or other thing
## 2080                                       University or other thing
## 2081                                       University or other thing
## 2082                                                  Some secondary
## 2083                                       University or other thing
## 2084                                       University or other thing
## 2085                                       University or other thing
## 2086                                       University or other thing
## 2087                                       University or other thing
## 2088                                       University or other thing
## 2089                                       University or other thing
## 2090                                       University or other thing
## 2091                                       University or other thing
## 2092                                       University or other thing
## 2093                                       University or other thing
## 2094                                       University or other thing
## 2095                                       University or other thing
## 2096                                       University or other thing
## 2097                                       University or other thing
## 2098                                       University or other thing
## 2099                                       University or other thing
## 2100                                       University or other thing
## 2101                                       University or other thing
## 2102                                       University or other thing
## 2103                                       University or other thing
## 2104                                       University or other thing
## 2105                                       University or other thing
## 2106                                       University or other thing
## 2107                                       University or other thing
## 2108                                       University or other thing
## 2109                                       University or other thing
## 2110                                       University or other thing
## 2111                                       University or other thing
## 2112                                       University or other thing
## 2113                                       University or other thing
## 2114                                       University or other thing
## 2115                                       University or other thing
## 2116                                       University or other thing
## 2117                                       University or other thing
## 2118                                       University or other thing
## 2119                                       University or other thing
## 2120                                       University or other thing
## 2121                                       University or other thing
## 2122                                       University or other thing
## 2123                                       University or other thing
## 2124                                                  Some secondary
## 2125                                       University or other thing
## 2126                                       University or other thing
## 2127                                       University or other thing
##      if_else(Q4 == 7, "Dont know", "No formal education")
## 1                                     No formal education
## 2                                     No formal education
## 3                                     No formal education
## 4                                     No formal education
## 5                                     No formal education
## 6                                     No formal education
## 7                                     No formal education
## 8                                     No formal education
## 9                                     No formal education
## 10                                    No formal education
## 11                                    No formal education
## 12                                    No formal education
## 13                                    No formal education
## 14                                    No formal education
## 15                                    No formal education
## 16                                    No formal education
## 17                                    No formal education
## 18                                    No formal education
## 19                                    No formal education
## 20                                    No formal education
## 21                                    No formal education
## 22                                    No formal education
## 23                                    No formal education
## 24                                    No formal education
## 25                                    No formal education
## 26                                    No formal education
## 27                                    No formal education
## 28                                    No formal education
## 29                                    No formal education
## 30                                    No formal education
## 31                                    No formal education
## 32                                    No formal education
## 33                                    No formal education
## 34                                    No formal education
## 35                                    No formal education
## 36                                    No formal education
## 37                                    No formal education
## 38                                    No formal education
## 39                                    No formal education
## 40                                    No formal education
## 41                                    No formal education
## 42                                    No formal education
## 43                                    No formal education
## 44                                    No formal education
## 45                                    No formal education
## 46                                    No formal education
## 47                                    No formal education
## 48                                    No formal education
## 49                                    No formal education
## 50                                    No formal education
## 51                                    No formal education
## 52                                    No formal education
## 53                                    No formal education
## 54                                    No formal education
## 55                                    No formal education
## 56                                    No formal education
## 57                                    No formal education
## 58                                    No formal education
## 59                                    No formal education
## 60                                    No formal education
## 61                                    No formal education
## 62                                              Dont know
## 63                                    No formal education
## 64                                    No formal education
## 65                                    No formal education
## 66                                    No formal education
## 67                                    No formal education
## 68                                    No formal education
## 69                                    No formal education
## 70                                    No formal education
## 71                                    No formal education
## 72                                    No formal education
## 73                                    No formal education
## 74                                    No formal education
## 75                                    No formal education
## 76                                              Dont know
## 77                                    No formal education
## 78                                    No formal education
## 79                                    No formal education
## 80                                    No formal education
## 81                                    No formal education
## 82                                    No formal education
## 83                                    No formal education
## 84                                    No formal education
## 85                                    No formal education
## 86                                    No formal education
## 87                                    No formal education
## 88                                    No formal education
## 89                                              Dont know
## 90                                    No formal education
## 91                                    No formal education
## 92                                    No formal education
## 93                                    No formal education
## 94                                    No formal education
## 95                                    No formal education
## 96                                    No formal education
## 97                                    No formal education
## 98                                    No formal education
## 99                                    No formal education
## 100                                   No formal education
## 101                                   No formal education
## 102                                   No formal education
## 103                                   No formal education
## 104                                   No formal education
## 105                                   No formal education
## 106                                   No formal education
## 107                                   No formal education
## 108                                   No formal education
## 109                                   No formal education
## 110                                   No formal education
## 111                                   No formal education
## 112                                   No formal education
## 113                                   No formal education
## 114                                   No formal education
## 115                                   No formal education
## 116                                   No formal education
## 117                                   No formal education
## 118                                   No formal education
## 119                                   No formal education
## 120                                   No formal education
## 121                                   No formal education
## 122                                   No formal education
## 123                                   No formal education
## 124                                   No formal education
## 125                                   No formal education
## 126                                   No formal education
## 127                                   No formal education
## 128                                   No formal education
## 129                                   No formal education
## 130                                   No formal education
## 131                                   No formal education
## 132                                   No formal education
## 133                                   No formal education
## 134                                   No formal education
## 135                                   No formal education
## 136                                   No formal education
## 137                                   No formal education
## 138                                   No formal education
## 139                                   No formal education
## 140                                   No formal education
## 141                                   No formal education
## 142                                   No formal education
## 143                                   No formal education
## 144                                   No formal education
## 145                                             Dont know
## 146                                   No formal education
## 147                                   No formal education
## 148                                             Dont know
## 149                                   No formal education
## 150                                   No formal education
## 151                                   No formal education
## 152                                   No formal education
## 153                                   No formal education
## 154                                   No formal education
## 155                                   No formal education
## 156                                   No formal education
## 157                                   No formal education
## 158                                   No formal education
## 159                                   No formal education
## 160                                   No formal education
## 161                                   No formal education
## 162                                   No formal education
## 163                                   No formal education
## 164                                   No formal education
## 165                                   No formal education
## 166                                   No formal education
## 167                                   No formal education
## 168                                   No formal education
## 169                                   No formal education
## 170                                   No formal education
## 171                                   No formal education
## 172                                   No formal education
## 173                                   No formal education
## 174                                   No formal education
## 175                                   No formal education
## 176                                   No formal education
## 177                                   No formal education
## 178                                   No formal education
## 179                                   No formal education
## 180                                   No formal education
## 181                                   No formal education
## 182                                   No formal education
## 183                                   No formal education
## 184                                   No formal education
## 185                                   No formal education
## 186                                   No formal education
## 187                                   No formal education
## 188                                   No formal education
## 189                                   No formal education
## 190                                   No formal education
## 191                                   No formal education
## 192                                   No formal education
## 193                                   No formal education
## 194                                   No formal education
## 195                                   No formal education
## 196                                   No formal education
## 197                                   No formal education
## 198                                   No formal education
## 199                                   No formal education
## 200                                   No formal education
## 201                                   No formal education
## 202                                   No formal education
## 203                                   No formal education
## 204                                   No formal education
## 205                                   No formal education
## 206                                   No formal education
## 207                                   No formal education
## 208                                   No formal education
## 209                                   No formal education
## 210                                   No formal education
## 211                                   No formal education
## 212                                             Dont know
## 213                                   No formal education
## 214                                   No formal education
## 215                                   No formal education
## 216                                   No formal education
## 217                                   No formal education
## 218                                   No formal education
## 219                                   No formal education
## 220                                   No formal education
## 221                                   No formal education
## 222                                   No formal education
## 223                                   No formal education
## 224                                   No formal education
## 225                                   No formal education
## 226                                   No formal education
## 227                                   No formal education
## 228                                   No formal education
## 229                                   No formal education
## 230                                   No formal education
## 231                                   No formal education
## 232                                   No formal education
## 233                                   No formal education
## 234                                   No formal education
## 235                                   No formal education
## 236                                   No formal education
## 237                                   No formal education
## 238                                   No formal education
## 239                                   No formal education
## 240                                   No formal education
## 241                                   No formal education
## 242                                   No formal education
## 243                                   No formal education
## 244                                   No formal education
## 245                                   No formal education
## 246                                   No formal education
## 247                                   No formal education
## 248                                   No formal education
## 249                                   No formal education
## 250                                   No formal education
## 251                                   No formal education
## 252                                   No formal education
## 253                                   No formal education
## 254                                   No formal education
## 255                                   No formal education
## 256                                   No formal education
## 257                                   No formal education
## 258                                   No formal education
## 259                                   No formal education
## 260                                   No formal education
## 261                                   No formal education
## 262                                   No formal education
## 263                                   No formal education
## 264                                   No formal education
## 265                                   No formal education
## 266                                   No formal education
## 267                                   No formal education
## 268                                   No formal education
## 269                                   No formal education
## 270                                   No formal education
## 271                                   No formal education
## 272                                   No formal education
## 273                                             Dont know
## 274                                   No formal education
## 275                                   No formal education
## 276                                   No formal education
## 277                                   No formal education
## 278                                   No formal education
## 279                                   No formal education
## 280                                   No formal education
## 281                                   No formal education
## 282                                   No formal education
## 283                                   No formal education
## 284                                   No formal education
## 285                                   No formal education
## 286                                   No formal education
## 287                                   No formal education
## 288                                   No formal education
## 289                                   No formal education
## 290                                   No formal education
## 291                                   No formal education
## 292                                   No formal education
## 293                                   No formal education
## 294                                   No formal education
## 295                                   No formal education
## 296                                   No formal education
## 297                                   No formal education
## 298                                   No formal education
## 299                                   No formal education
## 300                                   No formal education
## 301                                   No formal education
## 302                                   No formal education
## 303                                             Dont know
## 304                                   No formal education
## 305                                   No formal education
## 306                                   No formal education
## 307                                   No formal education
## 308                                   No formal education
## 309                                   No formal education
## 310                                   No formal education
## 311                                   No formal education
## 312                                   No formal education
## 313                                   No formal education
## 314                                   No formal education
## 315                                   No formal education
## 316                                   No formal education
## 317                                   No formal education
## 318                                   No formal education
## 319                                   No formal education
## 320                                   No formal education
## 321                                   No formal education
## 322                                   No formal education
## 323                                   No formal education
## 324                                   No formal education
## 325                                   No formal education
## 326                                   No formal education
## 327                                   No formal education
## 328                                   No formal education
## 329                                   No formal education
## 330                                   No formal education
## 331                                   No formal education
## 332                                   No formal education
## 333                                   No formal education
## 334                                   No formal education
## 335                                   No formal education
## 336                                   No formal education
## 337                                   No formal education
## 338                                   No formal education
## 339                                   No formal education
## 340                                   No formal education
## 341                                   No formal education
## 342                                   No formal education
## 343                                   No formal education
## 344                                   No formal education
## 345                                   No formal education
## 346                                   No formal education
## 347                                   No formal education
## 348                                   No formal education
## 349                                   No formal education
## 350                                   No formal education
## 351                                   No formal education
## 352                                   No formal education
## 353                                             Dont know
## 354                                   No formal education
## 355                                   No formal education
## 356                                   No formal education
## 357                                   No formal education
## 358                                   No formal education
## 359                                   No formal education
## 360                                   No formal education
## 361                                   No formal education
## 362                                   No formal education
## 363                                   No formal education
## 364                                   No formal education
## 365                                   No formal education
## 366                                   No formal education
## 367                                   No formal education
## 368                                   No formal education
## 369                                   No formal education
## 370                                   No formal education
## 371                                   No formal education
## 372                                   No formal education
## 373                                   No formal education
## 374                                   No formal education
## 375                                   No formal education
## 376                                   No formal education
## 377                                   No formal education
## 378                                   No formal education
## 379                                   No formal education
## 380                                   No formal education
## 381                                   No formal education
## 382                                   No formal education
## 383                                   No formal education
## 384                                   No formal education
## 385                                   No formal education
## 386                                   No formal education
## 387                                   No formal education
## 388                                   No formal education
## 389                                   No formal education
## 390                                   No formal education
## 391                                   No formal education
## 392                                   No formal education
## 393                                   No formal education
## 394                                   No formal education
## 395                                   No formal education
## 396                                   No formal education
## 397                                   No formal education
## 398                                   No formal education
## 399                                   No formal education
## 400                                   No formal education
## 401                                   No formal education
## 402                                   No formal education
## 403                                   No formal education
## 404                                   No formal education
## 405                                   No formal education
## 406                                   No formal education
## 407                                   No formal education
## 408                                   No formal education
## 409                                   No formal education
## 410                                   No formal education
## 411                                   No formal education
## 412                                   No formal education
## 413                                             Dont know
## 414                                   No formal education
## 415                                   No formal education
## 416                                   No formal education
## 417                                   No formal education
## 418                                   No formal education
## 419                                   No formal education
## 420                                   No formal education
## 421                                   No formal education
## 422                                   No formal education
## 423                                   No formal education
## 424                                   No formal education
## 425                                   No formal education
## 426                                   No formal education
## 427                                   No formal education
## 428                                   No formal education
## 429                                   No formal education
## 430                                   No formal education
## 431                                   No formal education
## 432                                   No formal education
## 433                                   No formal education
## 434                                   No formal education
## 435                                   No formal education
## 436                                   No formal education
## 437                                   No formal education
## 438                                   No formal education
## 439                                             Dont know
## 440                                   No formal education
## 441                                   No formal education
## 442                                   No formal education
## 443                                   No formal education
## 444                                   No formal education
## 445                                   No formal education
## 446                                   No formal education
## 447                                   No formal education
## 448                                   No formal education
## 449                                   No formal education
## 450                                   No formal education
## 451                                   No formal education
## 452                                   No formal education
## 453                                   No formal education
## 454                                   No formal education
## 455                                   No formal education
## 456                                   No formal education
## 457                                   No formal education
## 458                                   No formal education
## 459                                   No formal education
## 460                                   No formal education
## 461                                   No formal education
## 462                                   No formal education
## 463                                   No formal education
## 464                                   No formal education
## 465                                   No formal education
## 466                                   No formal education
## 467                                   No formal education
## 468                                   No formal education
## 469                                   No formal education
## 470                                   No formal education
## 471                                   No formal education
## 472                                   No formal education
## 473                                   No formal education
## 474                                   No formal education
## 475                                   No formal education
## 476                                   No formal education
## 477                                   No formal education
## 478                                   No formal education
## 479                                   No formal education
## 480                                   No formal education
## 481                                   No formal education
## 482                                   No formal education
## 483                                   No formal education
## 484                                   No formal education
## 485                                   No formal education
## 486                                   No formal education
## 487                                   No formal education
## 488                                   No formal education
## 489                                   No formal education
## 490                                   No formal education
## 491                                   No formal education
## 492                                   No formal education
## 493                                   No formal education
## 494                                   No formal education
## 495                                   No formal education
## 496                                   No formal education
## 497                                   No formal education
## 498                                   No formal education
## 499                                   No formal education
## 500                                   No formal education
## 501                                   No formal education
## 502                                   No formal education
## 503                                   No formal education
## 504                                   No formal education
## 505                                   No formal education
## 506                                   No formal education
## 507                                   No formal education
## 508                                   No formal education
## 509                                   No formal education
## 510                                   No formal education
## 511                                   No formal education
## 512                                   No formal education
## 513                                   No formal education
## 514                                             Dont know
## 515                                   No formal education
## 516                                   No formal education
## 517                                   No formal education
## 518                                   No formal education
## 519                                   No formal education
## 520                                   No formal education
## 521                                   No formal education
## 522                                   No formal education
## 523                                   No formal education
## 524                                   No formal education
## 525                                   No formal education
## 526                                   No formal education
## 527                                   No formal education
## 528                                             Dont know
## 529                                   No formal education
## 530                                   No formal education
## 531                                   No formal education
## 532                                   No formal education
## 533                                   No formal education
## 534                                   No formal education
## 535                                   No formal education
## 536                                   No formal education
## 537                                   No formal education
## 538                                   No formal education
## 539                                   No formal education
## 540                                   No formal education
## 541                                   No formal education
## 542                                   No formal education
## 543                                   No formal education
## 544                                   No formal education
## 545                                   No formal education
## 546                                   No formal education
## 547                                   No formal education
## 548                                   No formal education
## 549                                   No formal education
## 550                                   No formal education
## 551                                   No formal education
## 552                                   No formal education
## 553                                   No formal education
## 554                                   No formal education
## 555                                   No formal education
## 556                                   No formal education
## 557                                   No formal education
## 558                                   No formal education
## 559                                   No formal education
## 560                                   No formal education
## 561                                   No formal education
## 562                                   No formal education
## 563                                   No formal education
## 564                                   No formal education
## 565                                   No formal education
## 566                                   No formal education
## 567                                   No formal education
## 568                                             Dont know
## 569                                   No formal education
## 570                                   No formal education
## 571                                   No formal education
## 572                                   No formal education
## 573                                   No formal education
## 574                                   No formal education
## 575                                   No formal education
## 576                                   No formal education
## 577                                   No formal education
## 578                                   No formal education
## 579                                   No formal education
## 580                                   No formal education
## 581                                   No formal education
## 582                                   No formal education
## 583                                   No formal education
## 584                                   No formal education
## 585                                   No formal education
## 586                                   No formal education
## 587                                   No formal education
## 588                                   No formal education
## 589                                   No formal education
## 590                                   No formal education
## 591                                   No formal education
## 592                                   No formal education
## 593                                   No formal education
## 594                                   No formal education
## 595                                   No formal education
## 596                                   No formal education
## 597                                   No formal education
## 598                                   No formal education
## 599                                   No formal education
## 600                                   No formal education
## 601                                   No formal education
## 602                                   No formal education
## 603                                   No formal education
## 604                                   No formal education
## 605                                   No formal education
## 606                                   No formal education
## 607                                   No formal education
## 608                                   No formal education
## 609                                   No formal education
## 610                                   No formal education
## 611                                   No formal education
## 612                                   No formal education
## 613                                   No formal education
## 614                                   No formal education
## 615                                   No formal education
## 616                                   No formal education
## 617                                   No formal education
## 618                                   No formal education
## 619                                   No formal education
## 620                                   No formal education
## 621                                   No formal education
## 622                                   No formal education
## 623                                   No formal education
## 624                                   No formal education
## 625                                   No formal education
## 626                                   No formal education
## 627                                   No formal education
## 628                                             Dont know
## 629                                   No formal education
## 630                                   No formal education
## 631                                   No formal education
## 632                                   No formal education
## 633                                   No formal education
## 634                                   No formal education
## 635                                   No formal education
## 636                                   No formal education
## 637                                   No formal education
## 638                                   No formal education
## 639                                   No formal education
## 640                                   No formal education
## 641                                   No formal education
## 642                                   No formal education
## 643                                   No formal education
## 644                                   No formal education
## 645                                   No formal education
## 646                                   No formal education
## 647                                   No formal education
## 648                                   No formal education
## 649                                   No formal education
## 650                                   No formal education
## 651                                   No formal education
## 652                                   No formal education
## 653                                   No formal education
## 654                                   No formal education
## 655                                   No formal education
## 656                                   No formal education
## 657                                   No formal education
## 658                                   No formal education
## 659                                   No formal education
## 660                                   No formal education
## 661                                   No formal education
## 662                                   No formal education
## 663                                   No formal education
## 664                                   No formal education
## 665                                   No formal education
## 666                                   No formal education
## 667                                   No formal education
## 668                                   No formal education
## 669                                   No formal education
## 670                                   No formal education
## 671                                   No formal education
## 672                                   No formal education
## 673                                   No formal education
## 674                                   No formal education
## 675                                   No formal education
## 676                                   No formal education
## 677                                   No formal education
## 678                                   No formal education
## 679                                   No formal education
## 680                                   No formal education
## 681                                             Dont know
## 682                                   No formal education
## 683                                   No formal education
## 684                                   No formal education
## 685                                   No formal education
## 686                                   No formal education
## 687                                   No formal education
## 688                                   No formal education
## 689                                   No formal education
## 690                                   No formal education
## 691                                   No formal education
## 692                                   No formal education
## 693                                   No formal education
## 694                                   No formal education
## 695                                   No formal education
## 696                                   No formal education
## 697                                   No formal education
## 698                                   No formal education
## 699                                   No formal education
## 700                                   No formal education
## 701                                   No formal education
## 702                                   No formal education
## 703                                             Dont know
## 704                                   No formal education
## 705                                   No formal education
## 706                                   No formal education
## 707                                   No formal education
## 708                                   No formal education
## 709                                   No formal education
## 710                                   No formal education
## 711                                   No formal education
## 712                                   No formal education
## 713                                   No formal education
## 714                                   No formal education
## 715                                   No formal education
## 716                                   No formal education
## 717                                   No formal education
## 718                                   No formal education
## 719                                   No formal education
## 720                                   No formal education
## 721                                   No formal education
## 722                                   No formal education
## 723                                   No formal education
## 724                                   No formal education
## 725                                   No formal education
## 726                                   No formal education
## 727                                   No formal education
## 728                                   No formal education
## 729                                   No formal education
## 730                                   No formal education
## 731                                   No formal education
## 732                                   No formal education
## 733                                   No formal education
## 734                                   No formal education
## 735                                   No formal education
## 736                                   No formal education
## 737                                             Dont know
## 738                                   No formal education
## 739                                   No formal education
## 740                                   No formal education
## 741                                   No formal education
## 742                                   No formal education
## 743                                   No formal education
## 744                                   No formal education
## 745                                   No formal education
## 746                                   No formal education
## 747                                   No formal education
## 748                                   No formal education
## 749                                   No formal education
## 750                                   No formal education
## 751                                   No formal education
## 752                                   No formal education
## 753                                   No formal education
## 754                                   No formal education
## 755                                   No formal education
## 756                                   No formal education
## 757                                   No formal education
## 758                                   No formal education
## 759                                   No formal education
## 760                                   No formal education
## 761                                   No formal education
## 762                                   No formal education
## 763                                   No formal education
## 764                                   No formal education
## 765                                   No formal education
## 766                                   No formal education
## 767                                   No formal education
## 768                                   No formal education
## 769                                   No formal education
## 770                                   No formal education
## 771                                   No formal education
## 772                                   No formal education
## 773                                   No formal education
## 774                                   No formal education
## 775                                   No formal education
## 776                                   No formal education
## 777                                   No formal education
## 778                                   No formal education
## 779                                   No formal education
## 780                                   No formal education
## 781                                   No formal education
## 782                                   No formal education
## 783                                   No formal education
## 784                                   No formal education
## 785                                   No formal education
## 786                                   No formal education
## 787                                   No formal education
## 788                                   No formal education
## 789                                   No formal education
## 790                                   No formal education
## 791                                   No formal education
## 792                                             Dont know
## 793                                   No formal education
## 794                                   No formal education
## 795                                   No formal education
## 796                                   No formal education
## 797                                   No formal education
## 798                                   No formal education
## 799                                   No formal education
## 800                                   No formal education
## 801                                   No formal education
## 802                                   No formal education
## 803                                   No formal education
## 804                                   No formal education
## 805                                   No formal education
## 806                                   No formal education
## 807                                   No formal education
## 808                                   No formal education
## 809                                   No formal education
## 810                                   No formal education
## 811                                   No formal education
## 812                                   No formal education
## 813                                   No formal education
## 814                                   No formal education
## 815                                   No formal education
## 816                                   No formal education
## 817                                   No formal education
## 818                                   No formal education
## 819                                   No formal education
## 820                                   No formal education
## 821                                   No formal education
## 822                                   No formal education
## 823                                   No formal education
## 824                                   No formal education
## 825                                   No formal education
## 826                                   No formal education
## 827                                   No formal education
## 828                                   No formal education
## 829                                   No formal education
## 830                                   No formal education
## 831                                   No formal education
## 832                                   No formal education
## 833                                   No formal education
## 834                                   No formal education
## 835                                   No formal education
## 836                                   No formal education
## 837                                   No formal education
## 838                                   No formal education
## 839                                   No formal education
## 840                                   No formal education
## 841                                   No formal education
## 842                                   No formal education
## 843                                   No formal education
## 844                                   No formal education
## 845                                   No formal education
## 846                                   No formal education
## 847                                   No formal education
## 848                                   No formal education
## 849                                   No formal education
## 850                                   No formal education
## 851                                   No formal education
## 852                                   No formal education
## 853                                   No formal education
## 854                                   No formal education
## 855                                   No formal education
## 856                                   No formal education
## 857                                   No formal education
## 858                                   No formal education
## 859                                   No formal education
## 860                                   No formal education
## 861                                   No formal education
## 862                                   No formal education
## 863                                   No formal education
## 864                                   No formal education
## 865                                   No formal education
## 866                                   No formal education
## 867                                   No formal education
## 868                                   No formal education
## 869                                   No formal education
## 870                                   No formal education
## 871                                   No formal education
## 872                                   No formal education
## 873                                   No formal education
## 874                                   No formal education
## 875                                   No formal education
## 876                                   No formal education
## 877                                   No formal education
## 878                                   No formal education
## 879                                   No formal education
## 880                                   No formal education
## 881                                   No formal education
## 882                                   No formal education
## 883                                   No formal education
## 884                                   No formal education
## 885                                   No formal education
## 886                                   No formal education
## 887                                   No formal education
## 888                                   No formal education
## 889                                   No formal education
## 890                                   No formal education
## 891                                   No formal education
## 892                                   No formal education
## 893                                             Dont know
## 894                                   No formal education
## 895                                   No formal education
## 896                                   No formal education
## 897                                   No formal education
## 898                                   No formal education
## 899                                   No formal education
## 900                                   No formal education
## 901                                   No formal education
## 902                                   No formal education
## 903                                   No formal education
## 904                                   No formal education
## 905                                   No formal education
## 906                                   No formal education
## 907                                   No formal education
## 908                                   No formal education
## 909                                   No formal education
## 910                                   No formal education
## 911                                   No formal education
## 912                                   No formal education
## 913                                   No formal education
## 914                                   No formal education
## 915                                   No formal education
## 916                                   No formal education
## 917                                   No formal education
## 918                                   No formal education
## 919                                   No formal education
## 920                                   No formal education
## 921                                   No formal education
## 922                                   No formal education
## 923                                   No formal education
## 924                                   No formal education
## 925                                   No formal education
## 926                                   No formal education
## 927                                   No formal education
## 928                                   No formal education
## 929                                   No formal education
## 930                                   No formal education
## 931                                   No formal education
## 932                                   No formal education
## 933                                   No formal education
## 934                                   No formal education
## 935                                   No formal education
## 936                                   No formal education
## 937                                   No formal education
## 938                                   No formal education
## 939                                   No formal education
## 940                                   No formal education
## 941                                   No formal education
## 942                                   No formal education
## 943                                   No formal education
## 944                                   No formal education
## 945                                   No formal education
## 946                                   No formal education
## 947                                   No formal education
## 948                                   No formal education
## 949                                   No formal education
## 950                                   No formal education
## 951                                   No formal education
## 952                                   No formal education
## 953                                   No formal education
## 954                                   No formal education
## 955                                   No formal education
## 956                                   No formal education
## 957                                   No formal education
## 958                                   No formal education
## 959                                   No formal education
## 960                                   No formal education
## 961                                   No formal education
## 962                                   No formal education
## 963                                   No formal education
## 964                                             Dont know
## 965                                   No formal education
## 966                                   No formal education
## 967                                   No formal education
## 968                                   No formal education
## 969                                   No formal education
## 970                                   No formal education
## 971                                   No formal education
## 972                                   No formal education
## 973                                   No formal education
## 974                                   No formal education
## 975                                   No formal education
## 976                                   No formal education
## 977                                   No formal education
## 978                                   No formal education
## 979                                   No formal education
## 980                                   No formal education
## 981                                   No formal education
## 982                                   No formal education
## 983                                   No formal education
## 984                                   No formal education
## 985                                   No formal education
## 986                                   No formal education
## 987                                   No formal education
## 988                                   No formal education
## 989                                   No formal education
## 990                                   No formal education
## 991                                   No formal education
## 992                                   No formal education
## 993                                   No formal education
## 994                                   No formal education
## 995                                   No formal education
## 996                                   No formal education
## 997                                   No formal education
## 998                                   No formal education
## 999                                   No formal education
## 1000                                  No formal education
## 1001                                  No formal education
## 1002                                  No formal education
## 1003                                  No formal education
## 1004                                  No formal education
## 1005                                  No formal education
## 1006                                  No formal education
## 1007                                  No formal education
## 1008                                  No formal education
## 1009                                  No formal education
## 1010                                  No formal education
## 1011                                  No formal education
## 1012                                  No formal education
## 1013                                  No formal education
## 1014                                  No formal education
## 1015                                  No formal education
## 1016                                  No formal education
## 1017                                  No formal education
## 1018                                  No formal education
## 1019                                  No formal education
## 1020                                  No formal education
## 1021                                  No formal education
## 1022                                  No formal education
## 1023                                  No formal education
## 1024                                  No formal education
## 1025                                  No formal education
## 1026                                  No formal education
## 1027                                  No formal education
## 1028                                  No formal education
## 1029                                  No formal education
## 1030                                  No formal education
## 1031                                  No formal education
## 1032                                  No formal education
## 1033                                  No formal education
## 1034                                  No formal education
## 1035                                  No formal education
## 1036                                  No formal education
## 1037                                  No formal education
## 1038                                  No formal education
## 1039                                  No formal education
## 1040                                  No formal education
## 1041                                  No formal education
## 1042                                  No formal education
## 1043                                  No formal education
## 1044                                  No formal education
## 1045                                  No formal education
## 1046                                  No formal education
## 1047                                  No formal education
## 1048                                  No formal education
## 1049                                  No formal education
## 1050                                  No formal education
## 1051                                  No formal education
## 1052                                  No formal education
## 1053                                  No formal education
## 1054                                  No formal education
## 1055                                  No formal education
## 1056                                  No formal education
## 1057                                  No formal education
## 1058                                  No formal education
## 1059                                  No formal education
## 1060                                  No formal education
## 1061                                  No formal education
## 1062                                  No formal education
## 1063                                  No formal education
## 1064                                  No formal education
## 1065                                  No formal education
## 1066                                  No formal education
## 1067                                  No formal education
## 1068                                  No formal education
## 1069                                  No formal education
## 1070                                  No formal education
## 1071                                  No formal education
## 1072                                  No formal education
## 1073                                  No formal education
## 1074                                  No formal education
## 1075                                  No formal education
## 1076                                  No formal education
## 1077                                  No formal education
## 1078                                  No formal education
## 1079                                  No formal education
## 1080                                  No formal education
## 1081                                  No formal education
## 1082                                  No formal education
## 1083                                  No formal education
## 1084                                  No formal education
## 1085                                  No formal education
## 1086                                            Dont know
## 1087                                  No formal education
## 1088                                  No formal education
## 1089                                  No formal education
## 1090                                  No formal education
## 1091                                  No formal education
## 1092                                  No formal education
## 1093                                  No formal education
## 1094                                  No formal education
## 1095                                  No formal education
## 1096                                  No formal education
## 1097                                  No formal education
## 1098                                  No formal education
## 1099                                  No formal education
## 1100                                  No formal education
## 1101                                  No formal education
## 1102                                  No formal education
## 1103                                  No formal education
## 1104                                  No formal education
## 1105                                  No formal education
## 1106                                  No formal education
## 1107                                  No formal education
## 1108                                  No formal education
## 1109                                  No formal education
## 1110                                  No formal education
## 1111                                  No formal education
## 1112                                  No formal education
## 1113                                  No formal education
## 1114                                  No formal education
## 1115                                  No formal education
## 1116                                  No formal education
## 1117                                  No formal education
## 1118                                  No formal education
## 1119                                  No formal education
## 1120                                  No formal education
## 1121                                  No formal education
## 1122                                  No formal education
## 1123                                  No formal education
## 1124                                  No formal education
## 1125                                  No formal education
## 1126                                  No formal education
## 1127                                  No formal education
## 1128                                  No formal education
## 1129                                  No formal education
## 1130                                            Dont know
## 1131                                  No formal education
## 1132                                  No formal education
## 1133                                  No formal education
## 1134                                  No formal education
## 1135                                  No formal education
## 1136                                            Dont know
## 1137                                  No formal education
## 1138                                  No formal education
## 1139                                  No formal education
## 1140                                  No formal education
## 1141                                  No formal education
## 1142                                  No formal education
## 1143                                  No formal education
## 1144                                  No formal education
## 1145                                  No formal education
## 1146                                  No formal education
## 1147                                  No formal education
## 1148                                  No formal education
## 1149                                  No formal education
## 1150                                  No formal education
## 1151                                  No formal education
## 1152                                  No formal education
## 1153                                  No formal education
## 1154                                  No formal education
## 1155                                  No formal education
## 1156                                  No formal education
## 1157                                  No formal education
## 1158                                  No formal education
## 1159                                  No formal education
## 1160                                  No formal education
## 1161                                  No formal education
## 1162                                  No formal education
## 1163                                            Dont know
## 1164                                  No formal education
## 1165                                  No formal education
## 1166                                  No formal education
## 1167                                  No formal education
## 1168                                  No formal education
## 1169                                  No formal education
## 1170                                  No formal education
## 1171                                  No formal education
## 1172                                  No formal education
## 1173                                  No formal education
## 1174                                  No formal education
## 1175                                  No formal education
## 1176                                  No formal education
## 1177                                  No formal education
## 1178                                  No formal education
## 1179                                  No formal education
## 1180                                  No formal education
## 1181                                  No formal education
## 1182                                  No formal education
## 1183                                  No formal education
## 1184                                  No formal education
## 1185                                  No formal education
## 1186                                  No formal education
## 1187                                  No formal education
## 1188                                  No formal education
## 1189                                  No formal education
## 1190                                  No formal education
## 1191                                  No formal education
## 1192                                  No formal education
## 1193                                  No formal education
## 1194                                  No formal education
## 1195                                  No formal education
## 1196                                  No formal education
## 1197                                  No formal education
## 1198                                  No formal education
## 1199                                  No formal education
## 1200                                  No formal education
## 1201                                  No formal education
## 1202                                  No formal education
## 1203                                  No formal education
## 1204                                  No formal education
## 1205                                  No formal education
## 1206                                  No formal education
## 1207                                  No formal education
## 1208                                  No formal education
## 1209                                  No formal education
## 1210                                  No formal education
## 1211                                  No formal education
## 1212                                  No formal education
## 1213                                  No formal education
## 1214                                  No formal education
## 1215                                  No formal education
## 1216                                  No formal education
## 1217                                  No formal education
## 1218                                  No formal education
## 1219                                  No formal education
## 1220                                  No formal education
## 1221                                  No formal education
## 1222                                  No formal education
## 1223                                  No formal education
## 1224                                  No formal education
## 1225                                  No formal education
## 1226                                  No formal education
## 1227                                  No formal education
## 1228                                  No formal education
## 1229                                  No formal education
## 1230                                  No formal education
## 1231                                  No formal education
## 1232                                  No formal education
## 1233                                  No formal education
## 1234                                  No formal education
## 1235                                  No formal education
## 1236                                  No formal education
## 1237                                  No formal education
## 1238                                  No formal education
## 1239                                  No formal education
## 1240                                  No formal education
## 1241                                  No formal education
## 1242                                  No formal education
## 1243                                  No formal education
## 1244                                  No formal education
## 1245                                  No formal education
## 1246                                  No formal education
## 1247                                  No formal education
## 1248                                  No formal education
## 1249                                  No formal education
## 1250                                  No formal education
## 1251                                  No formal education
## 1252                                  No formal education
## 1253                                  No formal education
## 1254                                  No formal education
## 1255                                  No formal education
## 1256                                  No formal education
## 1257                                  No formal education
## 1258                                  No formal education
## 1259                                  No formal education
## 1260                                  No formal education
## 1261                                  No formal education
## 1262                                  No formal education
## 1263                                  No formal education
## 1264                                  No formal education
## 1265                                  No formal education
## 1266                                  No formal education
## 1267                                  No formal education
## 1268                                  No formal education
## 1269                                  No formal education
## 1270                                  No formal education
## 1271                                  No formal education
## 1272                                  No formal education
## 1273                                  No formal education
## 1274                                  No formal education
## 1275                                  No formal education
## 1276                                  No formal education
## 1277                                  No formal education
## 1278                                  No formal education
## 1279                                  No formal education
## 1280                                  No formal education
## 1281                                  No formal education
## 1282                                  No formal education
## 1283                                  No formal education
## 1284                                  No formal education
## 1285                                  No formal education
## 1286                                  No formal education
## 1287                                  No formal education
## 1288                                  No formal education
## 1289                                  No formal education
## 1290                                  No formal education
## 1291                                  No formal education
## 1292                                  No formal education
## 1293                                  No formal education
## 1294                                  No formal education
## 1295                                  No formal education
## 1296                                  No formal education
## 1297                                  No formal education
## 1298                                  No formal education
## 1299                                  No formal education
## 1300                                  No formal education
## 1301                                  No formal education
## 1302                                  No formal education
## 1303                                  No formal education
## 1304                                  No formal education
## 1305                                  No formal education
## 1306                                  No formal education
## 1307                                  No formal education
## 1308                                  No formal education
## 1309                                  No formal education
## 1310                                  No formal education
## 1311                                            Dont know
## 1312                                  No formal education
## 1313                                  No formal education
## 1314                                  No formal education
## 1315                                  No formal education
## 1316                                  No formal education
## 1317                                  No formal education
## 1318                                  No formal education
## 1319                                  No formal education
## 1320                                  No formal education
## 1321                                  No formal education
## 1322                                  No formal education
## 1323                                  No formal education
## 1324                                  No formal education
## 1325                                            Dont know
## 1326                                  No formal education
## 1327                                  No formal education
## 1328                                  No formal education
## 1329                                  No formal education
## 1330                                  No formal education
## 1331                                  No formal education
## 1332                                  No formal education
## 1333                                  No formal education
## 1334                                  No formal education
## 1335                                  No formal education
## 1336                                  No formal education
## 1337                                  No formal education
## 1338                                  No formal education
## 1339                                  No formal education
## 1340                                  No formal education
## 1341                                  No formal education
## 1342                                  No formal education
## 1343                                  No formal education
## 1344                                  No formal education
## 1345                                  No formal education
## 1346                                  No formal education
## 1347                                  No formal education
## 1348                                  No formal education
## 1349                                  No formal education
## 1350                                  No formal education
## 1351                                  No formal education
## 1352                                  No formal education
## 1353                                  No formal education
## 1354                                  No formal education
## 1355                                  No formal education
## 1356                                  No formal education
## 1357                                  No formal education
## 1358                                  No formal education
## 1359                                  No formal education
## 1360                                  No formal education
## 1361                                  No formal education
## 1362                                  No formal education
## 1363                                  No formal education
## 1364                                  No formal education
## 1365                                  No formal education
## 1366                                  No formal education
## 1367                                  No formal education
## 1368                                  No formal education
## 1369                                  No formal education
## 1370                                  No formal education
## 1371                                  No formal education
## 1372                                  No formal education
## 1373                                  No formal education
## 1374                                  No formal education
## 1375                                  No formal education
## 1376                                  No formal education
## 1377                                  No formal education
## 1378                                  No formal education
## 1379                                  No formal education
## 1380                                  No formal education
## 1381                                  No formal education
## 1382                                  No formal education
## 1383                                  No formal education
## 1384                                  No formal education
## 1385                                  No formal education
## 1386                                  No formal education
## 1387                                  No formal education
## 1388                                  No formal education
## 1389                                  No formal education
## 1390                                  No formal education
## 1391                                  No formal education
## 1392                                  No formal education
## 1393                                  No formal education
## 1394                                  No formal education
## 1395                                  No formal education
## 1396                                  No formal education
## 1397                                  No formal education
## 1398                                  No formal education
## 1399                                  No formal education
## 1400                                  No formal education
## 1401                                  No formal education
## 1402                                  No formal education
## 1403                                  No formal education
## 1404                                            Dont know
## 1405                                  No formal education
## 1406                                  No formal education
## 1407                                  No formal education
## 1408                                  No formal education
## 1409                                  No formal education
## 1410                                  No formal education
## 1411                                  No formal education
## 1412                                  No formal education
## 1413                                  No formal education
## 1414                                  No formal education
## 1415                                  No formal education
## 1416                                  No formal education
## 1417                                  No formal education
## 1418                                  No formal education
## 1419                                  No formal education
## 1420                                  No formal education
## 1421                                  No formal education
## 1422                                  No formal education
## 1423                                  No formal education
## 1424                                  No formal education
## 1425                                  No formal education
## 1426                                  No formal education
## 1427                                  No formal education
## 1428                                  No formal education
## 1429                                  No formal education
## 1430                                  No formal education
## 1431                                  No formal education
## 1432                                  No formal education
## 1433                                  No formal education
## 1434                                  No formal education
## 1435                                  No formal education
## 1436                                  No formal education
## 1437                                  No formal education
## 1438                                  No formal education
## 1439                                  No formal education
## 1440                                  No formal education
## 1441                                  No formal education
## 1442                                  No formal education
## 1443                                  No formal education
## 1444                                  No formal education
## 1445                                  No formal education
## 1446                                  No formal education
## 1447                                  No formal education
## 1448                                  No formal education
## 1449                                  No formal education
## 1450                                  No formal education
## 1451                                  No formal education
## 1452                                            Dont know
## 1453                                  No formal education
## 1454                                  No formal education
## 1455                                  No formal education
## 1456                                  No formal education
## 1457                                  No formal education
## 1458                                  No formal education
## 1459                                  No formal education
## 1460                                  No formal education
## 1461                                  No formal education
## 1462                                  No formal education
## 1463                                  No formal education
## 1464                                  No formal education
## 1465                                  No formal education
## 1466                                  No formal education
## 1467                                  No formal education
## 1468                                  No formal education
## 1469                                  No formal education
## 1470                                  No formal education
## 1471                                  No formal education
## 1472                                  No formal education
## 1473                                  No formal education
## 1474                                  No formal education
## 1475                                  No formal education
## 1476                                  No formal education
## 1477                                  No formal education
## 1478                                  No formal education
## 1479                                  No formal education
## 1480                                  No formal education
## 1481                                  No formal education
## 1482                                  No formal education
## 1483                                  No formal education
## 1484                                  No formal education
## 1485                                  No formal education
## 1486                                  No formal education
## 1487                                  No formal education
## 1488                                  No formal education
## 1489                                  No formal education
## 1490                                  No formal education
## 1491                                  No formal education
## 1492                                  No formal education
## 1493                                  No formal education
## 1494                                  No formal education
## 1495                                  No formal education
## 1496                                  No formal education
## 1497                                  No formal education
## 1498                                  No formal education
## 1499                                  No formal education
## 1500                                            Dont know
## 1501                                  No formal education
## 1502                                  No formal education
## 1503                                  No formal education
## 1504                                  No formal education
## 1505                                  No formal education
## 1506                                  No formal education
## 1507                                  No formal education
## 1508                                  No formal education
## 1509                                  No formal education
## 1510                                  No formal education
## 1511                                  No formal education
## 1512                                  No formal education
## 1513                                  No formal education
## 1514                                  No formal education
## 1515                                  No formal education
## 1516                                  No formal education
## 1517                                  No formal education
## 1518                                  No formal education
## 1519                                  No formal education
## 1520                                  No formal education
## 1521                                  No formal education
## 1522                                  No formal education
## 1523                                  No formal education
## 1524                                  No formal education
## 1525                                  No formal education
## 1526                                  No formal education
## 1527                                  No formal education
## 1528                                  No formal education
## 1529                                            Dont know
## 1530                                  No formal education
## 1531                                  No formal education
## 1532                                  No formal education
## 1533                                  No formal education
## 1534                                  No formal education
## 1535                                  No formal education
## 1536                                  No formal education
## 1537                                  No formal education
## 1538                                  No formal education
## 1539                                  No formal education
## 1540                                  No formal education
## 1541                                  No formal education
## 1542                                  No formal education
## 1543                                  No formal education
## 1544                                  No formal education
## 1545                                  No formal education
## 1546                                  No formal education
## 1547                                  No formal education
## 1548                                  No formal education
## 1549                                  No formal education
## 1550                                  No formal education
## 1551                                  No formal education
## 1552                                  No formal education
## 1553                                  No formal education
## 1554                                  No formal education
## 1555                                  No formal education
## 1556                                  No formal education
## 1557                                  No formal education
## 1558                                  No formal education
## 1559                                  No formal education
## 1560                                  No formal education
## 1561                                  No formal education
## 1562                                  No formal education
## 1563                                  No formal education
## 1564                                  No formal education
## 1565                                  No formal education
## 1566                                  No formal education
## 1567                                  No formal education
## 1568                                  No formal education
## 1569                                  No formal education
## 1570                                  No formal education
## 1571                                  No formal education
## 1572                                  No formal education
## 1573                                  No formal education
## 1574                                  No formal education
## 1575                                  No formal education
## 1576                                  No formal education
## 1577                                  No formal education
## 1578                                  No formal education
## 1579                                  No formal education
## 1580                                  No formal education
## 1581                                  No formal education
## 1582                                  No formal education
## 1583                                  No formal education
## 1584                                  No formal education
## 1585                                  No formal education
## 1586                                  No formal education
## 1587                                  No formal education
## 1588                                  No formal education
## 1589                                  No formal education
## 1590                                  No formal education
## 1591                                  No formal education
## 1592                                  No formal education
## 1593                                  No formal education
## 1594                                  No formal education
## 1595                                  No formal education
## 1596                                  No formal education
## 1597                                  No formal education
## 1598                                  No formal education
## 1599                                  No formal education
## 1600                                  No formal education
## 1601                                  No formal education
## 1602                                  No formal education
## 1603                                  No formal education
## 1604                                  No formal education
## 1605                                  No formal education
## 1606                                  No formal education
## 1607                                  No formal education
## 1608                                  No formal education
## 1609                                  No formal education
## 1610                                  No formal education
## 1611                                            Dont know
## 1612                                  No formal education
## 1613                                  No formal education
## 1614                                  No formal education
## 1615                                  No formal education
## 1616                                  No formal education
## 1617                                  No formal education
## 1618                                  No formal education
## 1619                                  No formal education
## 1620                                  No formal education
## 1621                                  No formal education
## 1622                                  No formal education
## 1623                                  No formal education
## 1624                                  No formal education
## 1625                                  No formal education
## 1626                                  No formal education
## 1627                                  No formal education
## 1628                                  No formal education
## 1629                                  No formal education
## 1630                                  No formal education
## 1631                                  No formal education
## 1632                                  No formal education
## 1633                                  No formal education
## 1634                                  No formal education
## 1635                                  No formal education
## 1636                                  No formal education
## 1637                                  No formal education
## 1638                                  No formal education
## 1639                                  No formal education
## 1640                                  No formal education
## 1641                                  No formal education
## 1642                                  No formal education
## 1643                                  No formal education
## 1644                                  No formal education
## 1645                                  No formal education
## 1646                                  No formal education
## 1647                                  No formal education
## 1648                                  No formal education
## 1649                                            Dont know
## 1650                                  No formal education
## 1651                                  No formal education
## 1652                                  No formal education
## 1653                                  No formal education
## 1654                                  No formal education
## 1655                                  No formal education
## 1656                                  No formal education
## 1657                                            Dont know
## 1658                                  No formal education
## 1659                                  No formal education
## 1660                                  No formal education
## 1661                                  No formal education
## 1662                                  No formal education
## 1663                                  No formal education
## 1664                                  No formal education
## 1665                                  No formal education
## 1666                                  No formal education
## 1667                                  No formal education
## 1668                                  No formal education
## 1669                                  No formal education
## 1670                                  No formal education
## 1671                                  No formal education
## 1672                                  No formal education
## 1673                                  No formal education
## 1674                                  No formal education
## 1675                                  No formal education
## 1676                                  No formal education
## 1677                                  No formal education
## 1678                                  No formal education
## 1679                                  No formal education
## 1680                                  No formal education
## 1681                                  No formal education
## 1682                                            Dont know
## 1683                                  No formal education
## 1684                                  No formal education
## 1685                                  No formal education
## 1686                                  No formal education
## 1687                                  No formal education
## 1688                                  No formal education
## 1689                                  No formal education
## 1690                                  No formal education
## 1691                                  No formal education
## 1692                                  No formal education
## 1693                                  No formal education
## 1694                                  No formal education
## 1695                                  No formal education
## 1696                                  No formal education
## 1697                                  No formal education
## 1698                                  No formal education
## 1699                                  No formal education
## 1700                                  No formal education
## 1701                                  No formal education
## 1702                                  No formal education
## 1703                                  No formal education
## 1704                                  No formal education
## 1705                                  No formal education
## 1706                                  No formal education
## 1707                                  No formal education
## 1708                                  No formal education
## 1709                                  No formal education
## 1710                                  No formal education
## 1711                                  No formal education
## 1712                                  No formal education
## 1713                                  No formal education
## 1714                                  No formal education
## 1715                                  No formal education
## 1716                                  No formal education
## 1717                                  No formal education
## 1718                                  No formal education
## 1719                                  No formal education
## 1720                                  No formal education
## 1721                                  No formal education
## 1722                                  No formal education
## 1723                                  No formal education
## 1724                                  No formal education
## 1725                                  No formal education
## 1726                                  No formal education
## 1727                                  No formal education
## 1728                                  No formal education
## 1729                                  No formal education
## 1730                                  No formal education
## 1731                                  No formal education
## 1732                                  No formal education
## 1733                                  No formal education
## 1734                                  No formal education
## 1735                                  No formal education
## 1736                                  No formal education
## 1737                                  No formal education
## 1738                                  No formal education
## 1739                                  No formal education
## 1740                                  No formal education
## 1741                                  No formal education
## 1742                                  No formal education
## 1743                                  No formal education
## 1744                                  No formal education
## 1745                                  No formal education
## 1746                                  No formal education
## 1747                                  No formal education
## 1748                                  No formal education
## 1749                                  No formal education
## 1750                                  No formal education
## 1751                                  No formal education
## 1752                                  No formal education
## 1753                                  No formal education
## 1754                                  No formal education
## 1755                                  No formal education
## 1756                                  No formal education
## 1757                                  No formal education
## 1758                                  No formal education
## 1759                                  No formal education
## 1760                                  No formal education
## 1761                                  No formal education
## 1762                                  No formal education
## 1763                                            Dont know
## 1764                                  No formal education
## 1765                                  No formal education
## 1766                                  No formal education
## 1767                                            Dont know
## 1768                                  No formal education
## 1769                                  No formal education
## 1770                                  No formal education
## 1771                                  No formal education
## 1772                                  No formal education
## 1773                                  No formal education
## 1774                                  No formal education
## 1775                                  No formal education
## 1776                                  No formal education
## 1777                                  No formal education
## 1778                                  No formal education
## 1779                                  No formal education
## 1780                                  No formal education
## 1781                                  No formal education
## 1782                                  No formal education
## 1783                                  No formal education
## 1784                                  No formal education
## 1785                                  No formal education
## 1786                                  No formal education
## 1787                                  No formal education
## 1788                                  No formal education
## 1789                                  No formal education
## 1790                                  No formal education
## 1791                                  No formal education
## 1792                                  No formal education
## 1793                                  No formal education
## 1794                                  No formal education
## 1795                                  No formal education
## 1796                                  No formal education
## 1797                                  No formal education
## 1798                                  No formal education
## 1799                                  No formal education
## 1800                                  No formal education
## 1801                                  No formal education
## 1802                                  No formal education
## 1803                                  No formal education
## 1804                                  No formal education
## 1805                                  No formal education
## 1806                                  No formal education
## 1807                                  No formal education
## 1808                                  No formal education
## 1809                                  No formal education
## 1810                                  No formal education
## 1811                                  No formal education
## 1812                                  No formal education
## 1813                                  No formal education
## 1814                                  No formal education
## 1815                                  No formal education
## 1816                                  No formal education
## 1817                                  No formal education
## 1818                                  No formal education
## 1819                                  No formal education
## 1820                                  No formal education
## 1821                                  No formal education
## 1822                                  No formal education
## 1823                                  No formal education
## 1824                                  No formal education
## 1825                                  No formal education
## 1826                                  No formal education
## 1827                                  No formal education
## 1828                                            Dont know
## 1829                                  No formal education
## 1830                                  No formal education
## 1831                                  No formal education
## 1832                                  No formal education
## 1833                                            Dont know
## 1834                                  No formal education
## 1835                                  No formal education
## 1836                                  No formal education
## 1837                                  No formal education
## 1838                                  No formal education
## 1839                                  No formal education
## 1840                                  No formal education
## 1841                                  No formal education
## 1842                                  No formal education
## 1843                                  No formal education
## 1844                                  No formal education
## 1845                                  No formal education
## 1846                                  No formal education
## 1847                                  No formal education
## 1848                                            Dont know
## 1849                                  No formal education
## 1850                                  No formal education
## 1851                                            Dont know
## 1852                                  No formal education
## 1853                                  No formal education
## 1854                                  No formal education
## 1855                                  No formal education
## 1856                                  No formal education
## 1857                                  No formal education
## 1858                                            Dont know
## 1859                                  No formal education
## 1860                                  No formal education
## 1861                                  No formal education
## 1862                                  No formal education
## 1863                                  No formal education
## 1864                                  No formal education
## 1865                                  No formal education
## 1866                                  No formal education
## 1867                                  No formal education
## 1868                                  No formal education
## 1869                                  No formal education
## 1870                                  No formal education
## 1871                                  No formal education
## 1872                                  No formal education
## 1873                                  No formal education
## 1874                                  No formal education
## 1875                                  No formal education
## 1876                                  No formal education
## 1877                                  No formal education
## 1878                                  No formal education
## 1879                                  No formal education
## 1880                                  No formal education
## 1881                                  No formal education
## 1882                                  No formal education
## 1883                                  No formal education
## 1884                                  No formal education
## 1885                                  No formal education
## 1886                                  No formal education
## 1887                                            Dont know
## 1888                                  No formal education
## 1889                                  No formal education
## 1890                                  No formal education
## 1891                                  No formal education
## 1892                                  No formal education
## 1893                                  No formal education
## 1894                                  No formal education
## 1895                                  No formal education
## 1896                                  No formal education
## 1897                                  No formal education
## 1898                                  No formal education
## 1899                                  No formal education
## 1900                                  No formal education
## 1901                                  No formal education
## 1902                                  No formal education
## 1903                                  No formal education
## 1904                                  No formal education
## 1905                                  No formal education
## 1906                                  No formal education
## 1907                                  No formal education
## 1908                                  No formal education
## 1909                                  No formal education
## 1910                                  No formal education
## 1911                                  No formal education
## 1912                                  No formal education
## 1913                                  No formal education
## 1914                                            Dont know
## 1915                                  No formal education
## 1916                                  No formal education
## 1917                                  No formal education
## 1918                                  No formal education
## 1919                                  No formal education
## 1920                                  No formal education
## 1921                                  No formal education
## 1922                                            Dont know
## 1923                                  No formal education
## 1924                                  No formal education
## 1925                                  No formal education
## 1926                                  No formal education
## 1927                                  No formal education
## 1928                                  No formal education
## 1929                                  No formal education
## 1930                                  No formal education
## 1931                                            Dont know
## 1932                                            Dont know
## 1933                                  No formal education
## 1934                                  No formal education
## 1935                                  No formal education
## 1936                                  No formal education
## 1937                                  No formal education
## 1938                                  No formal education
## 1939                                  No formal education
## 1940                                  No formal education
## 1941                                  No formal education
## 1942                                  No formal education
## 1943                                  No formal education
## 1944                                  No formal education
## 1945                                  No formal education
## 1946                                  No formal education
## 1947                                  No formal education
## 1948                                  No formal education
## 1949                                  No formal education
## 1950                                  No formal education
## 1951                                  No formal education
## 1952                                  No formal education
## 1953                                  No formal education
## 1954                                  No formal education
## 1955                                  No formal education
## 1956                                  No formal education
## 1957                                  No formal education
## 1958                                  No formal education
## 1959                                  No formal education
## 1960                                  No formal education
## 1961                                  No formal education
## 1962                                  No formal education
## 1963                                  No formal education
## 1964                                  No formal education
## 1965                                  No formal education
## 1966                                  No formal education
## 1967                                  No formal education
## 1968                                  No formal education
## 1969                                  No formal education
## 1970                                  No formal education
## 1971                                  No formal education
## 1972                                  No formal education
## 1973                                  No formal education
## 1974                                  No formal education
## 1975                                  No formal education
## 1976                                  No formal education
## 1977                                  No formal education
## 1978                                  No formal education
## 1979                                  No formal education
## 1980                                  No formal education
## 1981                                  No formal education
## 1982                                  No formal education
## 1983                                  No formal education
## 1984                                  No formal education
## 1985                                  No formal education
## 1986                                  No formal education
## 1987                                  No formal education
## 1988                                  No formal education
## 1989                                  No formal education
## 1990                                  No formal education
## 1991                                  No formal education
## 1992                                  No formal education
## 1993                                  No formal education
## 1994                                  No formal education
## 1995                                            Dont know
## 1996                                  No formal education
## 1997                                  No formal education
## 1998                                  No formal education
## 1999                                  No formal education
## 2000                                  No formal education
## 2001                                  No formal education
## 2002                                  No formal education
## 2003                                  No formal education
## 2004                                  No formal education
## 2005                                  No formal education
## 2006                                  No formal education
## 2007                                  No formal education
## 2008                                  No formal education
## 2009                                  No formal education
## 2010                                  No formal education
## 2011                                  No formal education
## 2012                                  No formal education
## 2013                                  No formal education
## 2014                                  No formal education
## 2015                                  No formal education
## 2016                                  No formal education
## 2017                                  No formal education
## 2018                                  No formal education
## 2019                                  No formal education
## 2020                                  No formal education
## 2021                                  No formal education
## 2022                                  No formal education
## 2023                                            Dont know
## 2024                                  No formal education
## 2025                                  No formal education
## 2026                                  No formal education
## 2027                                  No formal education
## 2028                                  No formal education
## 2029                                  No formal education
## 2030                                  No formal education
## 2031                                  No formal education
## 2032                                  No formal education
## 2033                                  No formal education
## 2034                                  No formal education
## 2035                                  No formal education
## 2036                                  No formal education
## 2037                                  No formal education
## 2038                                  No formal education
## 2039                                  No formal education
## 2040                                  No formal education
## 2041                                  No formal education
## 2042                                  No formal education
## 2043                                  No formal education
## 2044                                  No formal education
## 2045                                  No formal education
## 2046                                  No formal education
## 2047                                  No formal education
## 2048                                  No formal education
## 2049                                  No formal education
## 2050                                  No formal education
## 2051                                  No formal education
## 2052                                  No formal education
## 2053                                  No formal education
## 2054                                  No formal education
## 2055                                  No formal education
## 2056                                  No formal education
## 2057                                  No formal education
## 2058                                  No formal education
## 2059                                  No formal education
## 2060                                  No formal education
## 2061                                  No formal education
## 2062                                  No formal education
## 2063                                  No formal education
## 2064                                  No formal education
## 2065                                            Dont know
## 2066                                  No formal education
## 2067                                  No formal education
## 2068                                  No formal education
## 2069                                  No formal education
## 2070                                  No formal education
## 2071                                  No formal education
## 2072                                  No formal education
## 2073                                  No formal education
## 2074                                  No formal education
## 2075                                  No formal education
## 2076                                  No formal education
## 2077                                  No formal education
## 2078                                            Dont know
## 2079                                  No formal education
## 2080                                  No formal education
## 2081                                  No formal education
## 2082                                  No formal education
## 2083                                  No formal education
## 2084                                  No formal education
## 2085                                  No formal education
## 2086                                  No formal education
## 2087                                  No formal education
## 2088                                  No formal education
## 2089                                  No formal education
## 2090                                  No formal education
## 2091                                  No formal education
## 2092                                  No formal education
## 2093                                  No formal education
## 2094                                  No formal education
## 2095                                  No formal education
## 2096                                  No formal education
## 2097                                  No formal education
## 2098                                  No formal education
## 2099                                  No formal education
## 2100                                  No formal education
## 2101                                  No formal education
## 2102                                  No formal education
## 2103                                  No formal education
## 2104                                  No formal education
## 2105                                  No formal education
## 2106                                  No formal education
## 2107                                  No formal education
## 2108                                  No formal education
## 2109                                  No formal education
## 2110                                  No formal education
## 2111                                  No formal education
## 2112                                  No formal education
## 2113                                  No formal education
## 2114                                  No formal education
## 2115                                  No formal education
## 2116                                  No formal education
## 2117                                  No formal education
## 2118                                  No formal education
## 2119                                  No formal education
## 2120                                  No formal education
## 2121                                  No formal education
## 2122                                  No formal education
## 2123                                  No formal education
## 2124                                  No formal education
## 2125                                  No formal education
## 2126                                  No formal education
## 2127                                  No formal education
##      if_else(Q5 == 1, "You personally own the land", "You own the land                                                           with someone")
## 1                                                                                                                   You personally own the land
## 2                                                       You own the land                                                           with someone
## 3                                                       You own the land                                                           with someone
## 4                                                                                                                   You personally own the land
## 5                                                                                                                   You personally own the land
## 6                                                       You own the land                                                           with someone
## 7                                                                                                                   You personally own the land
## 8                                                       You own the land                                                           with someone
## 9                                                       You own the land                                                           with someone
## 10                                                      You own the land                                                           with someone
## 11                                                      You own the land                                                           with someone
## 12                                                                                                                  You personally own the land
## 13                                                      You own the land                                                           with someone
## 14                                                      You own the land                                                           with someone
## 15                                                      You own the land                                                           with someone
## 16                                                                                                                  You personally own the land
## 17                                                      You own the land                                                           with someone
## 18                                                                                                                  You personally own the land
## 19                                                      You own the land                                                           with someone
## 20                                                                                                                  You personally own the land
## 21                                                                                                                  You personally own the land
## 22                                                      You own the land                                                           with someone
## 23                                                      You own the land                                                           with someone
## 24                                                                                                                  You personally own the land
## 25                                                      You own the land                                                           with someone
## 26                                                      You own the land                                                           with someone
## 27                                                      You own the land                                                           with someone
## 28                                                      You own the land                                                           with someone
## 29                                                      You own the land                                                           with someone
## 30                                                      You own the land                                                           with someone
## 31                                                                                                                  You personally own the land
## 32                                                                                                                  You personally own the land
## 33                                                      You own the land                                                           with someone
## 34                                                                                                                  You personally own the land
## 35                                                      You own the land                                                           with someone
## 36                                                      You own the land                                                           with someone
## 37                                                      You own the land                                                           with someone
## 38                                                      You own the land                                                           with someone
## 39                                                      You own the land                                                           with someone
## 40                                                      You own the land                                                           with someone
## 41                                                      You own the land                                                           with someone
## 42                                                      You own the land                                                           with someone
## 43                                                      You own the land                                                           with someone
## 44                                                      You own the land                                                           with someone
## 45                                                      You own the land                                                           with someone
## 46                                                      You own the land                                                           with someone
## 47                                                                                                                  You personally own the land
## 48                                                                                                                  You personally own the land
## 49                                                                                                                  You personally own the land
## 50                                                      You own the land                                                           with someone
## 51                                                      You own the land                                                           with someone
## 52                                                      You own the land                                                           with someone
## 53                                                      You own the land                                                           with someone
## 54                                                      You own the land                                                           with someone
## 55                                                      You own the land                                                           with someone
## 56                                                                                                                  You personally own the land
## 57                                                      You own the land                                                           with someone
## 58                                                                                                                  You personally own the land
## 59                                                      You own the land                                                           with someone
## 60                                                                                                                  You personally own the land
## 61                                                      You own the land                                                           with someone
## 62                                                                                                                  You personally own the land
## 63                                                      You own the land                                                           with someone
## 64                                                      You own the land                                                           with someone
## 65                                                      You own the land                                                           with someone
## 66                                                      You own the land                                                           with someone
## 67                                                                                                                  You personally own the land
## 68                                                                                                                  You personally own the land
## 69                                                      You own the land                                                           with someone
## 70                                                      You own the land                                                           with someone
## 71                                                      You own the land                                                           with someone
## 72                                                                                                                  You personally own the land
## 73                                                                                                                  You personally own the land
## 74                                                      You own the land                                                           with someone
## 75                                                                                                                  You personally own the land
## 76                                                      You own the land                                                           with someone
## 77                                                      You own the land                                                           with someone
## 78                                                      You own the land                                                           with someone
## 79                                                      You own the land                                                           with someone
## 80                                                                                                                  You personally own the land
## 81                                                      You own the land                                                           with someone
## 82                                                      You own the land                                                           with someone
## 83                                                                                                                  You personally own the land
## 84                                                      You own the land                                                           with someone
## 85                                                      You own the land                                                           with someone
## 86                                                      You own the land                                                           with someone
## 87                                                      You own the land                                                           with someone
## 88                                                                                                                  You personally own the land
## 89                                                                                                                  You personally own the land
## 90                                                      You own the land                                                           with someone
## 91                                                                                                                  You personally own the land
## 92                                                                                                                  You personally own the land
## 93                                                      You own the land                                                           with someone
## 94                                                      You own the land                                                           with someone
## 95                                                      You own the land                                                           with someone
## 96                                                      You own the land                                                           with someone
## 97                                                      You own the land                                                           with someone
## 98                                                      You own the land                                                           with someone
## 99                                                                                                                  You personally own the land
## 100                                                     You own the land                                                           with someone
## 101                                                                                                                 You personally own the land
## 102                                                     You own the land                                                           with someone
## 103                                                     You own the land                                                           with someone
## 104                                                     You own the land                                                           with someone
## 105                                                     You own the land                                                           with someone
## 106                                                                                                                 You personally own the land
## 107                                                     You own the land                                                           with someone
## 108                                                     You own the land                                                           with someone
## 109                                                     You own the land                                                           with someone
## 110                                                     You own the land                                                           with someone
## 111                                                                                                                 You personally own the land
## 112                                                     You own the land                                                           with someone
## 113                                                                                                                 You personally own the land
## 114                                                     You own the land                                                           with someone
## 115                                                                                                                 You personally own the land
## 116                                                     You own the land                                                           with someone
## 117                                                     You own the land                                                           with someone
## 118                                                                                                                 You personally own the land
## 119                                                     You own the land                                                           with someone
## 120                                                     You own the land                                                           with someone
## 121                                                                                                                 You personally own the land
## 122                                                     You own the land                                                           with someone
## 123                                                     You own the land                                                           with someone
## 124                                                     You own the land                                                           with someone
## 125                                                     You own the land                                                           with someone
## 126                                                     You own the land                                                           with someone
## 127                                                     You own the land                                                           with someone
## 128                                                                                                                 You personally own the land
## 129                                                     You own the land                                                           with someone
## 130                                                     You own the land                                                           with someone
## 131                                                     You own the land                                                           with someone
## 132                                                     You own the land                                                           with someone
## 133                                                                                                                 You personally own the land
## 134                                                     You own the land                                                           with someone
## 135                                                     You own the land                                                           with someone
## 136                                                                                                                 You personally own the land
## 137                                                     You own the land                                                           with someone
## 138                                                                                                                 You personally own the land
## 139                                                     You own the land                                                           with someone
## 140                                                     You own the land                                                           with someone
## 141                                                     You own the land                                                           with someone
## 142                                                                                                                 You personally own the land
## 143                                                     You own the land                                                           with someone
## 144                                                     You own the land                                                           with someone
## 145                                                     You own the land                                                           with someone
## 146                                                                                                                 You personally own the land
## 147                                                     You own the land                                                           with someone
## 148                                                     You own the land                                                           with someone
## 149                                                                                                                 You personally own the land
## 150                                                                                                                 You personally own the land
## 151                                                     You own the land                                                           with someone
## 152                                                                                                                 You personally own the land
## 153                                                     You own the land                                                           with someone
## 154                                                     You own the land                                                           with someone
## 155                                                     You own the land                                                           with someone
## 156                                                                                                                 You personally own the land
## 157                                                                                                                 You personally own the land
## 158                                                     You own the land                                                           with someone
## 159                                                                                                                 You personally own the land
## 160                                                     You own the land                                                           with someone
## 161                                                     You own the land                                                           with someone
## 162                                                     You own the land                                                           with someone
## 163                                                     You own the land                                                           with someone
## 164                                                     You own the land                                                           with someone
## 165                                                     You own the land                                                           with someone
## 166                                                     You own the land                                                           with someone
## 167                                                     You own the land                                                           with someone
## 168                                                     You own the land                                                           with someone
## 169                                                     You own the land                                                           with someone
## 170                                                     You own the land                                                           with someone
## 171                                                     You own the land                                                           with someone
## 172                                                     You own the land                                                           with someone
## 173                                                                                                                 You personally own the land
## 174                                                                                                                 You personally own the land
## 175                                                     You own the land                                                           with someone
## 176                                                                                                                 You personally own the land
## 177                                                     You own the land                                                           with someone
## 178                                                     You own the land                                                           with someone
## 179                                                     You own the land                                                           with someone
## 180                                                                                                                 You personally own the land
## 181                                                     You own the land                                                           with someone
## 182                                                     You own the land                                                           with someone
## 183                                                     You own the land                                                           with someone
## 184                                                                                                                 You personally own the land
## 185                                                     You own the land                                                           with someone
## 186                                                     You own the land                                                           with someone
## 187                                                                                                                 You personally own the land
## 188                                                     You own the land                                                           with someone
## 189                                                                                                                 You personally own the land
## 190                                                     You own the land                                                           with someone
## 191                                                                                                                 You personally own the land
## 192                                                                                                                 You personally own the land
## 193                                                                                                                 You personally own the land
## 194                                                                                                                 You personally own the land
## 195                                                     You own the land                                                           with someone
## 196                                                     You own the land                                                           with someone
## 197                                                                                                                 You personally own the land
## 198                                                     You own the land                                                           with someone
## 199                                                     You own the land                                                           with someone
## 200                                                                                                                 You personally own the land
## 201                                                     You own the land                                                           with someone
## 202                                                     You own the land                                                           with someone
## 203                                                     You own the land                                                           with someone
## 204                                                     You own the land                                                           with someone
## 205                                                                                                                 You personally own the land
## 206                                                     You own the land                                                           with someone
## 207                                                     You own the land                                                           with someone
## 208                                                     You own the land                                                           with someone
## 209                                                     You own the land                                                           with someone
## 210                                                                                                                 You personally own the land
## 211                                                                                                                 You personally own the land
## 212                                                     You own the land                                                           with someone
## 213                                                                                                                 You personally own the land
## 214                                                     You own the land                                                           with someone
## 215                                                     You own the land                                                           with someone
## 216                                                     You own the land                                                           with someone
## 217                                                     You own the land                                                           with someone
## 218                                                     You own the land                                                           with someone
## 219                                                     You own the land                                                           with someone
## 220                                                     You own the land                                                           with someone
## 221                                                                                                                 You personally own the land
## 222                                                                                                                 You personally own the land
## 223                                                     You own the land                                                           with someone
## 224                                                                                                                 You personally own the land
## 225                                                                                                                 You personally own the land
## 226                                                                                                                 You personally own the land
## 227                                                                                                                 You personally own the land
## 228                                                     You own the land                                                           with someone
## 229                                                     You own the land                                                           with someone
## 230                                                                                                                 You personally own the land
## 231                                                     You own the land                                                           with someone
## 232                                                     You own the land                                                           with someone
## 233                                                                                                                 You personally own the land
## 234                                                                                                                 You personally own the land
## 235                                                     You own the land                                                           with someone
## 236                                                     You own the land                                                           with someone
## 237                                                     You own the land                                                           with someone
## 238                                                     You own the land                                                           with someone
## 239                                                     You own the land                                                           with someone
## 240                                                     You own the land                                                           with someone
## 241                                                     You own the land                                                           with someone
## 242                                                     You own the land                                                           with someone
## 243                                                     You own the land                                                           with someone
## 244                                                                                                                 You personally own the land
## 245                                                     You own the land                                                           with someone
## 246                                                     You own the land                                                           with someone
## 247                                                     You own the land                                                           with someone
## 248                                                     You own the land                                                           with someone
## 249                                                                                                                 You personally own the land
## 250                                                                                                                 You personally own the land
## 251                                                                                                                 You personally own the land
## 252                                                                                                                 You personally own the land
## 253                                                     You own the land                                                           with someone
## 254                                                                                                                 You personally own the land
## 255                                                     You own the land                                                           with someone
## 256                                                     You own the land                                                           with someone
## 257                                                                                                                 You personally own the land
## 258                                                     You own the land                                                           with someone
## 259                                                                                                                 You personally own the land
## 260                                                     You own the land                                                           with someone
## 261                                                                                                                 You personally own the land
## 262                                                     You own the land                                                           with someone
## 263                                                     You own the land                                                           with someone
## 264                                                     You own the land                                                           with someone
## 265                                                     You own the land                                                           with someone
## 266                                                     You own the land                                                           with someone
## 267                                                                                                                 You personally own the land
## 268                                                     You own the land                                                           with someone
## 269                                                     You own the land                                                           with someone
## 270                                                                                                                 You personally own the land
## 271                                                     You own the land                                                           with someone
## 272                                                     You own the land                                                           with someone
## 273                                                     You own the land                                                           with someone
## 274                                                                                                                 You personally own the land
## 275                                                     You own the land                                                           with someone
## 276                                                     You own the land                                                           with someone
## 277                                                                                                                 You personally own the land
## 278                                                                                                                 You personally own the land
## 279                                                     You own the land                                                           with someone
## 280                                                     You own the land                                                           with someone
## 281                                                                                                                 You personally own the land
## 282                                                     You own the land                                                           with someone
## 283                                                                                                                 You personally own the land
## 284                                                                                                                 You personally own the land
## 285                                                     You own the land                                                           with someone
## 286                                                                                                                 You personally own the land
## 287                                                     You own the land                                                           with someone
## 288                                                                                                                 You personally own the land
## 289                                                                                                                 You personally own the land
## 290                                                     You own the land                                                           with someone
## 291                                                     You own the land                                                           with someone
## 292                                                     You own the land                                                           with someone
## 293                                                                                                                 You personally own the land
## 294                                                                                                                 You personally own the land
## 295                                                     You own the land                                                           with someone
## 296                                                     You own the land                                                           with someone
## 297                                                     You own the land                                                           with someone
## 298                                                                                                                 You personally own the land
## 299                                                     You own the land                                                           with someone
## 300                                                     You own the land                                                           with someone
## 301                                                                                                                 You personally own the land
## 302                                                                                                                 You personally own the land
## 303                                                     You own the land                                                           with someone
## 304                                                                                                                 You personally own the land
## 305                                                     You own the land                                                           with someone
## 306                                                                                                                 You personally own the land
## 307                                                                                                                 You personally own the land
## 308                                                     You own the land                                                           with someone
## 309                                                                                                                 You personally own the land
## 310                                                     You own the land                                                           with someone
## 311                                                                                                                 You personally own the land
## 312                                                     You own the land                                                           with someone
## 313                                                                                                                 You personally own the land
## 314                                                     You own the land                                                           with someone
## 315                                                                                                                 You personally own the land
## 316                                                     You own the land                                                           with someone
## 317                                                                                                                 You personally own the land
## 318                                                                                                                 You personally own the land
## 319                                                     You own the land                                                           with someone
## 320                                                                                                                 You personally own the land
## 321                                                                                                                 You personally own the land
## 322                                                                                                                 You personally own the land
## 323                                                                                                                 You personally own the land
## 324                                                     You own the land                                                           with someone
## 325                                                     You own the land                                                           with someone
## 326                                                                                                                 You personally own the land
## 327                                                     You own the land                                                           with someone
## 328                                                     You own the land                                                           with someone
## 329                                                                                                                 You personally own the land
## 330                                                     You own the land                                                           with someone
## 331                                                     You own the land                                                           with someone
## 332                                                     You own the land                                                           with someone
## 333                                                     You own the land                                                           with someone
## 334                                                                                                                 You personally own the land
## 335                                                                                                                 You personally own the land
## 336                                                                                                                 You personally own the land
## 337                                                                                                                 You personally own the land
## 338                                                     You own the land                                                           with someone
## 339                                                     You own the land                                                           with someone
## 340                                                     You own the land                                                           with someone
## 341                                                     You own the land                                                           with someone
## 342                                                     You own the land                                                           with someone
## 343                                                                                                                 You personally own the land
## 344                                                     You own the land                                                           with someone
## 345                                                     You own the land                                                           with someone
## 346                                                     You own the land                                                           with someone
## 347                                                                                                                 You personally own the land
## 348                                                                                                                 You personally own the land
## 349                                                     You own the land                                                           with someone
## 350                                                                                                                 You personally own the land
## 351                                                                                                                 You personally own the land
## 352                                                                                                                 You personally own the land
## 353                                                     You own the land                                                           with someone
## 354                                                                                                                 You personally own the land
## 355                                                     You own the land                                                           with someone
## 356                                                     You own the land                                                           with someone
## 357                                                     You own the land                                                           with someone
## 358                                                                                                                 You personally own the land
## 359                                                                                                                 You personally own the land
## 360                                                     You own the land                                                           with someone
## 361                                                                                                                 You personally own the land
## 362                                                                                                                 You personally own the land
## 363                                                                                                                 You personally own the land
## 364                                                                                                                 You personally own the land
## 365                                                                                                                 You personally own the land
## 366                                                     You own the land                                                           with someone
## 367                                                     You own the land                                                           with someone
## 368                                                                                                                 You personally own the land
## 369                                                     You own the land                                                           with someone
## 370                                                     You own the land                                                           with someone
## 371                                                                                                                 You personally own the land
## 372                                                     You own the land                                                           with someone
## 373                                                     You own the land                                                           with someone
## 374                                                     You own the land                                                           with someone
## 375                                                                                                                 You personally own the land
## 376                                                                                                                 You personally own the land
## 377                                                     You own the land                                                           with someone
## 378                                                     You own the land                                                           with someone
## 379                                                     You own the land                                                           with someone
## 380                                                     You own the land                                                           with someone
## 381                                                     You own the land                                                           with someone
## 382                                                                                                                 You personally own the land
## 383                                                     You own the land                                                           with someone
## 384                                                     You own the land                                                           with someone
## 385                                                                                                                 You personally own the land
## 386                                                                                                                 You personally own the land
## 387                                                                                                                 You personally own the land
## 388                                                     You own the land                                                           with someone
## 389                                                                                                                 You personally own the land
## 390                                                     You own the land                                                           with someone
## 391                                                     You own the land                                                           with someone
## 392                                                                                                                 You personally own the land
## 393                                                                                                                 You personally own the land
## 394                                                                                                                 You personally own the land
## 395                                                     You own the land                                                           with someone
## 396                                                     You own the land                                                           with someone
## 397                                                     You own the land                                                           with someone
## 398                                                                                                                 You personally own the land
## 399                                                     You own the land                                                           with someone
## 400                                                                                                                 You personally own the land
## 401                                                                                                                 You personally own the land
## 402                                                     You own the land                                                           with someone
## 403                                                     You own the land                                                           with someone
## 404                                                     You own the land                                                           with someone
## 405                                                     You own the land                                                           with someone
## 406                                                                                                                 You personally own the land
## 407                                                                                                                 You personally own the land
## 408                                                     You own the land                                                           with someone
## 409                                                     You own the land                                                           with someone
## 410                                                     You own the land                                                           with someone
## 411                                                     You own the land                                                           with someone
## 412                                                     You own the land                                                           with someone
## 413                                                     You own the land                                                           with someone
## 414                                                     You own the land                                                           with someone
## 415                                                     You own the land                                                           with someone
## 416                                                     You own the land                                                           with someone
## 417                                                                                                                 You personally own the land
## 418                                                                                                                 You personally own the land
## 419                                                                                                                 You personally own the land
## 420                                                                                                                 You personally own the land
## 421                                                     You own the land                                                           with someone
## 422                                                     You own the land                                                           with someone
## 423                                                     You own the land                                                           with someone
## 424                                                     You own the land                                                           with someone
## 425                                                     You own the land                                                           with someone
## 426                                                                                                                 You personally own the land
## 427                                                                                                                 You personally own the land
## 428                                                                                                                 You personally own the land
## 429                                                                                                                 You personally own the land
## 430                                                                                                                 You personally own the land
## 431                                                     You own the land                                                           with someone
## 432                                                     You own the land                                                           with someone
## 433                                                     You own the land                                                           with someone
## 434                                                                                                                 You personally own the land
## 435                                                     You own the land                                                           with someone
## 436                                                     You own the land                                                           with someone
## 437                                                     You own the land                                                           with someone
## 438                                                                                                                 You personally own the land
## 439                                                     You own the land                                                           with someone
## 440                                                     You own the land                                                           with someone
## 441                                                     You own the land                                                           with someone
## 442                                                     You own the land                                                           with someone
## 443                                                                                                                 You personally own the land
## 444                                                                                                                 You personally own the land
## 445                                                                                                                 You personally own the land
## 446                                                                                                                 You personally own the land
## 447                                                                                                                 You personally own the land
## 448                                                     You own the land                                                           with someone
## 449                                                     You own the land                                                           with someone
## 450                                                                                                                 You personally own the land
## 451                                                     You own the land                                                           with someone
## 452                                                                                                                 You personally own the land
## 453                                                     You own the land                                                           with someone
## 454                                                                                                                 You personally own the land
## 455                                                     You own the land                                                           with someone
## 456                                                     You own the land                                                           with someone
## 457                                                     You own the land                                                           with someone
## 458                                                                                                                 You personally own the land
## 459                                                                                                                 You personally own the land
## 460                                                                                                                 You personally own the land
## 461                                                                                                                 You personally own the land
## 462                                                     You own the land                                                           with someone
## 463                                                                                                                 You personally own the land
## 464                                                                                                                 You personally own the land
## 465                                                     You own the land                                                           with someone
## 466                                                     You own the land                                                           with someone
## 467                                                                                                                 You personally own the land
## 468                                                     You own the land                                                           with someone
## 469                                                     You own the land                                                           with someone
## 470                                                                                                                 You personally own the land
## 471                                                                                                                 You personally own the land
## 472                                                     You own the land                                                           with someone
## 473                                                     You own the land                                                           with someone
## 474                                                     You own the land                                                           with someone
## 475                                                     You own the land                                                           with someone
## 476                                                                                                                 You personally own the land
## 477                                                                                                                 You personally own the land
## 478                                                     You own the land                                                           with someone
## 479                                                                                                                 You personally own the land
## 480                                                     You own the land                                                           with someone
## 481                                                                                                                 You personally own the land
## 482                                                                                                                 You personally own the land
## 483                                                     You own the land                                                           with someone
## 484                                                     You own the land                                                           with someone
## 485                                                     You own the land                                                           with someone
## 486                                                     You own the land                                                           with someone
## 487                                                                                                                 You personally own the land
## 488                                                                                                                 You personally own the land
## 489                                                     You own the land                                                           with someone
## 490                                                     You own the land                                                           with someone
## 491                                                                                                                 You personally own the land
## 492                                                                                                                 You personally own the land
## 493                                                                                                                 You personally own the land
## 494                                                     You own the land                                                           with someone
## 495                                                                                                                 You personally own the land
## 496                                                     You own the land                                                           with someone
## 497                                                     You own the land                                                           with someone
## 498                                                                                                                 You personally own the land
## 499                                                     You own the land                                                           with someone
## 500                                                     You own the land                                                           with someone
## 501                                                     You own the land                                                           with someone
## 502                                                     You own the land                                                           with someone
## 503                                                     You own the land                                                           with someone
## 504                                                     You own the land                                                           with someone
## 505                                                                                                                 You personally own the land
## 506                                                                                                                 You personally own the land
## 507                                                     You own the land                                                           with someone
## 508                                                                                                                 You personally own the land
## 509                                                     You own the land                                                           with someone
## 510                                                                                                                 You personally own the land
## 511                                                     You own the land                                                           with someone
## 512                                                                                                                 You personally own the land
## 513                                                                                                                 You personally own the land
## 514                                                     You own the land                                                           with someone
## 515                                                     You own the land                                                           with someone
## 516                                                                                                                 You personally own the land
## 517                                                     You own the land                                                           with someone
## 518                                                     You own the land                                                           with someone
## 519                                                                                                                 You personally own the land
## 520                                                     You own the land                                                           with someone
## 521                                                                                                                 You personally own the land
## 522                                                                                                                 You personally own the land
## 523                                                     You own the land                                                           with someone
## 524                                                                                                                 You personally own the land
## 525                                                                                                                 You personally own the land
## 526                                                     You own the land                                                           with someone
## 527                                                                                                                 You personally own the land
## 528                                                     You own the land                                                           with someone
## 529                                                                                                                 You personally own the land
## 530                                                     You own the land                                                           with someone
## 531                                                     You own the land                                                           with someone
## 532                                                                                                                 You personally own the land
## 533                                                     You own the land                                                           with someone
## 534                                                                                                                 You personally own the land
## 535                                                     You own the land                                                           with someone
## 536                                                     You own the land                                                           with someone
## 537                                                     You own the land                                                           with someone
## 538                                                     You own the land                                                           with someone
## 539                                                     You own the land                                                           with someone
## 540                                                                                                                 You personally own the land
## 541                                                                                                                 You personally own the land
## 542                                                     You own the land                                                           with someone
## 543                                                                                                                 You personally own the land
## 544                                                     You own the land                                                           with someone
## 545                                                     You own the land                                                           with someone
## 546                                                     You own the land                                                           with someone
## 547                                                                                                                 You personally own the land
## 548                                                                                                                 You personally own the land
## 549                                                     You own the land                                                           with someone
## 550                                                                                                                 You personally own the land
## 551                                                                                                                 You personally own the land
## 552                                                                                                                 You personally own the land
## 553                                                     You own the land                                                           with someone
## 554                                                                                                                 You personally own the land
## 555                                                     You own the land                                                           with someone
## 556                                                     You own the land                                                           with someone
## 557                                                     You own the land                                                           with someone
## 558                                                     You own the land                                                           with someone
## 559                                                                                                                 You personally own the land
## 560                                                     You own the land                                                           with someone
## 561                                                     You own the land                                                           with someone
## 562                                                     You own the land                                                           with someone
## 563                                                                                                                 You personally own the land
## 564                                                                                                                 You personally own the land
## 565                                                     You own the land                                                           with someone
## 566                                                                                                                 You personally own the land
## 567                                                                                                                 You personally own the land
## 568                                                     You own the land                                                           with someone
## 569                                                                                                                 You personally own the land
## 570                                                     You own the land                                                           with someone
## 571                                                     You own the land                                                           with someone
## 572                                                     You own the land                                                           with someone
## 573                                                                                                                 You personally own the land
## 574                                                     You own the land                                                           with someone
## 575                                                                                                                 You personally own the land
## 576                                                                                                                 You personally own the land
## 577                                                                                                                 You personally own the land
## 578                                                     You own the land                                                           with someone
## 579                                                                                                                 You personally own the land
## 580                                                                                                                 You personally own the land
## 581                                                                                                                 You personally own the land
## 582                                                                                                                 You personally own the land
## 583                                                                                                                 You personally own the land
## 584                                                                                                                 You personally own the land
## 585                                                     You own the land                                                           with someone
## 586                                                                                                                 You personally own the land
## 587                                                                                                                 You personally own the land
## 588                                                     You own the land                                                           with someone
## 589                                                     You own the land                                                           with someone
## 590                                                                                                                 You personally own the land
## 591                                                     You own the land                                                           with someone
## 592                                                                                                                 You personally own the land
## 593                                                     You own the land                                                           with someone
## 594                                                     You own the land                                                           with someone
## 595                                                     You own the land                                                           with someone
## 596                                                     You own the land                                                           with someone
## 597                                                     You own the land                                                           with someone
## 598                                                                                                                 You personally own the land
## 599                                                                                                                 You personally own the land
## 600                                                     You own the land                                                           with someone
## 601                                                                                                                 You personally own the land
## 602                                                     You own the land                                                           with someone
## 603                                                                                                                 You personally own the land
## 604                                                     You own the land                                                           with someone
## 605                                                     You own the land                                                           with someone
## 606                                                     You own the land                                                           with someone
## 607                                                                                                                 You personally own the land
## 608                                                     You own the land                                                           with someone
## 609                                                     You own the land                                                           with someone
## 610                                                                                                                 You personally own the land
## 611                                                     You own the land                                                           with someone
## 612                                                     You own the land                                                           with someone
## 613                                                                                                                 You personally own the land
## 614                                                                                                                 You personally own the land
## 615                                                                                                                 You personally own the land
## 616                                                                                                                 You personally own the land
## 617                                                                                                                 You personally own the land
## 618                                                                                                                 You personally own the land
## 619                                                                                                                 You personally own the land
## 620                                                     You own the land                                                           with someone
## 621                                                                                                                 You personally own the land
## 622                                                     You own the land                                                           with someone
## 623                                                     You own the land                                                           with someone
## 624                                                                                                                 You personally own the land
## 625                                                                                                                 You personally own the land
## 626                                                     You own the land                                                           with someone
## 627                                                                                                                 You personally own the land
## 628                                                     You own the land                                                           with someone
## 629                                                     You own the land                                                           with someone
## 630                                                     You own the land                                                           with someone
## 631                                                                                                                 You personally own the land
## 632                                                     You own the land                                                           with someone
## 633                                                                                                                 You personally own the land
## 634                                                                                                                 You personally own the land
## 635                                                                                                                 You personally own the land
## 636                                                                                                                 You personally own the land
## 637                                                     You own the land                                                           with someone
## 638                                                                                                                 You personally own the land
## 639                                                                                                                 You personally own the land
## 640                                                     You own the land                                                           with someone
## 641                                                     You own the land                                                           with someone
## 642                                                     You own the land                                                           with someone
## 643                                                     You own the land                                                           with someone
## 644                                                     You own the land                                                           with someone
## 645                                                     You own the land                                                           with someone
## 646                                                     You own the land                                                           with someone
## 647                                                     You own the land                                                           with someone
## 648                                                     You own the land                                                           with someone
## 649                                                     You own the land                                                           with someone
## 650                                                                                                                 You personally own the land
## 651                                                     You own the land                                                           with someone
## 652                                                     You own the land                                                           with someone
## 653                                                                                                                 You personally own the land
## 654                                                                                                                 You personally own the land
## 655                                                                                                                 You personally own the land
## 656                                                                                                                 You personally own the land
## 657                                                                                                                 You personally own the land
## 658                                                     You own the land                                                           with someone
## 659                                                                                                                 You personally own the land
## 660                                                                                                                 You personally own the land
## 661                                                                                                                 You personally own the land
## 662                                                                                                                 You personally own the land
## 663                                                     You own the land                                                           with someone
## 664                                                     You own the land                                                           with someone
## 665                                                     You own the land                                                           with someone
## 666                                                     You own the land                                                           with someone
## 667                                                     You own the land                                                           with someone
## 668                                                                                                                 You personally own the land
## 669                                                     You own the land                                                           with someone
## 670                                                     You own the land                                                           with someone
## 671                                                                                                                 You personally own the land
## 672                                                     You own the land                                                           with someone
## 673                                                                                                                 You personally own the land
## 674                                                                                                                 You personally own the land
## 675                                                                                                                 You personally own the land
## 676                                                                                                                 You personally own the land
## 677                                                     You own the land                                                           with someone
## 678                                                                                                                 You personally own the land
## 679                                                     You own the land                                                           with someone
## 680                                                     You own the land                                                           with someone
## 681                                                     You own the land                                                           with someone
## 682                                                                                                                 You personally own the land
## 683                                                     You own the land                                                           with someone
## 684                                                                                                                 You personally own the land
## 685                                                     You own the land                                                           with someone
## 686                                                     You own the land                                                           with someone
## 687                                                                                                                 You personally own the land
## 688                                                                                                                 You personally own the land
## 689                                                                                                                 You personally own the land
## 690                                                     You own the land                                                           with someone
## 691                                                     You own the land                                                           with someone
## 692                                                     You own the land                                                           with someone
## 693                                                     You own the land                                                           with someone
## 694                                                                                                                 You personally own the land
## 695                                                     You own the land                                                           with someone
## 696                                                     You own the land                                                           with someone
## 697                                                                                                                 You personally own the land
## 698                                                     You own the land                                                           with someone
## 699                                                                                                                 You personally own the land
## 700                                                                                                                 You personally own the land
## 701                                                                                                                 You personally own the land
## 702                                                     You own the land                                                           with someone
## 703                                                     You own the land                                                           with someone
## 704                                                                                                                 You personally own the land
## 705                                                     You own the land                                                           with someone
## 706                                                                                                                 You personally own the land
## 707                                                                                                                 You personally own the land
## 708                                                     You own the land                                                           with someone
## 709                                                     You own the land                                                           with someone
## 710                                                     You own the land                                                           with someone
## 711                                                     You own the land                                                           with someone
## 712                                                     You own the land                                                           with someone
## 713                                                                                                                 You personally own the land
## 714                                                     You own the land                                                           with someone
## 715                                                                                                                 You personally own the land
## 716                                                                                                                 You personally own the land
## 717                                                                                                                 You personally own the land
## 718                                                                                                                 You personally own the land
## 719                                                                                                                 You personally own the land
## 720                                                     You own the land                                                           with someone
## 721                                                     You own the land                                                           with someone
## 722                                                     You own the land                                                           with someone
## 723                                                     You own the land                                                           with someone
## 724                                                     You own the land                                                           with someone
## 725                                                                                                                 You personally own the land
## 726                                                     You own the land                                                           with someone
## 727                                                                                                                 You personally own the land
## 728                                                     You own the land                                                           with someone
## 729                                                     You own the land                                                           with someone
## 730                                                                                                                 You personally own the land
## 731                                                     You own the land                                                           with someone
## 732                                                                                                                 You personally own the land
## 733                                                                                                                 You personally own the land
## 734                                                     You own the land                                                           with someone
## 735                                                                                                                 You personally own the land
## 736                                                                                                                 You personally own the land
## 737                                                     You own the land                                                           with someone
## 738                                                                                                                 You personally own the land
## 739                                                     You own the land                                                           with someone
## 740                                                                                                                 You personally own the land
## 741                                                     You own the land                                                           with someone
## 742                                                                                                                 You personally own the land
## 743                                                     You own the land                                                           with someone
## 744                                                                                                                 You personally own the land
## 745                                                                                                                 You personally own the land
## 746                                                                                                                 You personally own the land
## 747                                                     You own the land                                                           with someone
## 748                                                                                                                 You personally own the land
## 749                                                                                                                 You personally own the land
## 750                                                     You own the land                                                           with someone
## 751                                                     You own the land                                                           with someone
## 752                                                                                                                 You personally own the land
## 753                                                     You own the land                                                           with someone
## 754                                                     You own the land                                                           with someone
## 755                                                     You own the land                                                           with someone
## 756                                                     You own the land                                                           with someone
## 757                                                     You own the land                                                           with someone
## 758                                                     You own the land                                                           with someone
## 759                                                     You own the land                                                           with someone
## 760                                                                                                                 You personally own the land
## 761                                                     You own the land                                                           with someone
## 762                                                     You own the land                                                           with someone
## 763                                                     You own the land                                                           with someone
## 764                                                                                                                 You personally own the land
## 765                                                                                                                 You personally own the land
## 766                                                                                                                 You personally own the land
## 767                                                     You own the land                                                           with someone
## 768                                                     You own the land                                                           with someone
## 769                                                     You own the land                                                           with someone
## 770                                                     You own the land                                                           with someone
## 771                                                                                                                 You personally own the land
## 772                                                     You own the land                                                           with someone
## 773                                                                                                                 You personally own the land
## 774                                                                                                                 You personally own the land
## 775                                                                                                                 You personally own the land
## 776                                                                                                                 You personally own the land
## 777                                                                                                                 You personally own the land
## 778                                                                                                                 You personally own the land
## 779                                                                                                                 You personally own the land
## 780                                                                                                                 You personally own the land
## 781                                                                                                                 You personally own the land
## 782                                                     You own the land                                                           with someone
## 783                                                     You own the land                                                           with someone
## 784                                                                                                                 You personally own the land
## 785                                                                                                                 You personally own the land
## 786                                                     You own the land                                                           with someone
## 787                                                                                                                 You personally own the land
## 788                                                     You own the land                                                           with someone
## 789                                                     You own the land                                                           with someone
## 790                                                                                                                 You personally own the land
## 791                                                     You own the land                                                           with someone
## 792                                                     You own the land                                                           with someone
## 793                                                     You own the land                                                           with someone
## 794                                                     You own the land                                                           with someone
## 795                                                     You own the land                                                           with someone
## 796                                                                                                                 You personally own the land
## 797                                                     You own the land                                                           with someone
## 798                                                     You own the land                                                           with someone
## 799                                                                                                                 You personally own the land
## 800                                                                                                                 You personally own the land
## 801                                                     You own the land                                                           with someone
## 802                                                                                                                 You personally own the land
## 803                                                     You own the land                                                           with someone
## 804                                                     You own the land                                                           with someone
## 805                                                     You own the land                                                           with someone
## 806                                                     You own the land                                                           with someone
## 807                                                                                                                 You personally own the land
## 808                                                     You own the land                                                           with someone
## 809                                                     You own the land                                                           with someone
## 810                                                                                                                 You personally own the land
## 811                                                     You own the land                                                           with someone
## 812                                                                                                                 You personally own the land
## 813                                                                                                                 You personally own the land
## 814                                                                                                                 You personally own the land
## 815                                                     You own the land                                                           with someone
## 816                                                                                                                 You personally own the land
## 817                                                     You own the land                                                           with someone
## 818                                                                                                                 You personally own the land
## 819                                                     You own the land                                                           with someone
## 820                                                                                                                 You personally own the land
## 821                                                     You own the land                                                           with someone
## 822                                                     You own the land                                                           with someone
## 823                                                                                                                 You personally own the land
## 824                                                                                                                 You personally own the land
## 825                                                                                                                 You personally own the land
## 826                                                                                                                 You personally own the land
## 827                                                     You own the land                                                           with someone
## 828                                                     You own the land                                                           with someone
## 829                                                                                                                 You personally own the land
## 830                                                     You own the land                                                           with someone
## 831                                                     You own the land                                                           with someone
## 832                                                                                                                 You personally own the land
## 833                                                     You own the land                                                           with someone
## 834                                                     You own the land                                                           with someone
## 835                                                     You own the land                                                           with someone
## 836                                                     You own the land                                                           with someone
## 837                                                     You own the land                                                           with someone
## 838                                                                                                                 You personally own the land
## 839                                                     You own the land                                                           with someone
## 840                                                                                                                 You personally own the land
## 841                                                                                                                 You personally own the land
## 842                                                     You own the land                                                           with someone
## 843                                                                                                                 You personally own the land
## 844                                                                                                                 You personally own the land
## 845                                                     You own the land                                                           with someone
## 846                                                                                                                 You personally own the land
## 847                                                                                                                 You personally own the land
## 848                                                                                                                 You personally own the land
## 849                                                     You own the land                                                           with someone
## 850                                                     You own the land                                                           with someone
## 851                                                                                                                 You personally own the land
## 852                                                                                                                 You personally own the land
## 853                                                                                                                 You personally own the land
## 854                                                     You own the land                                                           with someone
## 855                                                     You own the land                                                           with someone
## 856                                                     You own the land                                                           with someone
## 857                                                     You own the land                                                           with someone
## 858                                                                                                                 You personally own the land
## 859                                                     You own the land                                                           with someone
## 860                                                     You own the land                                                           with someone
## 861                                                                                                                 You personally own the land
## 862                                                                                                                 You personally own the land
## 863                                                                                                                 You personally own the land
## 864                                                     You own the land                                                           with someone
## 865                                                     You own the land                                                           with someone
## 866                                                     You own the land                                                           with someone
## 867                                                                                                                 You personally own the land
## 868                                                     You own the land                                                           with someone
## 869                                                                                                                 You personally own the land
## 870                                                                                                                 You personally own the land
## 871                                                     You own the land                                                           with someone
## 872                                                     You own the land                                                           with someone
## 873                                                     You own the land                                                           with someone
## 874                                                     You own the land                                                           with someone
## 875                                                                                                                 You personally own the land
## 876                                                     You own the land                                                           with someone
## 877                                                     You own the land                                                           with someone
## 878                                                     You own the land                                                           with someone
## 879                                                                                                                 You personally own the land
## 880                                                     You own the land                                                           with someone
## 881                                                                                                                 You personally own the land
## 882                                                     You own the land                                                           with someone
## 883                                                                                                                 You personally own the land
## 884                                                     You own the land                                                           with someone
## 885                                                                                                                 You personally own the land
## 886                                                     You own the land                                                           with someone
## 887                                                     You own the land                                                           with someone
## 888                                                     You own the land                                                           with someone
## 889                                                     You own the land                                                           with someone
## 890                                                     You own the land                                                           with someone
## 891                                                     You own the land                                                           with someone
## 892                                                     You own the land                                                           with someone
## 893                                                     You own the land                                                           with someone
## 894                                                     You own the land                                                           with someone
## 895                                                                                                                 You personally own the land
## 896                                                     You own the land                                                           with someone
## 897                                                     You own the land                                                           with someone
## 898                                                     You own the land                                                           with someone
## 899                                                     You own the land                                                           with someone
## 900                                                                                                                 You personally own the land
## 901                                                                                                                 You personally own the land
## 902                                                     You own the land                                                           with someone
## 903                                                     You own the land                                                           with someone
## 904                                                     You own the land                                                           with someone
## 905                                                                                                                 You personally own the land
## 906                                                                                                                 You personally own the land
## 907                                                                                                                 You personally own the land
## 908                                                     You own the land                                                           with someone
## 909                                                     You own the land                                                           with someone
## 910                                                     You own the land                                                           with someone
## 911                                                                                                                 You personally own the land
## 912                                                     You own the land                                                           with someone
## 913                                                     You own the land                                                           with someone
## 914                                                     You own the land                                                           with someone
## 915                                                     You own the land                                                           with someone
## 916                                                                                                                 You personally own the land
## 917                                                                                                                 You personally own the land
## 918                                                     You own the land                                                           with someone
## 919                                                     You own the land                                                           with someone
## 920                                                                                                                 You personally own the land
## 921                                                     You own the land                                                           with someone
## 922                                                     You own the land                                                           with someone
## 923                                                                                                                 You personally own the land
## 924                                                                                                                 You personally own the land
## 925                                                     You own the land                                                           with someone
## 926                                                     You own the land                                                           with someone
## 927                                                     You own the land                                                           with someone
## 928                                                                                                                 You personally own the land
## 929                                                     You own the land                                                           with someone
## 930                                                     You own the land                                                           with someone
## 931                                                                                                                 You personally own the land
## 932                                                     You own the land                                                           with someone
## 933                                                                                                                 You personally own the land
## 934                                                                                                                 You personally own the land
## 935                                                     You own the land                                                           with someone
## 936                                                     You own the land                                                           with someone
## 937                                                                                                                 You personally own the land
## 938                                                                                                                 You personally own the land
## 939                                                                                                                 You personally own the land
## 940                                                     You own the land                                                           with someone
## 941                                                                                                                 You personally own the land
## 942                                                     You own the land                                                           with someone
## 943                                                     You own the land                                                           with someone
## 944                                                     You own the land                                                           with someone
## 945                                                                                                                 You personally own the land
## 946                                                                                                                 You personally own the land
## 947                                                     You own the land                                                           with someone
## 948                                                     You own the land                                                           with someone
## 949                                                                                                                 You personally own the land
## 950                                                     You own the land                                                           with someone
## 951                                                     You own the land                                                           with someone
## 952                                                     You own the land                                                           with someone
## 953                                                                                                                 You personally own the land
## 954                                                     You own the land                                                           with someone
## 955                                                     You own the land                                                           with someone
## 956                                                     You own the land                                                           with someone
## 957                                                     You own the land                                                           with someone
## 958                                                     You own the land                                                           with someone
## 959                                                     You own the land                                                           with someone
## 960                                                                                                                 You personally own the land
## 961                                                                                                                 You personally own the land
## 962                                                                                                                 You personally own the land
## 963                                                     You own the land                                                           with someone
## 964                                                     You own the land                                                           with someone
## 965                                                     You own the land                                                           with someone
## 966                                                     You own the land                                                           with someone
## 967                                                     You own the land                                                           with someone
## 968                                                     You own the land                                                           with someone
## 969                                                                                                                 You personally own the land
## 970                                                     You own the land                                                           with someone
## 971                                                                                                                 You personally own the land
## 972                                                     You own the land                                                           with someone
## 973                                                                                                                 You personally own the land
## 974                                                     You own the land                                                           with someone
## 975                                                     You own the land                                                           with someone
## 976                                                     You own the land                                                           with someone
## 977                                                     You own the land                                                           with someone
## 978                                                     You own the land                                                           with someone
## 979                                                     You own the land                                                           with someone
## 980                                                     You own the land                                                           with someone
## 981                                                                                                                 You personally own the land
## 982                                                     You own the land                                                           with someone
## 983                                                                                                                 You personally own the land
## 984                                                                                                                 You personally own the land
## 985                                                                                                                 You personally own the land
## 986                                                                                                                 You personally own the land
## 987                                                     You own the land                                                           with someone
## 988                                                                                                                 You personally own the land
## 989                                                     You own the land                                                           with someone
## 990                                                                                                                 You personally own the land
## 991                                                     You own the land                                                           with someone
## 992                                                     You own the land                                                           with someone
## 993                                                                                                                 You personally own the land
## 994                                                                                                                 You personally own the land
## 995                                                                                                                 You personally own the land
## 996                                                                                                                 You personally own the land
## 997                                                     You own the land                                                           with someone
## 998                                                                                                                 You personally own the land
## 999                                                     You own the land                                                           with someone
## 1000                                                    You own the land                                                           with someone
## 1001                                                                                                                You personally own the land
## 1002                                                    You own the land                                                           with someone
## 1003                                                    You own the land                                                           with someone
## 1004                                                    You own the land                                                           with someone
## 1005                                                    You own the land                                                           with someone
## 1006                                                                                                                You personally own the land
## 1007                                                    You own the land                                                           with someone
## 1008                                                    You own the land                                                           with someone
## 1009                                                                                                                You personally own the land
## 1010                                                                                                                You personally own the land
## 1011                                                                                                                You personally own the land
## 1012                                                    You own the land                                                           with someone
## 1013                                                    You own the land                                                           with someone
## 1014                                                    You own the land                                                           with someone
## 1015                                                    You own the land                                                           with someone
## 1016                                                                                                                You personally own the land
## 1017                                                    You own the land                                                           with someone
## 1018                                                    You own the land                                                           with someone
## 1019                                                    You own the land                                                           with someone
## 1020                                                                                                                You personally own the land
## 1021                                                                                                                You personally own the land
## 1022                                                    You own the land                                                           with someone
## 1023                                                                                                                You personally own the land
## 1024                                                    You own the land                                                           with someone
## 1025                                                    You own the land                                                           with someone
## 1026                                                    You own the land                                                           with someone
## 1027                                                    You own the land                                                           with someone
## 1028                                                    You own the land                                                           with someone
## 1029                                                    You own the land                                                           with someone
## 1030                                                    You own the land                                                           with someone
## 1031                                                    You own the land                                                           with someone
## 1032                                                    You own the land                                                           with someone
## 1033                                                    You own the land                                                           with someone
## 1034                                                    You own the land                                                           with someone
## 1035                                                    You own the land                                                           with someone
## 1036                                                                                                                You personally own the land
## 1037                                                                                                                You personally own the land
## 1038                                                                                                                You personally own the land
## 1039                                                    You own the land                                                           with someone
## 1040                                                    You own the land                                                           with someone
## 1041                                                                                                                You personally own the land
## 1042                                                                                                                You personally own the land
## 1043                                                                                                                You personally own the land
## 1044                                                    You own the land                                                           with someone
## 1045                                                                                                                You personally own the land
## 1046                                                    You own the land                                                           with someone
## 1047                                                    You own the land                                                           with someone
## 1048                                                    You own the land                                                           with someone
## 1049                                                                                                                You personally own the land
## 1050                                                                                                                You personally own the land
## 1051                                                    You own the land                                                           with someone
## 1052                                                    You own the land                                                           with someone
## 1053                                                                                                                You personally own the land
## 1054                                                                                                                You personally own the land
## 1055                                                    You own the land                                                           with someone
## 1056                                                                                                                You personally own the land
## 1057                                                    You own the land                                                           with someone
## 1058                                                                                                                You personally own the land
## 1059                                                    You own the land                                                           with someone
## 1060                                                                                                                You personally own the land
## 1061                                                                                                                You personally own the land
## 1062                                                    You own the land                                                           with someone
## 1063                                                                                                                You personally own the land
## 1064                                                                                                                You personally own the land
## 1065                                                                                                                You personally own the land
## 1066                                                                                                                You personally own the land
## 1067                                                                                                                You personally own the land
## 1068                                                    You own the land                                                           with someone
## 1069                                                    You own the land                                                           with someone
## 1070                                                    You own the land                                                           with someone
## 1071                                                                                                                You personally own the land
## 1072                                                    You own the land                                                           with someone
## 1073                                                    You own the land                                                           with someone
## 1074                                                    You own the land                                                           with someone
## 1075                                                    You own the land                                                           with someone
## 1076                                                                                                                You personally own the land
## 1077                                                    You own the land                                                           with someone
## 1078                                                    You own the land                                                           with someone
## 1079                                                    You own the land                                                           with someone
## 1080                                                    You own the land                                                           with someone
## 1081                                                                                                                You personally own the land
## 1082                                                                                                                You personally own the land
## 1083                                                    You own the land                                                           with someone
## 1084                                                    You own the land                                                           with someone
## 1085                                                    You own the land                                                           with someone
## 1086                                                    You own the land                                                           with someone
## 1087                                                                                                                You personally own the land
## 1088                                                    You own the land                                                           with someone
## 1089                                                                                                                You personally own the land
## 1090                                                                                                                You personally own the land
## 1091                                                    You own the land                                                           with someone
## 1092                                                                                                                You personally own the land
## 1093                                                    You own the land                                                           with someone
## 1094                                                                                                                You personally own the land
## 1095                                                                                                                You personally own the land
## 1096                                                    You own the land                                                           with someone
## 1097                                                                                                                You personally own the land
## 1098                                                    You own the land                                                           with someone
## 1099                                                                                                                You personally own the land
## 1100                                                                                                                You personally own the land
## 1101                                                                                                                You personally own the land
## 1102                                                                                                                You personally own the land
## 1103                                                    You own the land                                                           with someone
## 1104                                                    You own the land                                                           with someone
## 1105                                                    You own the land                                                           with someone
## 1106                                                                                                                You personally own the land
## 1107                                                    You own the land                                                           with someone
## 1108                                                    You own the land                                                           with someone
## 1109                                                                                                                You personally own the land
## 1110                                                                                                                You personally own the land
## 1111                                                    You own the land                                                           with someone
## 1112                                                                                                                You personally own the land
## 1113                                                                                                                You personally own the land
## 1114                                                    You own the land                                                           with someone
## 1115                                                    You own the land                                                           with someone
## 1116                                                    You own the land                                                           with someone
## 1117                                                    You own the land                                                           with someone
## 1118                                                    You own the land                                                           with someone
## 1119                                                    You own the land                                                           with someone
## 1120                                                    You own the land                                                           with someone
## 1121                                                                                                                You personally own the land
## 1122                                                    You own the land                                                           with someone
## 1123                                                    You own the land                                                           with someone
## 1124                                                                                                                You personally own the land
## 1125                                                                                                                You personally own the land
## 1126                                                    You own the land                                                           with someone
## 1127                                                    You own the land                                                           with someone
## 1128                                                    You own the land                                                           with someone
## 1129                                                                                                                You personally own the land
## 1130                                                    You own the land                                                           with someone
## 1131                                                    You own the land                                                           with someone
## 1132                                                                                                                You personally own the land
## 1133                                                                                                                You personally own the land
## 1134                                                    You own the land                                                           with someone
## 1135                                                                                                                You personally own the land
## 1136                                                    You own the land                                                           with someone
## 1137                                                                                                                You personally own the land
## 1138                                                    You own the land                                                           with someone
## 1139                                                                                                                You personally own the land
## 1140                                                                                                                You personally own the land
## 1141                                                                                                                You personally own the land
## 1142                                                                                                                You personally own the land
## 1143                                                    You own the land                                                           with someone
## 1144                                                    You own the land                                                           with someone
## 1145                                                                                                                You personally own the land
## 1146                                                                                                                You personally own the land
## 1147                                                    You own the land                                                           with someone
## 1148                                                                                                                You personally own the land
## 1149                                                    You own the land                                                           with someone
## 1150                                                    You own the land                                                           with someone
## 1151                                                    You own the land                                                           with someone
## 1152                                                                                                                You personally own the land
## 1153                                                    You own the land                                                           with someone
## 1154                                                                                                                You personally own the land
## 1155                                                    You own the land                                                           with someone
## 1156                                                    You own the land                                                           with someone
## 1157                                                                                                                You personally own the land
## 1158                                                    You own the land                                                           with someone
## 1159                                                    You own the land                                                           with someone
## 1160                                                    You own the land                                                           with someone
## 1161                                                    You own the land                                                           with someone
## 1162                                                    You own the land                                                           with someone
## 1163                                                                                                                You personally own the land
## 1164                                                    You own the land                                                           with someone
## 1165                                                    You own the land                                                           with someone
## 1166                                                    You own the land                                                           with someone
## 1167                                                    You own the land                                                           with someone
## 1168                                                    You own the land                                                           with someone
## 1169                                                    You own the land                                                           with someone
## 1170                                                                                                                You personally own the land
## 1171                                                    You own the land                                                           with someone
## 1172                                                    You own the land                                                           with someone
## 1173                                                                                                                You personally own the land
## 1174                                                    You own the land                                                           with someone
## 1175                                                    You own the land                                                           with someone
## 1176                                                                                                                You personally own the land
## 1177                                                    You own the land                                                           with someone
## 1178                                                    You own the land                                                           with someone
## 1179                                                    You own the land                                                           with someone
## 1180                                                                                                                You personally own the land
## 1181                                                    You own the land                                                           with someone
## 1182                                                                                                                You personally own the land
## 1183                                                                                                                You personally own the land
## 1184                                                    You own the land                                                           with someone
## 1185                                                    You own the land                                                           with someone
## 1186                                                                                                                You personally own the land
## 1187                                                    You own the land                                                           with someone
## 1188                                                    You own the land                                                           with someone
## 1189                                                                                                                You personally own the land
## 1190                                                    You own the land                                                           with someone
## 1191                                                    You own the land                                                           with someone
## 1192                                                    You own the land                                                           with someone
## 1193                                                    You own the land                                                           with someone
## 1194                                                    You own the land                                                           with someone
## 1195                                                                                                                You personally own the land
## 1196                                                    You own the land                                                           with someone
## 1197                                                    You own the land                                                           with someone
## 1198                                                    You own the land                                                           with someone
## 1199                                                                                                                You personally own the land
## 1200                                                                                                                You personally own the land
## 1201                                                                                                                You personally own the land
## 1202                                                                                                                You personally own the land
## 1203                                                    You own the land                                                           with someone
## 1204                                                                                                                You personally own the land
## 1205                                                    You own the land                                                           with someone
## 1206                                                    You own the land                                                           with someone
## 1207                                                                                                                You personally own the land
## 1208                                                    You own the land                                                           with someone
## 1209                                                                                                                You personally own the land
## 1210                                                                                                                You personally own the land
## 1211                                                    You own the land                                                           with someone
## 1212                                                                                                                You personally own the land
## 1213                                                    You own the land                                                           with someone
## 1214                                                                                                                You personally own the land
## 1215                                                    You own the land                                                           with someone
## 1216                                                    You own the land                                                           with someone
## 1217                                                                                                                You personally own the land
## 1218                                                                                                                You personally own the land
## 1219                                                                                                                You personally own the land
## 1220                                                                                                                You personally own the land
## 1221                                                    You own the land                                                           with someone
## 1222                                                    You own the land                                                           with someone
## 1223                                                                                                                You personally own the land
## 1224                                                                                                                You personally own the land
## 1225                                                    You own the land                                                           with someone
## 1226                                                    You own the land                                                           with someone
## 1227                                                                                                                You personally own the land
## 1228                                                                                                                You personally own the land
## 1229                                                                                                                You personally own the land
## 1230                                                                                                                You personally own the land
## 1231                                                    You own the land                                                           with someone
## 1232                                                    You own the land                                                           with someone
## 1233                                                    You own the land                                                           with someone
## 1234                                                                                                                You personally own the land
## 1235                                                    You own the land                                                           with someone
## 1236                                                                                                                You personally own the land
## 1237                                                                                                                You personally own the land
## 1238                                                                                                                You personally own the land
## 1239                                                                                                                You personally own the land
## 1240                                                    You own the land                                                           with someone
## 1241                                                                                                                You personally own the land
## 1242                                                    You own the land                                                           with someone
## 1243                                                    You own the land                                                           with someone
## 1244                                                                                                                You personally own the land
## 1245                                                    You own the land                                                           with someone
## 1246                                                    You own the land                                                           with someone
## 1247                                                    You own the land                                                           with someone
## 1248                                                                                                                You personally own the land
## 1249                                                    You own the land                                                           with someone
## 1250                                                    You own the land                                                           with someone
## 1251                                                                                                                You personally own the land
## 1252                                                                                                                You personally own the land
## 1253                                                    You own the land                                                           with someone
## 1254                                                    You own the land                                                           with someone
## 1255                                                    You own the land                                                           with someone
## 1256                                                    You own the land                                                           with someone
## 1257                                                                                                                You personally own the land
## 1258                                                                                                                You personally own the land
## 1259                                                    You own the land                                                           with someone
## 1260                                                    You own the land                                                           with someone
## 1261                                                                                                                You personally own the land
## 1262                                                                                                                You personally own the land
## 1263                                                                                                                You personally own the land
## 1264                                                                                                                You personally own the land
## 1265                                                    You own the land                                                           with someone
## 1266                                                                                                                You personally own the land
## 1267                                                    You own the land                                                           with someone
## 1268                                                                                                                You personally own the land
## 1269                                                    You own the land                                                           with someone
## 1270                                                    You own the land                                                           with someone
## 1271                                                    You own the land                                                           with someone
## 1272                                                                                                                You personally own the land
## 1273                                                                                                                You personally own the land
## 1274                                                    You own the land                                                           with someone
## 1275                                                                                                                You personally own the land
## 1276                                                    You own the land                                                           with someone
## 1277                                                                                                                You personally own the land
## 1278                                                                                                                You personally own the land
## 1279                                                                                                                You personally own the land
## 1280                                                                                                                You personally own the land
## 1281                                                    You own the land                                                           with someone
## 1282                                                    You own the land                                                           with someone
## 1283                                                    You own the land                                                           with someone
## 1284                                                                                                                You personally own the land
## 1285                                                    You own the land                                                           with someone
## 1286                                                                                                                You personally own the land
## 1287                                                    You own the land                                                           with someone
## 1288                                                    You own the land                                                           with someone
## 1289                                                    You own the land                                                           with someone
## 1290                                                                                                                You personally own the land
## 1291                                                                                                                You personally own the land
## 1292                                                    You own the land                                                           with someone
## 1293                                                                                                                You personally own the land
## 1294                                                    You own the land                                                           with someone
## 1295                                                    You own the land                                                           with someone
## 1296                                                                                                                You personally own the land
## 1297                                                    You own the land                                                           with someone
## 1298                                                    You own the land                                                           with someone
## 1299                                                                                                                You personally own the land
## 1300                                                    You own the land                                                           with someone
## 1301                                                                                                                You personally own the land
## 1302                                                                                                                You personally own the land
## 1303                                                    You own the land                                                           with someone
## 1304                                                    You own the land                                                           with someone
## 1305                                                                                                                You personally own the land
## 1306                                                                                                                You personally own the land
## 1307                                                    You own the land                                                           with someone
## 1308                                                    You own the land                                                           with someone
## 1309                                                    You own the land                                                           with someone
## 1310                                                    You own the land                                                           with someone
## 1311                                                    You own the land                                                           with someone
## 1312                                                    You own the land                                                           with someone
## 1313                                                    You own the land                                                           with someone
## 1314                                                    You own the land                                                           with someone
## 1315                                                    You own the land                                                           with someone
## 1316                                                    You own the land                                                           with someone
## 1317                                                    You own the land                                                           with someone
## 1318                                                                                                                You personally own the land
## 1319                                                    You own the land                                                           with someone
## 1320                                                    You own the land                                                           with someone
## 1321                                                    You own the land                                                           with someone
## 1322                                                    You own the land                                                           with someone
## 1323                                                                                                                You personally own the land
## 1324                                                    You own the land                                                           with someone
## 1325                                                    You own the land                                                           with someone
## 1326                                                    You own the land                                                           with someone
## 1327                                                                                                                You personally own the land
## 1328                                                                                                                You personally own the land
## 1329                                                                                                                You personally own the land
## 1330                                                                                                                You personally own the land
## 1331                                                                                                                You personally own the land
## 1332                                                    You own the land                                                           with someone
## 1333                                                                                                                You personally own the land
## 1334                                                                                                                You personally own the land
## 1335                                                    You own the land                                                           with someone
## 1336                                                    You own the land                                                           with someone
## 1337                                                    You own the land                                                           with someone
## 1338                                                    You own the land                                                           with someone
## 1339                                                    You own the land                                                           with someone
## 1340                                                                                                                You personally own the land
## 1341                                                    You own the land                                                           with someone
## 1342                                                    You own the land                                                           with someone
## 1343                                                    You own the land                                                           with someone
## 1344                                                                                                                You personally own the land
## 1345                                                    You own the land                                                           with someone
## 1346                                                    You own the land                                                           with someone
## 1347                                                                                                                You personally own the land
## 1348                                                                                                                You personally own the land
## 1349                                                                                                                You personally own the land
## 1350                                                    You own the land                                                           with someone
## 1351                                                    You own the land                                                           with someone
## 1352                                                    You own the land                                                           with someone
## 1353                                                                                                                You personally own the land
## 1354                                                                                                                You personally own the land
## 1355                                                    You own the land                                                           with someone
## 1356                                                                                                                You personally own the land
## 1357                                                    You own the land                                                           with someone
## 1358                                                    You own the land                                                           with someone
## 1359                                                    You own the land                                                           with someone
## 1360                                                    You own the land                                                           with someone
## 1361                                                    You own the land                                                           with someone
## 1362                                                    You own the land                                                           with someone
## 1363                                                    You own the land                                                           with someone
## 1364                                                                                                                You personally own the land
## 1365                                                    You own the land                                                           with someone
## 1366                                                    You own the land                                                           with someone
## 1367                                                    You own the land                                                           with someone
## 1368                                                                                                                You personally own the land
## 1369                                                    You own the land                                                           with someone
## 1370                                                    You own the land                                                           with someone
## 1371                                                                                                                You personally own the land
## 1372                                                    You own the land                                                           with someone
## 1373                                                                                                                You personally own the land
## 1374                                                                                                                You personally own the land
## 1375                                                                                                                You personally own the land
## 1376                                                    You own the land                                                           with someone
## 1377                                                                                                                You personally own the land
## 1378                                                    You own the land                                                           with someone
## 1379                                                    You own the land                                                           with someone
## 1380                                                    You own the land                                                           with someone
## 1381                                                    You own the land                                                           with someone
## 1382                                                                                                                You personally own the land
## 1383                                                    You own the land                                                           with someone
## 1384                                                                                                                You personally own the land
## 1385                                                    You own the land                                                           with someone
## 1386                                                    You own the land                                                           with someone
## 1387                                                    You own the land                                                           with someone
## 1388                                                    You own the land                                                           with someone
## 1389                                                    You own the land                                                           with someone
## 1390                                                    You own the land                                                           with someone
## 1391                                                    You own the land                                                           with someone
## 1392                                                                                                                You personally own the land
## 1393                                                    You own the land                                                           with someone
## 1394                                                                                                                You personally own the land
## 1395                                                    You own the land                                                           with someone
## 1396                                                    You own the land                                                           with someone
## 1397                                                                                                                You personally own the land
## 1398                                                    You own the land                                                           with someone
## 1399                                                                                                                You personally own the land
## 1400                                                    You own the land                                                           with someone
## 1401                                                    You own the land                                                           with someone
## 1402                                                                                                                You personally own the land
## 1403                                                    You own the land                                                           with someone
## 1404                                                                                                                You personally own the land
## 1405                                                                                                                You personally own the land
## 1406                                                    You own the land                                                           with someone
## 1407                                                                                                                You personally own the land
## 1408                                                    You own the land                                                           with someone
## 1409                                                    You own the land                                                           with someone
## 1410                                                    You own the land                                                           with someone
## 1411                                                                                                                You personally own the land
## 1412                                                                                                                You personally own the land
## 1413                                                    You own the land                                                           with someone
## 1414                                                    You own the land                                                           with someone
## 1415                                                    You own the land                                                           with someone
## 1416                                                                                                                You personally own the land
## 1417                                                                                                                You personally own the land
## 1418                                                                                                                You personally own the land
## 1419                                                                                                                You personally own the land
## 1420                                                                                                                You personally own the land
## 1421                                                                                                                You personally own the land
## 1422                                                                                                                You personally own the land
## 1423                                                                                                                You personally own the land
## 1424                                                                                                                You personally own the land
## 1425                                                    You own the land                                                           with someone
## 1426                                                                                                                You personally own the land
## 1427                                                    You own the land                                                           with someone
## 1428                                                    You own the land                                                           with someone
## 1429                                                    You own the land                                                           with someone
## 1430                                                                                                                You personally own the land
## 1431                                                    You own the land                                                           with someone
## 1432                                                    You own the land                                                           with someone
## 1433                                                                                                                You personally own the land
## 1434                                                    You own the land                                                           with someone
## 1435                                                    You own the land                                                           with someone
## 1436                                                                                                                You personally own the land
## 1437                                                                                                                You personally own the land
## 1438                                                    You own the land                                                           with someone
## 1439                                                    You own the land                                                           with someone
## 1440                                                                                                                You personally own the land
## 1441                                                    You own the land                                                           with someone
## 1442                                                    You own the land                                                           with someone
## 1443                                                                                                                You personally own the land
## 1444                                                    You own the land                                                           with someone
## 1445                                                                                                                You personally own the land
## 1446                                                    You own the land                                                           with someone
## 1447                                                    You own the land                                                           with someone
## 1448                                                                                                                You personally own the land
## 1449                                                                                                                You personally own the land
## 1450                                                    You own the land                                                           with someone
## 1451                                                    You own the land                                                           with someone
## 1452                                                    You own the land                                                           with someone
## 1453                                                    You own the land                                                           with someone
## 1454                                                                                                                You personally own the land
## 1455                                                    You own the land                                                           with someone
## 1456                                                                                                                You personally own the land
## 1457                                                    You own the land                                                           with someone
## 1458                                                    You own the land                                                           with someone
## 1459                                                    You own the land                                                           with someone
## 1460                                                                                                                You personally own the land
## 1461                                                                                                                You personally own the land
## 1462                                                                                                                You personally own the land
## 1463                                                                                                                You personally own the land
## 1464                                                    You own the land                                                           with someone
## 1465                                                    You own the land                                                           with someone
## 1466                                                    You own the land                                                           with someone
## 1467                                                    You own the land                                                           with someone
## 1468                                                    You own the land                                                           with someone
## 1469                                                                                                                You personally own the land
## 1470                                                                                                                You personally own the land
## 1471                                                                                                                You personally own the land
## 1472                                                                                                                You personally own the land
## 1473                                                                                                                You personally own the land
## 1474                                                    You own the land                                                           with someone
## 1475                                                    You own the land                                                           with someone
## 1476                                                    You own the land                                                           with someone
## 1477                                                    You own the land                                                           with someone
## 1478                                                    You own the land                                                           with someone
## 1479                                                    You own the land                                                           with someone
## 1480                                                                                                                You personally own the land
## 1481                                                    You own the land                                                           with someone
## 1482                                                                                                                You personally own the land
## 1483                                                    You own the land                                                           with someone
## 1484                                                                                                                You personally own the land
## 1485                                                                                                                You personally own the land
## 1486                                                    You own the land                                                           with someone
## 1487                                                    You own the land                                                           with someone
## 1488                                                                                                                You personally own the land
## 1489                                                    You own the land                                                           with someone
## 1490                                                                                                                You personally own the land
## 1491                                                                                                                You personally own the land
## 1492                                                    You own the land                                                           with someone
## 1493                                                    You own the land                                                           with someone
## 1494                                                                                                                You personally own the land
## 1495                                                    You own the land                                                           with someone
## 1496                                                                                                                You personally own the land
## 1497                                                    You own the land                                                           with someone
## 1498                                                    You own the land                                                           with someone
## 1499                                                    You own the land                                                           with someone
## 1500                                                                                                                You personally own the land
## 1501                                                    You own the land                                                           with someone
## 1502                                                    You own the land                                                           with someone
## 1503                                                                                                                You personally own the land
## 1504                                                                                                                You personally own the land
## 1505                                                                                                                You personally own the land
## 1506                                                                                                                You personally own the land
## 1507                                                    You own the land                                                           with someone
## 1508                                                                                                                You personally own the land
## 1509                                                                                                                You personally own the land
## 1510                                                    You own the land                                                           with someone
## 1511                                                    You own the land                                                           with someone
## 1512                                                                                                                You personally own the land
## 1513                                                    You own the land                                                           with someone
## 1514                                                                                                                You personally own the land
## 1515                                                                                                                You personally own the land
## 1516                                                    You own the land                                                           with someone
## 1517                                                                                                                You personally own the land
## 1518                                                    You own the land                                                           with someone
## 1519                                                                                                                You personally own the land
## 1520                                                                                                                You personally own the land
## 1521                                                                                                                You personally own the land
## 1522                                                                                                                You personally own the land
## 1523                                                    You own the land                                                           with someone
## 1524                                                                                                                You personally own the land
## 1525                                                    You own the land                                                           with someone
## 1526                                                                                                                You personally own the land
## 1527                                                                                                                You personally own the land
## 1528                                                                                                                You personally own the land
## 1529                                                    You own the land                                                           with someone
## 1530                                                    You own the land                                                           with someone
## 1531                                                    You own the land                                                           with someone
## 1532                                                    You own the land                                                           with someone
## 1533                                                    You own the land                                                           with someone
## 1534                                                    You own the land                                                           with someone
## 1535                                                    You own the land                                                           with someone
## 1536                                                                                                                You personally own the land
## 1537                                                    You own the land                                                           with someone
## 1538                                                    You own the land                                                           with someone
## 1539                                                                                                                You personally own the land
## 1540                                                    You own the land                                                           with someone
## 1541                                                                                                                You personally own the land
## 1542                                                    You own the land                                                           with someone
## 1543                                                    You own the land                                                           with someone
## 1544                                                                                                                You personally own the land
## 1545                                                    You own the land                                                           with someone
## 1546                                                                                                                You personally own the land
## 1547                                                                                                                You personally own the land
## 1548                                                    You own the land                                                           with someone
## 1549                                                    You own the land                                                           with someone
## 1550                                                    You own the land                                                           with someone
## 1551                                                                                                                You personally own the land
## 1552                                                    You own the land                                                           with someone
## 1553                                                    You own the land                                                           with someone
## 1554                                                    You own the land                                                           with someone
## 1555                                                    You own the land                                                           with someone
## 1556                                                                                                                You personally own the land
## 1557                                                    You own the land                                                           with someone
## 1558                                                    You own the land                                                           with someone
## 1559                                                                                                                You personally own the land
## 1560                                                                                                                You personally own the land
## 1561                                                    You own the land                                                           with someone
## 1562                                                                                                                You personally own the land
## 1563                                                    You own the land                                                           with someone
## 1564                                                    You own the land                                                           with someone
## 1565                                                                                                                You personally own the land
## 1566                                                                                                                You personally own the land
## 1567                                                    You own the land                                                           with someone
## 1568                                                                                                                You personally own the land
## 1569                                                                                                                You personally own the land
## 1570                                                    You own the land                                                           with someone
## 1571                                                    You own the land                                                           with someone
## 1572                                                                                                                You personally own the land
## 1573                                                                                                                You personally own the land
## 1574                                                    You own the land                                                           with someone
## 1575                                                    You own the land                                                           with someone
## 1576                                                                                                                You personally own the land
## 1577                                                                                                                You personally own the land
## 1578                                                                                                                You personally own the land
## 1579                                                    You own the land                                                           with someone
## 1580                                                                                                                You personally own the land
## 1581                                                                                                                You personally own the land
## 1582                                                                                                                You personally own the land
## 1583                                                    You own the land                                                           with someone
## 1584                                                                                                                You personally own the land
## 1585                                                    You own the land                                                           with someone
## 1586                                                    You own the land                                                           with someone
## 1587                                                    You own the land                                                           with someone
## 1588                                                                                                                You personally own the land
## 1589                                                                                                                You personally own the land
## 1590                                                                                                                You personally own the land
## 1591                                                                                                                You personally own the land
## 1592                                                    You own the land                                                           with someone
## 1593                                                    You own the land                                                           with someone
## 1594                                                                                                                You personally own the land
## 1595                                                                                                                You personally own the land
## 1596                                                    You own the land                                                           with someone
## 1597                                                                                                                You personally own the land
## 1598                                                    You own the land                                                           with someone
## 1599                                                    You own the land                                                           with someone
## 1600                                                    You own the land                                                           with someone
## 1601                                                    You own the land                                                           with someone
## 1602                                                                                                                You personally own the land
## 1603                                                    You own the land                                                           with someone
## 1604                                                    You own the land                                                           with someone
## 1605                                                    You own the land                                                           with someone
## 1606                                                                                                                You personally own the land
## 1607                                                    You own the land                                                           with someone
## 1608                                                                                                                You personally own the land
## 1609                                                    You own the land                                                           with someone
## 1610                                                    You own the land                                                           with someone
## 1611                                                    You own the land                                                           with someone
## 1612                                                    You own the land                                                           with someone
## 1613                                                    You own the land                                                           with someone
## 1614                                                    You own the land                                                           with someone
## 1615                                                                                                                You personally own the land
## 1616                                                    You own the land                                                           with someone
## 1617                                                    You own the land                                                           with someone
## 1618                                                    You own the land                                                           with someone
## 1619                                                    You own the land                                                           with someone
## 1620                                                                                                                You personally own the land
## 1621                                                    You own the land                                                           with someone
## 1622                                                                                                                You personally own the land
## 1623                                                                                                                You personally own the land
## 1624                                                    You own the land                                                           with someone
## 1625                                                                                                                You personally own the land
## 1626                                                                                                                You personally own the land
## 1627                                                                                                                You personally own the land
## 1628                                                                                                                You personally own the land
## 1629                                                                                                                You personally own the land
## 1630                                                    You own the land                                                           with someone
## 1631                                                    You own the land                                                           with someone
## 1632                                                    You own the land                                                           with someone
## 1633                                                                                                                You personally own the land
## 1634                                                    You own the land                                                           with someone
## 1635                                                                                                                You personally own the land
## 1636                                                                                                                You personally own the land
## 1637                                                    You own the land                                                           with someone
## 1638                                                                                                                You personally own the land
## 1639                                                    You own the land                                                           with someone
## 1640                                                                                                                You personally own the land
## 1641                                                                                                                You personally own the land
## 1642                                                    You own the land                                                           with someone
## 1643                                                    You own the land                                                           with someone
## 1644                                                    You own the land                                                           with someone
## 1645                                                    You own the land                                                           with someone
## 1646                                                    You own the land                                                           with someone
## 1647                                                    You own the land                                                           with someone
## 1648                                                    You own the land                                                           with someone
## 1649                                                    You own the land                                                           with someone
## 1650                                                                                                                You personally own the land
## 1651                                                                                                                You personally own the land
## 1652                                                    You own the land                                                           with someone
## 1653                                                    You own the land                                                           with someone
## 1654                                                    You own the land                                                           with someone
## 1655                                                    You own the land                                                           with someone
## 1656                                                                                                                You personally own the land
## 1657                                                    You own the land                                                           with someone
## 1658                                                    You own the land                                                           with someone
## 1659                                                    You own the land                                                           with someone
## 1660                                                    You own the land                                                           with someone
## 1661                                                    You own the land                                                           with someone
## 1662                                                    You own the land                                                           with someone
## 1663                                                    You own the land                                                           with someone
## 1664                                                    You own the land                                                           with someone
## 1665                                                    You own the land                                                           with someone
## 1666                                                    You own the land                                                           with someone
## 1667                                                                                                                You personally own the land
## 1668                                                    You own the land                                                           with someone
## 1669                                                    You own the land                                                           with someone
## 1670                                                                                                                You personally own the land
## 1671                                                    You own the land                                                           with someone
## 1672                                                    You own the land                                                           with someone
## 1673                                                    You own the land                                                           with someone
## 1674                                                    You own the land                                                           with someone
## 1675                                                                                                                You personally own the land
## 1676                                                                                                                You personally own the land
## 1677                                                    You own the land                                                           with someone
## 1678                                                    You own the land                                                           with someone
## 1679                                                    You own the land                                                           with someone
## 1680                                                                                                                You personally own the land
## 1681                                                    You own the land                                                           with someone
## 1682                                                                                                                You personally own the land
## 1683                                                                                                                You personally own the land
## 1684                                                                                                                You personally own the land
## 1685                                                                                                                You personally own the land
## 1686                                                                                                                You personally own the land
## 1687                                                    You own the land                                                           with someone
## 1688                                                    You own the land                                                           with someone
## 1689                                                                                                                You personally own the land
## 1690                                                                                                                You personally own the land
## 1691                                                    You own the land                                                           with someone
## 1692                                                                                                                You personally own the land
## 1693                                                    You own the land                                                           with someone
## 1694                                                    You own the land                                                           with someone
## 1695                                                                                                                You personally own the land
## 1696                                                    You own the land                                                           with someone
## 1697                                                    You own the land                                                           with someone
## 1698                                                                                                                You personally own the land
## 1699                                                                                                                You personally own the land
## 1700                                                    You own the land                                                           with someone
## 1701                                                    You own the land                                                           with someone
## 1702                                                                                                                You personally own the land
## 1703                                                                                                                You personally own the land
## 1704                                                    You own the land                                                           with someone
## 1705                                                    You own the land                                                           with someone
## 1706                                                    You own the land                                                           with someone
## 1707                                                    You own the land                                                           with someone
## 1708                                                                                                                You personally own the land
## 1709                                                                                                                You personally own the land
## 1710                                                    You own the land                                                           with someone
## 1711                                                                                                                You personally own the land
## 1712                                                    You own the land                                                           with someone
## 1713                                                                                                                You personally own the land
## 1714                                                    You own the land                                                           with someone
## 1715                                                    You own the land                                                           with someone
## 1716                                                                                                                You personally own the land
## 1717                                                                                                                You personally own the land
## 1718                                                    You own the land                                                           with someone
## 1719                                                                                                                You personally own the land
## 1720                                                                                                                You personally own the land
## 1721                                                    You own the land                                                           with someone
## 1722                                                                                                                You personally own the land
## 1723                                                    You own the land                                                           with someone
## 1724                                                                                                                You personally own the land
## 1725                                                                                                                You personally own the land
## 1726                                                                                                                You personally own the land
## 1727                                                                                                                You personally own the land
## 1728                                                    You own the land                                                           with someone
## 1729                                                                                                                You personally own the land
## 1730                                                    You own the land                                                           with someone
## 1731                                                                                                                You personally own the land
## 1732                                                                                                                You personally own the land
## 1733                                                    You own the land                                                           with someone
## 1734                                                                                                                You personally own the land
## 1735                                                    You own the land                                                           with someone
## 1736                                                    You own the land                                                           with someone
## 1737                                                    You own the land                                                           with someone
## 1738                                                    You own the land                                                           with someone
## 1739                                                    You own the land                                                           with someone
## 1740                                                    You own the land                                                           with someone
## 1741                                                    You own the land                                                           with someone
## 1742                                                                                                                You personally own the land
## 1743                                                    You own the land                                                           with someone
## 1744                                                    You own the land                                                           with someone
## 1745                                                                                                                You personally own the land
## 1746                                                    You own the land                                                           with someone
## 1747                                                                                                                You personally own the land
## 1748                                                    You own the land                                                           with someone
## 1749                                                    You own the land                                                           with someone
## 1750                                                    You own the land                                                           with someone
## 1751                                                                                                                You personally own the land
## 1752                                                    You own the land                                                           with someone
## 1753                                                    You own the land                                                           with someone
## 1754                                                                                                                You personally own the land
## 1755                                                    You own the land                                                           with someone
## 1756                                                    You own the land                                                           with someone
## 1757                                                    You own the land                                                           with someone
## 1758                                                                                                                You personally own the land
## 1759                                                    You own the land                                                           with someone
## 1760                                                    You own the land                                                           with someone
## 1761                                                    You own the land                                                           with someone
## 1762                                                    You own the land                                                           with someone
## 1763                                                    You own the land                                                           with someone
## 1764                                                                                                                You personally own the land
## 1765                                                    You own the land                                                           with someone
## 1766                                                    You own the land                                                           with someone
## 1767                                                                                                                You personally own the land
## 1768                                                    You own the land                                                           with someone
## 1769                                                    You own the land                                                           with someone
## 1770                                                    You own the land                                                           with someone
## 1771                                                    You own the land                                                           with someone
## 1772                                                                                                                You personally own the land
## 1773                                                                                                                You personally own the land
## 1774                                                    You own the land                                                           with someone
## 1775                                                    You own the land                                                           with someone
## 1776                                                                                                                You personally own the land
## 1777                                                                                                                You personally own the land
## 1778                                                    You own the land                                                           with someone
## 1779                                                    You own the land                                                           with someone
## 1780                                                                                                                You personally own the land
## 1781                                                    You own the land                                                           with someone
## 1782                                                                                                                You personally own the land
## 1783                                                    You own the land                                                           with someone
## 1784                                                    You own the land                                                           with someone
## 1785                                                                                                                You personally own the land
## 1786                                                                                                                You personally own the land
## 1787                                                    You own the land                                                           with someone
## 1788                                                    You own the land                                                           with someone
## 1789                                                    You own the land                                                           with someone
## 1790                                                                                                                You personally own the land
## 1791                                                                                                                You personally own the land
## 1792                                                    You own the land                                                           with someone
## 1793                                                                                                                You personally own the land
## 1794                                                                                                                You personally own the land
## 1795                                                    You own the land                                                           with someone
## 1796                                                    You own the land                                                           with someone
## 1797                                                    You own the land                                                           with someone
## 1798                                                    You own the land                                                           with someone
## 1799                                                                                                                You personally own the land
## 1800                                                                                                                You personally own the land
## 1801                                                                                                                You personally own the land
## 1802                                                                                                                You personally own the land
## 1803                                                    You own the land                                                           with someone
## 1804                                                    You own the land                                                           with someone
## 1805                                                                                                                You personally own the land
## 1806                                                    You own the land                                                           with someone
## 1807                                                    You own the land                                                           with someone
## 1808                                                    You own the land                                                           with someone
## 1809                                                                                                                You personally own the land
## 1810                                                    You own the land                                                           with someone
## 1811                                                    You own the land                                                           with someone
## 1812                                                    You own the land                                                           with someone
## 1813                                                                                                                You personally own the land
## 1814                                                                                                                You personally own the land
## 1815                                                                                                                You personally own the land
## 1816                                                                                                                You personally own the land
## 1817                                                                                                                You personally own the land
## 1818                                                                                                                You personally own the land
## 1819                                                                                                                You personally own the land
## 1820                                                    You own the land                                                           with someone
## 1821                                                    You own the land                                                           with someone
## 1822                                                                                                                You personally own the land
## 1823                                                    You own the land                                                           with someone
## 1824                                                    You own the land                                                           with someone
## 1825                                                                                                                You personally own the land
## 1826                                                    You own the land                                                           with someone
## 1827                                                    You own the land                                                           with someone
## 1828                                                    You own the land                                                           with someone
## 1829                                                                                                                You personally own the land
## 1830                                                                                                                You personally own the land
## 1831                                                    You own the land                                                           with someone
## 1832                                                                                                                You personally own the land
## 1833                                                    You own the land                                                           with someone
## 1834                                                    You own the land                                                           with someone
## 1835                                                                                                                You personally own the land
## 1836                                                                                                                You personally own the land
## 1837                                                                                                                You personally own the land
## 1838                                                                                                                You personally own the land
## 1839                                                    You own the land                                                           with someone
## 1840                                                                                                                You personally own the land
## 1841                                                    You own the land                                                           with someone
## 1842                                                    You own the land                                                           with someone
## 1843                                                    You own the land                                                           with someone
## 1844                                                                                                                You personally own the land
## 1845                                                    You own the land                                                           with someone
## 1846                                                    You own the land                                                           with someone
## 1847                                                    You own the land                                                           with someone
## 1848                                                    You own the land                                                           with someone
## 1849                                                                                                                You personally own the land
## 1850                                                    You own the land                                                           with someone
## 1851                                                                                                                You personally own the land
## 1852                                                    You own the land                                                           with someone
## 1853                                                                                                                You personally own the land
## 1854                                                                                                                You personally own the land
## 1855                                                    You own the land                                                           with someone
## 1856                                                    You own the land                                                           with someone
## 1857                                                                                                                You personally own the land
## 1858                                                                                                                You personally own the land
## 1859                                                    You own the land                                                           with someone
## 1860                                                    You own the land                                                           with someone
## 1861                                                    You own the land                                                           with someone
## 1862                                                                                                                You personally own the land
## 1863                                                    You own the land                                                           with someone
## 1864                                                                                                                You personally own the land
## 1865                                                    You own the land                                                           with someone
## 1866                                                                                                                You personally own the land
## 1867                                                                                                                You personally own the land
## 1868                                                    You own the land                                                           with someone
## 1869                                                                                                                You personally own the land
## 1870                                                                                                                You personally own the land
## 1871                                                    You own the land                                                           with someone
## 1872                                                    You own the land                                                           with someone
## 1873                                                                                                                You personally own the land
## 1874                                                                                                                You personally own the land
## 1875                                                    You own the land                                                           with someone
## 1876                                                    You own the land                                                           with someone
## 1877                                                    You own the land                                                           with someone
## 1878                                                    You own the land                                                           with someone
## 1879                                                                                                                You personally own the land
## 1880                                                                                                                You personally own the land
## 1881                                                                                                                You personally own the land
## 1882                                                                                                                You personally own the land
## 1883                                                                                                                You personally own the land
## 1884                                                    You own the land                                                           with someone
## 1885                                                                                                                You personally own the land
## 1886                                                    You own the land                                                           with someone
## 1887                                                    You own the land                                                           with someone
## 1888                                                                                                                You personally own the land
## 1889                                                    You own the land                                                           with someone
## 1890                                                                                                                You personally own the land
## 1891                                                                                                                You personally own the land
## 1892                                                    You own the land                                                           with someone
## 1893                                                    You own the land                                                           with someone
## 1894                                                                                                                You personally own the land
## 1895                                                                                                                You personally own the land
## 1896                                                                                                                You personally own the land
## 1897                                                    You own the land                                                           with someone
## 1898                                                    You own the land                                                           with someone
## 1899                                                                                                                You personally own the land
## 1900                                                    You own the land                                                           with someone
## 1901                                                    You own the land                                                           with someone
## 1902                                                                                                                You personally own the land
## 1903                                                    You own the land                                                           with someone
## 1904                                                                                                                You personally own the land
## 1905                                                                                                                You personally own the land
## 1906                                                                                                                You personally own the land
## 1907                                                    You own the land                                                           with someone
## 1908                                                    You own the land                                                           with someone
## 1909                                                                                                                You personally own the land
## 1910                                                    You own the land                                                           with someone
## 1911                                                                                                                You personally own the land
## 1912                                                                                                                You personally own the land
## 1913                                                    You own the land                                                           with someone
## 1914                                                    You own the land                                                           with someone
## 1915                                                                                                                You personally own the land
## 1916                                                    You own the land                                                           with someone
## 1917                                                    You own the land                                                           with someone
## 1918                                                                                                                You personally own the land
## 1919                                                    You own the land                                                           with someone
## 1920                                                    You own the land                                                           with someone
## 1921                                                    You own the land                                                           with someone
## 1922                                                    You own the land                                                           with someone
## 1923                                                    You own the land                                                           with someone
## 1924                                                                                                                You personally own the land
## 1925                                                    You own the land                                                           with someone
## 1926                                                    You own the land                                                           with someone
## 1927                                                                                                                You personally own the land
## 1928                                                                                                                You personally own the land
## 1929                                                                                                                You personally own the land
## 1930                                                    You own the land                                                           with someone
## 1931                                                    You own the land                                                           with someone
## 1932                                                    You own the land                                                           with someone
## 1933                                                    You own the land                                                           with someone
## 1934                                                    You own the land                                                           with someone
## 1935                                                                                                                You personally own the land
## 1936                                                    You own the land                                                           with someone
## 1937                                                    You own the land                                                           with someone
## 1938                                                    You own the land                                                           with someone
## 1939                                                                                                                You personally own the land
## 1940                                                                                                                You personally own the land
## 1941                                                    You own the land                                                           with someone
## 1942                                                                                                                You personally own the land
## 1943                                                                                                                You personally own the land
## 1944                                                    You own the land                                                           with someone
## 1945                                                                                                                You personally own the land
## 1946                                                    You own the land                                                           with someone
## 1947                                                                                                                You personally own the land
## 1948                                                    You own the land                                                           with someone
## 1949                                                    You own the land                                                           with someone
## 1950                                                    You own the land                                                           with someone
## 1951                                                    You own the land                                                           with someone
## 1952                                                    You own the land                                                           with someone
## 1953                                                    You own the land                                                           with someone
## 1954                                                    You own the land                                                           with someone
## 1955                                                                                                                You personally own the land
## 1956                                                                                                                You personally own the land
## 1957                                                    You own the land                                                           with someone
## 1958                                                    You own the land                                                           with someone
## 1959                                                    You own the land                                                           with someone
## 1960                                                                                                                You personally own the land
## 1961                                                    You own the land                                                           with someone
## 1962                                                    You own the land                                                           with someone
## 1963                                                                                                                You personally own the land
## 1964                                                    You own the land                                                           with someone
## 1965                                                                                                                You personally own the land
## 1966                                                    You own the land                                                           with someone
## 1967                                                    You own the land                                                           with someone
## 1968                                                                                                                You personally own the land
## 1969                                                                                                                You personally own the land
## 1970                                                                                                                You personally own the land
## 1971                                                    You own the land                                                           with someone
## 1972                                                    You own the land                                                           with someone
## 1973                                                    You own the land                                                           with someone
## 1974                                                                                                                You personally own the land
## 1975                                                    You own the land                                                           with someone
## 1976                                                    You own the land                                                           with someone
## 1977                                                                                                                You personally own the land
## 1978                                                    You own the land                                                           with someone
## 1979                                                                                                                You personally own the land
## 1980                                                    You own the land                                                           with someone
## 1981                                                    You own the land                                                           with someone
## 1982                                                                                                                You personally own the land
## 1983                                                                                                                You personally own the land
## 1984                                                                                                                You personally own the land
## 1985                                                    You own the land                                                           with someone
## 1986                                                    You own the land                                                           with someone
## 1987                                                    You own the land                                                           with someone
## 1988                                                                                                                You personally own the land
## 1989                                                                                                                You personally own the land
## 1990                                                                                                                You personally own the land
## 1991                                                    You own the land                                                           with someone
## 1992                                                    You own the land                                                           with someone
## 1993                                                                                                                You personally own the land
## 1994                                                    You own the land                                                           with someone
## 1995                                                    You own the land                                                           with someone
## 1996                                                    You own the land                                                           with someone
## 1997                                                                                                                You personally own the land
## 1998                                                    You own the land                                                           with someone
## 1999                                                                                                                You personally own the land
## 2000                                                    You own the land                                                           with someone
## 2001                                                    You own the land                                                           with someone
## 2002                                                                                                                You personally own the land
## 2003                                                                                                                You personally own the land
## 2004                                                    You own the land                                                           with someone
## 2005                                                                                                                You personally own the land
## 2006                                                    You own the land                                                           with someone
## 2007                                                                                                                You personally own the land
## 2008                                                                                                                You personally own the land
## 2009                                                    You own the land                                                           with someone
## 2010                                                                                                                You personally own the land
## 2011                                                    You own the land                                                           with someone
## 2012                                                    You own the land                                                           with someone
## 2013                                                    You own the land                                                           with someone
## 2014                                                    You own the land                                                           with someone
## 2015                                                                                                                You personally own the land
## 2016                                                    You own the land                                                           with someone
## 2017                                                                                                                You personally own the land
## 2018                                                                                                                You personally own the land
## 2019                                                    You own the land                                                           with someone
## 2020                                                                                                                You personally own the land
## 2021                                                                                                                You personally own the land
## 2022                                                                                                                You personally own the land
## 2023                                                    You own the land                                                           with someone
## 2024                                                    You own the land                                                           with someone
## 2025                                                                                                                You personally own the land
## 2026                                                                                                                You personally own the land
## 2027                                                                                                                You personally own the land
## 2028                                                    You own the land                                                           with someone
## 2029                                                    You own the land                                                           with someone
## 2030                                                    You own the land                                                           with someone
## 2031                                                                                                                You personally own the land
## 2032                                                    You own the land                                                           with someone
## 2033                                                                                                                You personally own the land
## 2034                                                                                                                You personally own the land
## 2035                                                    You own the land                                                           with someone
## 2036                                                                                                                You personally own the land
## 2037                                                    You own the land                                                           with someone
## 2038                                                    You own the land                                                           with someone
## 2039                                                                                                                You personally own the land
## 2040                                                    You own the land                                                           with someone
## 2041                                                    You own the land                                                           with someone
## 2042                                                    You own the land                                                           with someone
## 2043                                                                                                                You personally own the land
## 2044                                                                                                                You personally own the land
## 2045                                                    You own the land                                                           with someone
## 2046                                                                                                                You personally own the land
## 2047                                                    You own the land                                                           with someone
## 2048                                                    You own the land                                                           with someone
## 2049                                                                                                                You personally own the land
## 2050                                                                                                                You personally own the land
## 2051                                                                                                                You personally own the land
## 2052                                                    You own the land                                                           with someone
## 2053                                                                                                                You personally own the land
## 2054                                                    You own the land                                                           with someone
## 2055                                                    You own the land                                                           with someone
## 2056                                                    You own the land                                                           with someone
## 2057                                                    You own the land                                                           with someone
## 2058                                                    You own the land                                                           with someone
## 2059                                                                                                                You personally own the land
## 2060                                                                                                                You personally own the land
## 2061                                                    You own the land                                                           with someone
## 2062                                                                                                                You personally own the land
## 2063                                                                                                                You personally own the land
## 2064                                                    You own the land                                                           with someone
## 2065                                                    You own the land                                                           with someone
## 2066                                                    You own the land                                                           with someone
## 2067                                                    You own the land                                                           with someone
## 2068                                                    You own the land                                                           with someone
## 2069                                                                                                                You personally own the land
## 2070                                                    You own the land                                                           with someone
## 2071                                                    You own the land                                                           with someone
## 2072                                                                                                                You personally own the land
## 2073                                                    You own the land                                                           with someone
## 2074                                                                                                                You personally own the land
## 2075                                                    You own the land                                                           with someone
## 2076                                                                                                                You personally own the land
## 2077                                                    You own the land                                                           with someone
## 2078                                                                                                                You personally own the land
## 2079                                                                                                                You personally own the land
## 2080                                                    You own the land                                                           with someone
## 2081                                                                                                                You personally own the land
## 2082                                                    You own the land                                                           with someone
## 2083                                                    You own the land                                                           with someone
## 2084                                                    You own the land                                                           with someone
## 2085                                                                                                                You personally own the land
## 2086                                                                                                                You personally own the land
## 2087                                                    You own the land                                                           with someone
## 2088                                                    You own the land                                                           with someone
## 2089                                                    You own the land                                                           with someone
## 2090                                                                                                                You personally own the land
## 2091                                                    You own the land                                                           with someone
## 2092                                                    You own the land                                                           with someone
## 2093                                                    You own the land                                                           with someone
## 2094                                                                                                                You personally own the land
## 2095                                                    You own the land                                                           with someone
## 2096                                                                                                                You personally own the land
## 2097                                                                                                                You personally own the land
## 2098                                                                                                                You personally own the land
## 2099                                                    You own the land                                                           with someone
## 2100                                                                                                                You personally own the land
## 2101                                                                                                                You personally own the land
## 2102                                                    You own the land                                                           with someone
## 2103                                                                                                                You personally own the land
## 2104                                                    You own the land                                                           with someone
## 2105                                                    You own the land                                                           with someone
## 2106                                                    You own the land                                                           with someone
## 2107                                                                                                                You personally own the land
## 2108                                                                                                                You personally own the land
## 2109                                                                                                                You personally own the land
## 2110                                                                                                                You personally own the land
## 2111                                                                                                                You personally own the land
## 2112                                                                                                                You personally own the land
## 2113                                                                                                                You personally own the land
## 2114                                                    You own the land                                                           with someone
## 2115                                                                                                                You personally own the land
## 2116                                                                                                                You personally own the land
## 2117                                                    You own the land                                                           with someone
## 2118                                                    You own the land                                                           with someone
## 2119                                                                                                                You personally own the land
## 2120                                                    You own the land                                                           with someone
## 2121                                                                                                                You personally own the land
## 2122                                                                                                                You personally own the land
## 2123                                                    You own the land                                                           with someone
## 2124                                                                                                                You personally own the land
## 2125                                                                                                                You personally own the land
## 2126                                                    You own the land                                                           with someone
## 2127                                                                                                                You personally own the land
##      if_else(Q5 == 3, "A household member owns the land", "The land is rented")
## 1                                                            The land is rented
## 2                                                            The land is rented
## 3                                              A household member owns the land
## 4                                                            The land is rented
## 5                                                            The land is rented
## 6                                              A household member owns the land
## 7                                                            The land is rented
## 8                                                            The land is rented
## 9                                              A household member owns the land
## 10                                             A household member owns the land
## 11                                                           The land is rented
## 12                                                           The land is rented
## 13                                             A household member owns the land
## 14                                                           The land is rented
## 15                                                           The land is rented
## 16                                                           The land is rented
## 17                                             A household member owns the land
## 18                                                           The land is rented
## 19                                                           The land is rented
## 20                                                           The land is rented
## 21                                                           The land is rented
## 22                                             A household member owns the land
## 23                                             A household member owns the land
## 24                                                           The land is rented
## 25                                             A household member owns the land
## 26                                                           The land is rented
## 27                                                           The land is rented
## 28                                                           The land is rented
## 29                                                           The land is rented
## 30                                                           The land is rented
## 31                                                           The land is rented
## 32                                                           The land is rented
## 33                                                           The land is rented
## 34                                                           The land is rented
## 35                                             A household member owns the land
## 36                                             A household member owns the land
## 37                                                           The land is rented
## 38                                             A household member owns the land
## 39                                                           The land is rented
## 40                                                           The land is rented
## 41                                                           The land is rented
## 42                                             A household member owns the land
## 43                                                           The land is rented
## 44                                                           The land is rented
## 45                                                           The land is rented
## 46                                             A household member owns the land
## 47                                                           The land is rented
## 48                                                           The land is rented
## 49                                                           The land is rented
## 50                                                           The land is rented
## 51                                                           The land is rented
## 52                                                           The land is rented
## 53                                                           The land is rented
## 54                                             A household member owns the land
## 55                                             A household member owns the land
## 56                                                           The land is rented
## 57                                             A household member owns the land
## 58                                                           The land is rented
## 59                                                           The land is rented
## 60                                                           The land is rented
## 61                                                           The land is rented
## 62                                                           The land is rented
## 63                                             A household member owns the land
## 64                                             A household member owns the land
## 65                                             A household member owns the land
## 66                                                           The land is rented
## 67                                                           The land is rented
## 68                                                           The land is rented
## 69                                             A household member owns the land
## 70                                                           The land is rented
## 71                                                           The land is rented
## 72                                                           The land is rented
## 73                                                           The land is rented
## 74                                                           The land is rented
## 75                                                           The land is rented
## 76                                                           The land is rented
## 77                                             A household member owns the land
## 78                                             A household member owns the land
## 79                                                           The land is rented
## 80                                                           The land is rented
## 81                                             A household member owns the land
## 82                                             A household member owns the land
## 83                                                           The land is rented
## 84                                                           The land is rented
## 85                                             A household member owns the land
## 86                                                           The land is rented
## 87                                                           The land is rented
## 88                                                           The land is rented
## 89                                                           The land is rented
## 90                                                           The land is rented
## 91                                                           The land is rented
## 92                                                           The land is rented
## 93                                                           The land is rented
## 94                                                           The land is rented
## 95                                                           The land is rented
## 96                                                           The land is rented
## 97                                             A household member owns the land
## 98                                                           The land is rented
## 99                                                           The land is rented
## 100                                            A household member owns the land
## 101                                                          The land is rented
## 102                                                          The land is rented
## 103                                                          The land is rented
## 104                                                          The land is rented
## 105                                                          The land is rented
## 106                                                          The land is rented
## 107                                                          The land is rented
## 108                                                          The land is rented
## 109                                                          The land is rented
## 110                                            A household member owns the land
## 111                                                          The land is rented
## 112                                                          The land is rented
## 113                                                          The land is rented
## 114                                                          The land is rented
## 115                                                          The land is rented
## 116                                                          The land is rented
## 117                                            A household member owns the land
## 118                                                          The land is rented
## 119                                                          The land is rented
## 120                                            A household member owns the land
## 121                                                          The land is rented
## 122                                            A household member owns the land
## 123                                                          The land is rented
## 124                                                          The land is rented
## 125                                                          The land is rented
## 126                                            A household member owns the land
## 127                                            A household member owns the land
## 128                                                          The land is rented
## 129                                                          The land is rented
## 130                                                          The land is rented
## 131                                                          The land is rented
## 132                                                          The land is rented
## 133                                                          The land is rented
## 134                                                          The land is rented
## 135                                            A household member owns the land
## 136                                                          The land is rented
## 137                                            A household member owns the land
## 138                                                          The land is rented
## 139                                                          The land is rented
## 140                                                          The land is rented
## 141                                            A household member owns the land
## 142                                                          The land is rented
## 143                                                          The land is rented
## 144                                                          The land is rented
## 145                                                          The land is rented
## 146                                                          The land is rented
## 147                                            A household member owns the land
## 148                                                          The land is rented
## 149                                                          The land is rented
## 150                                                          The land is rented
## 151                                            A household member owns the land
## 152                                                          The land is rented
## 153                                            A household member owns the land
## 154                                                          The land is rented
## 155                                                          The land is rented
## 156                                                          The land is rented
## 157                                                          The land is rented
## 158                                                          The land is rented
## 159                                                          The land is rented
## 160                                            A household member owns the land
## 161                                                          The land is rented
## 162                                                          The land is rented
## 163                                                          The land is rented
## 164                                                          The land is rented
## 165                                            A household member owns the land
## 166                                                          The land is rented
## 167                                                          The land is rented
## 168                                                          The land is rented
## 169                                            A household member owns the land
## 170                                            A household member owns the land
## 171                                            A household member owns the land
## 172                                            A household member owns the land
## 173                                                          The land is rented
## 174                                                          The land is rented
## 175                                                          The land is rented
## 176                                                          The land is rented
## 177                                                          The land is rented
## 178                                                          The land is rented
## 179                                                          The land is rented
## 180                                                          The land is rented
## 181                                                          The land is rented
## 182                                                          The land is rented
## 183                                            A household member owns the land
## 184                                                          The land is rented
## 185                                                          The land is rented
## 186                                            A household member owns the land
## 187                                                          The land is rented
## 188                                                          The land is rented
## 189                                                          The land is rented
## 190                                                          The land is rented
## 191                                                          The land is rented
## 192                                                          The land is rented
## 193                                                          The land is rented
## 194                                                          The land is rented
## 195                                            A household member owns the land
## 196                                            A household member owns the land
## 197                                                          The land is rented
## 198                                                          The land is rented
## 199                                                          The land is rented
## 200                                                          The land is rented
## 201                                            A household member owns the land
## 202                                                          The land is rented
## 203                                                          The land is rented
## 204                                                          The land is rented
## 205                                                          The land is rented
## 206                                            A household member owns the land
## 207                                                          The land is rented
## 208                                            A household member owns the land
## 209                                                          The land is rented
## 210                                                          The land is rented
## 211                                                          The land is rented
## 212                                                          The land is rented
## 213                                                          The land is rented
## 214                                                          The land is rented
## 215                                            A household member owns the land
## 216                                            A household member owns the land
## 217                                                          The land is rented
## 218                                                          The land is rented
## 219                                                          The land is rented
## 220                                                          The land is rented
## 221                                                          The land is rented
## 222                                                          The land is rented
## 223                                            A household member owns the land
## 224                                                          The land is rented
## 225                                                          The land is rented
## 226                                                          The land is rented
## 227                                                          The land is rented
## 228                                                          The land is rented
## 229                                            A household member owns the land
## 230                                                          The land is rented
## 231                                                          The land is rented
## 232                                            A household member owns the land
## 233                                                          The land is rented
## 234                                                          The land is rented
## 235                                            A household member owns the land
## 236                                                          The land is rented
## 237                                                          The land is rented
## 238                                            A household member owns the land
## 239                                                          The land is rented
## 240                                            A household member owns the land
## 241                                                          The land is rented
## 242                                            A household member owns the land
## 243                                                          The land is rented
## 244                                                          The land is rented
## 245                                            A household member owns the land
## 246                                                          The land is rented
## 247                                                          The land is rented
## 248                                                          The land is rented
## 249                                                          The land is rented
## 250                                                          The land is rented
## 251                                                          The land is rented
## 252                                                          The land is rented
## 253                                            A household member owns the land
## 254                                                          The land is rented
## 255                                            A household member owns the land
## 256                                            A household member owns the land
## 257                                                          The land is rented
## 258                                                          The land is rented
## 259                                                          The land is rented
## 260                                            A household member owns the land
## 261                                                          The land is rented
## 262                                            A household member owns the land
## 263                                                          The land is rented
## 264                                            A household member owns the land
## 265                                                          The land is rented
## 266                                            A household member owns the land
## 267                                                          The land is rented
## 268                                            A household member owns the land
## 269                                            A household member owns the land
## 270                                                          The land is rented
## 271                                                          The land is rented
## 272                                                          The land is rented
## 273                                                          The land is rented
## 274                                                          The land is rented
## 275                                            A household member owns the land
## 276                                                          The land is rented
## 277                                                          The land is rented
## 278                                                          The land is rented
## 279                                                          The land is rented
## 280                                                          The land is rented
## 281                                                          The land is rented
## 282                                            A household member owns the land
## 283                                                          The land is rented
## 284                                                          The land is rented
## 285                                                          The land is rented
## 286                                                          The land is rented
## 287                                                          The land is rented
## 288                                                          The land is rented
## 289                                                          The land is rented
## 290                                            A household member owns the land
## 291                                                          The land is rented
## 292                                                          The land is rented
## 293                                                          The land is rented
## 294                                                          The land is rented
## 295                                            A household member owns the land
## 296                                            A household member owns the land
## 297                                                          The land is rented
## 298                                                          The land is rented
## 299                                            A household member owns the land
## 300                                                          The land is rented
## 301                                                          The land is rented
## 302                                                          The land is rented
## 303                                                          The land is rented
## 304                                                          The land is rented
## 305                                            A household member owns the land
## 306                                                          The land is rented
## 307                                                          The land is rented
## 308                                            A household member owns the land
## 309                                                          The land is rented
## 310                                            A household member owns the land
## 311                                                          The land is rented
## 312                                                          The land is rented
## 313                                                          The land is rented
## 314                                                          The land is rented
## 315                                                          The land is rented
## 316                                            A household member owns the land
## 317                                                          The land is rented
## 318                                                          The land is rented
## 319                                            A household member owns the land
## 320                                                          The land is rented
## 321                                                          The land is rented
## 322                                                          The land is rented
## 323                                                          The land is rented
## 324                                                          The land is rented
## 325                                                          The land is rented
## 326                                                          The land is rented
## 327                                                          The land is rented
## 328                                                          The land is rented
## 329                                                          The land is rented
## 330                                                          The land is rented
## 331                                                          The land is rented
## 332                                                          The land is rented
## 333                                            A household member owns the land
## 334                                                          The land is rented
## 335                                                          The land is rented
## 336                                                          The land is rented
## 337                                                          The land is rented
## 338                                            A household member owns the land
## 339                                            A household member owns the land
## 340                                                          The land is rented
## 341                                            A household member owns the land
## 342                                            A household member owns the land
## 343                                                          The land is rented
## 344                                                          The land is rented
## 345                                            A household member owns the land
## 346                                            A household member owns the land
## 347                                                          The land is rented
## 348                                                          The land is rented
## 349                                                          The land is rented
## 350                                                          The land is rented
## 351                                                          The land is rented
## 352                                                          The land is rented
## 353                                                          The land is rented
## 354                                                          The land is rented
## 355                                                          The land is rented
## 356                                                          The land is rented
## 357                                                          The land is rented
## 358                                                          The land is rented
## 359                                                          The land is rented
## 360                                            A household member owns the land
## 361                                                          The land is rented
## 362                                                          The land is rented
## 363                                                          The land is rented
## 364                                                          The land is rented
## 365                                                          The land is rented
## 366                                                          The land is rented
## 367                                                          The land is rented
## 368                                                          The land is rented
## 369                                                          The land is rented
## 370                                                          The land is rented
## 371                                                          The land is rented
## 372                                                          The land is rented
## 373                                            A household member owns the land
## 374                                            A household member owns the land
## 375                                                          The land is rented
## 376                                                          The land is rented
## 377                                            A household member owns the land
## 378                                                          The land is rented
## 379                                                          The land is rented
## 380                                            A household member owns the land
## 381                                                          The land is rented
## 382                                                          The land is rented
## 383                                            A household member owns the land
## 384                                            A household member owns the land
## 385                                                          The land is rented
## 386                                                          The land is rented
## 387                                                          The land is rented
## 388                                                          The land is rented
## 389                                                          The land is rented
## 390                                            A household member owns the land
## 391                                            A household member owns the land
## 392                                                          The land is rented
## 393                                                          The land is rented
## 394                                                          The land is rented
## 395                                            A household member owns the land
## 396                                                          The land is rented
## 397                                            A household member owns the land
## 398                                                          The land is rented
## 399                                            A household member owns the land
## 400                                                          The land is rented
## 401                                                          The land is rented
## 402                                                          The land is rented
## 403                                            A household member owns the land
## 404                                            A household member owns the land
## 405                                            A household member owns the land
## 406                                                          The land is rented
## 407                                                          The land is rented
## 408                                            A household member owns the land
## 409                                                          The land is rented
## 410                                            A household member owns the land
## 411                                                          The land is rented
## 412                                                          The land is rented
## 413                                                          The land is rented
## 414                                                          The land is rented
## 415                                                          The land is rented
## 416                                            A household member owns the land
## 417                                                          The land is rented
## 418                                                          The land is rented
## 419                                                          The land is rented
## 420                                                          The land is rented
## 421                                            A household member owns the land
## 422                                                          The land is rented
## 423                                                          The land is rented
## 424                                                          The land is rented
## 425                                                          The land is rented
## 426                                                          The land is rented
## 427                                                          The land is rented
## 428                                                          The land is rented
## 429                                                          The land is rented
## 430                                                          The land is rented
## 431                                                          The land is rented
## 432                                            A household member owns the land
## 433                                            A household member owns the land
## 434                                                          The land is rented
## 435                                            A household member owns the land
## 436                                                          The land is rented
## 437                                            A household member owns the land
## 438                                                          The land is rented
## 439                                                          The land is rented
## 440                                                          The land is rented
## 441                                            A household member owns the land
## 442                                                          The land is rented
## 443                                                          The land is rented
## 444                                                          The land is rented
## 445                                                          The land is rented
## 446                                                          The land is rented
## 447                                                          The land is rented
## 448                                            A household member owns the land
## 449                                                          The land is rented
## 450                                                          The land is rented
## 451                                            A household member owns the land
## 452                                                          The land is rented
## 453                                                          The land is rented
## 454                                                          The land is rented
## 455                                            A household member owns the land
## 456                                                          The land is rented
## 457                                            A household member owns the land
## 458                                                          The land is rented
## 459                                                          The land is rented
## 460                                                          The land is rented
## 461                                                          The land is rented
## 462                                                          The land is rented
## 463                                                          The land is rented
## 464                                                          The land is rented
## 465                                                          The land is rented
## 466                                            A household member owns the land
## 467                                                          The land is rented
## 468                                                          The land is rented
## 469                                            A household member owns the land
## 470                                                          The land is rented
## 471                                                          The land is rented
## 472                                            A household member owns the land
## 473                                                          The land is rented
## 474                                                          The land is rented
## 475                                                          The land is rented
## 476                                                          The land is rented
## 477                                                          The land is rented
## 478                                                          The land is rented
## 479                                                          The land is rented
## 480                                            A household member owns the land
## 481                                                          The land is rented
## 482                                                          The land is rented
## 483                                                          The land is rented
## 484                                                          The land is rented
## 485                                                          The land is rented
## 486                                            A household member owns the land
## 487                                                          The land is rented
## 488                                                          The land is rented
## 489                                            A household member owns the land
## 490                                                          The land is rented
## 491                                                          The land is rented
## 492                                                          The land is rented
## 493                                                          The land is rented
## 494                                                          The land is rented
## 495                                                          The land is rented
## 496                                                          The land is rented
## 497                                                          The land is rented
## 498                                                          The land is rented
## 499                                                          The land is rented
## 500                                            A household member owns the land
## 501                                            A household member owns the land
## 502                                                          The land is rented
## 503                                                          The land is rented
## 504                                                          The land is rented
## 505                                                          The land is rented
## 506                                                          The land is rented
## 507                                                          The land is rented
## 508                                                          The land is rented
## 509                                            A household member owns the land
## 510                                                          The land is rented
## 511                                            A household member owns the land
## 512                                                          The land is rented
## 513                                                          The land is rented
## 514                                                          The land is rented
## 515                                            A household member owns the land
## 516                                                          The land is rented
## 517                                                          The land is rented
## 518                                                          The land is rented
## 519                                                          The land is rented
## 520                                                          The land is rented
## 521                                                          The land is rented
## 522                                                          The land is rented
## 523                                            A household member owns the land
## 524                                                          The land is rented
## 525                                                          The land is rented
## 526                                                          The land is rented
## 527                                                          The land is rented
## 528                                                          The land is rented
## 529                                                          The land is rented
## 530                                                          The land is rented
## 531                                            A household member owns the land
## 532                                                          The land is rented
## 533                                                          The land is rented
## 534                                                          The land is rented
## 535                                                          The land is rented
## 536                                            A household member owns the land
## 537                                                          The land is rented
## 538                                                          The land is rented
## 539                                                          The land is rented
## 540                                                          The land is rented
## 541                                                          The land is rented
## 542                                                          The land is rented
## 543                                                          The land is rented
## 544                                                          The land is rented
## 545                                                          The land is rented
## 546                                            A household member owns the land
## 547                                                          The land is rented
## 548                                                          The land is rented
## 549                                                          The land is rented
## 550                                                          The land is rented
## 551                                                          The land is rented
## 552                                                          The land is rented
## 553                                            A household member owns the land
## 554                                                          The land is rented
## 555                                                          The land is rented
## 556                                                          The land is rented
## 557                                            A household member owns the land
## 558                                                          The land is rented
## 559                                                          The land is rented
## 560                                                          The land is rented
## 561                                            A household member owns the land
## 562                                            A household member owns the land
## 563                                                          The land is rented
## 564                                                          The land is rented
## 565                                            A household member owns the land
## 566                                                          The land is rented
## 567                                                          The land is rented
## 568                                                          The land is rented
## 569                                                          The land is rented
## 570                                            A household member owns the land
## 571                                                          The land is rented
## 572                                            A household member owns the land
## 573                                                          The land is rented
## 574                                                          The land is rented
## 575                                                          The land is rented
## 576                                                          The land is rented
## 577                                                          The land is rented
## 578                                            A household member owns the land
## 579                                                          The land is rented
## 580                                                          The land is rented
## 581                                                          The land is rented
## 582                                                          The land is rented
## 583                                                          The land is rented
## 584                                                          The land is rented
## 585                                            A household member owns the land
## 586                                                          The land is rented
## 587                                                          The land is rented
## 588                                                          The land is rented
## 589                                                          The land is rented
## 590                                                          The land is rented
## 591                                                          The land is rented
## 592                                                          The land is rented
## 593                                                          The land is rented
## 594                                                          The land is rented
## 595                                            A household member owns the land
## 596                                            A household member owns the land
## 597                                            A household member owns the land
## 598                                                          The land is rented
## 599                                                          The land is rented
## 600                                            A household member owns the land
## 601                                                          The land is rented
## 602                                            A household member owns the land
## 603                                                          The land is rented
## 604                                            A household member owns the land
## 605                                                          The land is rented
## 606                                            A household member owns the land
## 607                                                          The land is rented
## 608                                                          The land is rented
## 609                                                          The land is rented
## 610                                                          The land is rented
## 611                                                          The land is rented
## 612                                                          The land is rented
## 613                                                          The land is rented
## 614                                                          The land is rented
## 615                                                          The land is rented
## 616                                                          The land is rented
## 617                                                          The land is rented
## 618                                                          The land is rented
## 619                                                          The land is rented
## 620                                                          The land is rented
## 621                                                          The land is rented
## 622                                                          The land is rented
## 623                                                          The land is rented
## 624                                                          The land is rented
## 625                                                          The land is rented
## 626                                            A household member owns the land
## 627                                                          The land is rented
## 628                                                          The land is rented
## 629                                                          The land is rented
## 630                                                          The land is rented
## 631                                                          The land is rented
## 632                                                          The land is rented
## 633                                                          The land is rented
## 634                                                          The land is rented
## 635                                                          The land is rented
## 636                                                          The land is rented
## 637                                            A household member owns the land
## 638                                                          The land is rented
## 639                                                          The land is rented
## 640                                            A household member owns the land
## 641                                                          The land is rented
## 642                                                          The land is rented
## 643                                            A household member owns the land
## 644                                                          The land is rented
## 645                                                          The land is rented
## 646                                            A household member owns the land
## 647                                            A household member owns the land
## 648                                            A household member owns the land
## 649                                                          The land is rented
## 650                                                          The land is rented
## 651                                            A household member owns the land
## 652                                                          The land is rented
## 653                                                          The land is rented
## 654                                                          The land is rented
## 655                                                          The land is rented
## 656                                                          The land is rented
## 657                                                          The land is rented
## 658                                                          The land is rented
## 659                                                          The land is rented
## 660                                                          The land is rented
## 661                                                          The land is rented
## 662                                                          The land is rented
## 663                                                          The land is rented
## 664                                                          The land is rented
## 665                                            A household member owns the land
## 666                                                          The land is rented
## 667                                                          The land is rented
## 668                                                          The land is rented
## 669                                                          The land is rented
## 670                                            A household member owns the land
## 671                                                          The land is rented
## 672                                            A household member owns the land
## 673                                                          The land is rented
## 674                                                          The land is rented
## 675                                                          The land is rented
## 676                                                          The land is rented
## 677                                                          The land is rented
## 678                                                          The land is rented
## 679                                            A household member owns the land
## 680                                            A household member owns the land
## 681                                            A household member owns the land
## 682                                                          The land is rented
## 683                                                          The land is rented
## 684                                                          The land is rented
## 685                                                          The land is rented
## 686                                            A household member owns the land
## 687                                                          The land is rented
## 688                                                          The land is rented
## 689                                                          The land is rented
## 690                                                          The land is rented
## 691                                            A household member owns the land
## 692                                            A household member owns the land
## 693                                            A household member owns the land
## 694                                                          The land is rented
## 695                                            A household member owns the land
## 696                                            A household member owns the land
## 697                                                          The land is rented
## 698                                                          The land is rented
## 699                                                          The land is rented
## 700                                                          The land is rented
## 701                                                          The land is rented
## 702                                            A household member owns the land
## 703                                                          The land is rented
## 704                                                          The land is rented
## 705                                            A household member owns the land
## 706                                                          The land is rented
## 707                                                          The land is rented
## 708                                            A household member owns the land
## 709                                                          The land is rented
## 710                                            A household member owns the land
## 711                                                          The land is rented
## 712                                                          The land is rented
## 713                                                          The land is rented
## 714                                                          The land is rented
## 715                                                          The land is rented
## 716                                                          The land is rented
## 717                                                          The land is rented
## 718                                                          The land is rented
## 719                                                          The land is rented
## 720                                                          The land is rented
## 721                                            A household member owns the land
## 722                                            A household member owns the land
## 723                                                          The land is rented
## 724                                            A household member owns the land
## 725                                                          The land is rented
## 726                                                          The land is rented
## 727                                                          The land is rented
## 728                                                          The land is rented
## 729                                                          The land is rented
## 730                                                          The land is rented
## 731                                                          The land is rented
## 732                                                          The land is rented
## 733                                                          The land is rented
## 734                                            A household member owns the land
## 735                                                          The land is rented
## 736                                                          The land is rented
## 737                                                          The land is rented
## 738                                                          The land is rented
## 739                                            A household member owns the land
## 740                                                          The land is rented
## 741                                            A household member owns the land
## 742                                                          The land is rented
## 743                                                          The land is rented
## 744                                                          The land is rented
## 745                                                          The land is rented
## 746                                                          The land is rented
## 747                                            A household member owns the land
## 748                                                          The land is rented
## 749                                                          The land is rented
## 750                                                          The land is rented
## 751                                            A household member owns the land
## 752                                                          The land is rented
## 753                                            A household member owns the land
## 754                                            A household member owns the land
## 755                                            A household member owns the land
## 756                                            A household member owns the land
## 757                                            A household member owns the land
## 758                                                          The land is rented
## 759                                                          The land is rented
## 760                                                          The land is rented
## 761                                            A household member owns the land
## 762                                                          The land is rented
## 763                                                          The land is rented
## 764                                                          The land is rented
## 765                                                          The land is rented
## 766                                                          The land is rented
## 767                                            A household member owns the land
## 768                                                          The land is rented
## 769                                            A household member owns the land
## 770                                            A household member owns the land
## 771                                                          The land is rented
## 772                                                          The land is rented
## 773                                                          The land is rented
## 774                                                          The land is rented
## 775                                                          The land is rented
## 776                                                          The land is rented
## 777                                                          The land is rented
## 778                                                          The land is rented
## 779                                                          The land is rented
## 780                                                          The land is rented
## 781                                                          The land is rented
## 782                                                          The land is rented
## 783                                                          The land is rented
## 784                                                          The land is rented
## 785                                                          The land is rented
## 786                                                          The land is rented
## 787                                                          The land is rented
## 788                                            A household member owns the land
## 789                                            A household member owns the land
## 790                                                          The land is rented
## 791                                            A household member owns the land
## 792                                                          The land is rented
## 793                                                          The land is rented
## 794                                                          The land is rented
## 795                                                          The land is rented
## 796                                                          The land is rented
## 797                                                          The land is rented
## 798                                            A household member owns the land
## 799                                                          The land is rented
## 800                                                          The land is rented
## 801                                                          The land is rented
## 802                                                          The land is rented
## 803                                                          The land is rented
## 804                                                          The land is rented
## 805                                                          The land is rented
## 806                                                          The land is rented
## 807                                                          The land is rented
## 808                                                          The land is rented
## 809                                            A household member owns the land
## 810                                                          The land is rented
## 811                                                          The land is rented
## 812                                                          The land is rented
## 813                                                          The land is rented
## 814                                                          The land is rented
## 815                                                          The land is rented
## 816                                                          The land is rented
## 817                                            A household member owns the land
## 818                                                          The land is rented
## 819                                                          The land is rented
## 820                                                          The land is rented
## 821                                                          The land is rented
## 822                                            A household member owns the land
## 823                                                          The land is rented
## 824                                                          The land is rented
## 825                                                          The land is rented
## 826                                                          The land is rented
## 827                                            A household member owns the land
## 828                                            A household member owns the land
## 829                                                          The land is rented
## 830                                                          The land is rented
## 831                                            A household member owns the land
## 832                                                          The land is rented
## 833                                                          The land is rented
## 834                                                          The land is rented
## 835                                                          The land is rented
## 836                                                          The land is rented
## 837                                            A household member owns the land
## 838                                                          The land is rented
## 839                                            A household member owns the land
## 840                                                          The land is rented
## 841                                                          The land is rented
## 842                                                          The land is rented
## 843                                                          The land is rented
## 844                                                          The land is rented
## 845                                                          The land is rented
## 846                                                          The land is rented
## 847                                                          The land is rented
## 848                                                          The land is rented
## 849                                                          The land is rented
## 850                                                          The land is rented
## 851                                                          The land is rented
## 852                                                          The land is rented
## 853                                                          The land is rented
## 854                                                          The land is rented
## 855                                                          The land is rented
## 856                                            A household member owns the land
## 857                                                          The land is rented
## 858                                                          The land is rented
## 859                                                          The land is rented
## 860                                                          The land is rented
## 861                                                          The land is rented
## 862                                                          The land is rented
## 863                                                          The land is rented
## 864                                            A household member owns the land
## 865                                                          The land is rented
## 866                                                          The land is rented
## 867                                                          The land is rented
## 868                                                          The land is rented
## 869                                                          The land is rented
## 870                                                          The land is rented
## 871                                            A household member owns the land
## 872                                            A household member owns the land
## 873                                            A household member owns the land
## 874                                                          The land is rented
## 875                                                          The land is rented
## 876                                                          The land is rented
## 877                                                          The land is rented
## 878                                                          The land is rented
## 879                                                          The land is rented
## 880                                                          The land is rented
## 881                                                          The land is rented
## 882                                                          The land is rented
## 883                                                          The land is rented
## 884                                                          The land is rented
## 885                                                          The land is rented
## 886                                                          The land is rented
## 887                                            A household member owns the land
## 888                                                          The land is rented
## 889                                            A household member owns the land
## 890                                            A household member owns the land
## 891                                                          The land is rented
## 892                                            A household member owns the land
## 893                                                          The land is rented
## 894                                            A household member owns the land
## 895                                                          The land is rented
## 896                                                          The land is rented
## 897                                            A household member owns the land
## 898                                                          The land is rented
## 899                                            A household member owns the land
## 900                                                          The land is rented
## 901                                                          The land is rented
## 902                                            A household member owns the land
## 903                                                          The land is rented
## 904                                            A household member owns the land
## 905                                                          The land is rented
## 906                                                          The land is rented
## 907                                                          The land is rented
## 908                                                          The land is rented
## 909                                            A household member owns the land
## 910                                                          The land is rented
## 911                                                          The land is rented
## 912                                                          The land is rented
## 913                                                          The land is rented
## 914                                                          The land is rented
## 915                                            A household member owns the land
## 916                                                          The land is rented
## 917                                                          The land is rented
## 918                                            A household member owns the land
## 919                                                          The land is rented
## 920                                                          The land is rented
## 921                                                          The land is rented
## 922                                                          The land is rented
## 923                                                          The land is rented
## 924                                                          The land is rented
## 925                                                          The land is rented
## 926                                            A household member owns the land
## 927                                            A household member owns the land
## 928                                                          The land is rented
## 929                                                          The land is rented
## 930                                            A household member owns the land
## 931                                                          The land is rented
## 932                                                          The land is rented
## 933                                                          The land is rented
## 934                                                          The land is rented
## 935                                                          The land is rented
## 936                                            A household member owns the land
## 937                                                          The land is rented
## 938                                                          The land is rented
## 939                                                          The land is rented
## 940                                                          The land is rented
## 941                                                          The land is rented
## 942                                            A household member owns the land
## 943                                                          The land is rented
## 944                                            A household member owns the land
## 945                                                          The land is rented
## 946                                                          The land is rented
## 947                                                          The land is rented
## 948                                            A household member owns the land
## 949                                                          The land is rented
## 950                                            A household member owns the land
## 951                                            A household member owns the land
## 952                                                          The land is rented
## 953                                                          The land is rented
## 954                                                          The land is rented
## 955                                                          The land is rented
## 956                                            A household member owns the land
## 957                                            A household member owns the land
## 958                                                          The land is rented
## 959                                                          The land is rented
## 960                                                          The land is rented
## 961                                                          The land is rented
## 962                                                          The land is rented
## 963                                                          The land is rented
## 964                                            A household member owns the land
## 965                                                          The land is rented
## 966                                                          The land is rented
## 967                                                          The land is rented
## 968                                            A household member owns the land
## 969                                                          The land is rented
## 970                                                          The land is rented
## 971                                                          The land is rented
## 972                                            A household member owns the land
## 973                                                          The land is rented
## 974                                            A household member owns the land
## 975                                                          The land is rented
## 976                                                          The land is rented
## 977                                            A household member owns the land
## 978                                                          The land is rented
## 979                                                          The land is rented
## 980                                                          The land is rented
## 981                                                          The land is rented
## 982                                            A household member owns the land
## 983                                                          The land is rented
## 984                                                          The land is rented
## 985                                                          The land is rented
## 986                                                          The land is rented
## 987                                                          The land is rented
## 988                                                          The land is rented
## 989                                                          The land is rented
## 990                                                          The land is rented
## 991                                                          The land is rented
## 992                                            A household member owns the land
## 993                                                          The land is rented
## 994                                                          The land is rented
## 995                                                          The land is rented
## 996                                                          The land is rented
## 997                                                          The land is rented
## 998                                                          The land is rented
## 999                                                          The land is rented
## 1000                                                         The land is rented
## 1001                                                         The land is rented
## 1002                                                         The land is rented
## 1003                                                         The land is rented
## 1004                                                         The land is rented
## 1005                                           A household member owns the land
## 1006                                                         The land is rented
## 1007                                                         The land is rented
## 1008                                                         The land is rented
## 1009                                                         The land is rented
## 1010                                                         The land is rented
## 1011                                                         The land is rented
## 1012                                                         The land is rented
## 1013                                                         The land is rented
## 1014                                                         The land is rented
## 1015                                                         The land is rented
## 1016                                                         The land is rented
## 1017                                                         The land is rented
## 1018                                                         The land is rented
## 1019                                           A household member owns the land
## 1020                                                         The land is rented
## 1021                                                         The land is rented
## 1022                                                         The land is rented
## 1023                                                         The land is rented
## 1024                                           A household member owns the land
## 1025                                                         The land is rented
## 1026                                           A household member owns the land
## 1027                                           A household member owns the land
## 1028                                                         The land is rented
## 1029                                                         The land is rented
## 1030                                                         The land is rented
## 1031                                           A household member owns the land
## 1032                                           A household member owns the land
## 1033                                           A household member owns the land
## 1034                                           A household member owns the land
## 1035                                                         The land is rented
## 1036                                                         The land is rented
## 1037                                                         The land is rented
## 1038                                                         The land is rented
## 1039                                                         The land is rented
## 1040                                                         The land is rented
## 1041                                                         The land is rented
## 1042                                                         The land is rented
## 1043                                                         The land is rented
## 1044                                                         The land is rented
## 1045                                                         The land is rented
## 1046                                                         The land is rented
## 1047                                                         The land is rented
## 1048                                                         The land is rented
## 1049                                                         The land is rented
## 1050                                                         The land is rented
## 1051                                                         The land is rented
## 1052                                                         The land is rented
## 1053                                                         The land is rented
## 1054                                                         The land is rented
## 1055                                           A household member owns the land
## 1056                                                         The land is rented
## 1057                                                         The land is rented
## 1058                                                         The land is rented
## 1059                                           A household member owns the land
## 1060                                                         The land is rented
## 1061                                                         The land is rented
## 1062                                                         The land is rented
## 1063                                                         The land is rented
## 1064                                                         The land is rented
## 1065                                                         The land is rented
## 1066                                                         The land is rented
## 1067                                                         The land is rented
## 1068                                           A household member owns the land
## 1069                                           A household member owns the land
## 1070                                                         The land is rented
## 1071                                                         The land is rented
## 1072                                           A household member owns the land
## 1073                                                         The land is rented
## 1074                                           A household member owns the land
## 1075                                                         The land is rented
## 1076                                                         The land is rented
## 1077                                                         The land is rented
## 1078                                                         The land is rented
## 1079                                                         The land is rented
## 1080                                                         The land is rented
## 1081                                                         The land is rented
## 1082                                                         The land is rented
## 1083                                                         The land is rented
## 1084                                           A household member owns the land
## 1085                                           A household member owns the land
## 1086                                                         The land is rented
## 1087                                                         The land is rented
## 1088                                                         The land is rented
## 1089                                                         The land is rented
## 1090                                                         The land is rented
## 1091                                                         The land is rented
## 1092                                                         The land is rented
## 1093                                                         The land is rented
## 1094                                                         The land is rented
## 1095                                                         The land is rented
## 1096                                                         The land is rented
## 1097                                                         The land is rented
## 1098                                           A household member owns the land
## 1099                                                         The land is rented
## 1100                                                         The land is rented
## 1101                                                         The land is rented
## 1102                                                         The land is rented
## 1103                                                         The land is rented
## 1104                                           A household member owns the land
## 1105                                                         The land is rented
## 1106                                                         The land is rented
## 1107                                                         The land is rented
## 1108                                           A household member owns the land
## 1109                                                         The land is rented
## 1110                                                         The land is rented
## 1111                                                         The land is rented
## 1112                                                         The land is rented
## 1113                                                         The land is rented
## 1114                                                         The land is rented
## 1115                                                         The land is rented
## 1116                                           A household member owns the land
## 1117                                                         The land is rented
## 1118                                                         The land is rented
## 1119                                           A household member owns the land
## 1120                                           A household member owns the land
## 1121                                                         The land is rented
## 1122                                                         The land is rented
## 1123                                           A household member owns the land
## 1124                                                         The land is rented
## 1125                                                         The land is rented
## 1126                                                         The land is rented
## 1127                                           A household member owns the land
## 1128                                           A household member owns the land
## 1129                                                         The land is rented
## 1130                                                         The land is rented
## 1131                                                         The land is rented
## 1132                                                         The land is rented
## 1133                                                         The land is rented
## 1134                                                         The land is rented
## 1135                                                         The land is rented
## 1136                                                         The land is rented
## 1137                                                         The land is rented
## 1138                                           A household member owns the land
## 1139                                                         The land is rented
## 1140                                                         The land is rented
## 1141                                                         The land is rented
## 1142                                                         The land is rented
## 1143                                           A household member owns the land
## 1144                                                         The land is rented
## 1145                                                         The land is rented
## 1146                                                         The land is rented
## 1147                                           A household member owns the land
## 1148                                                         The land is rented
## 1149                                           A household member owns the land
## 1150                                           A household member owns the land
## 1151                                           A household member owns the land
## 1152                                                         The land is rented
## 1153                                                         The land is rented
## 1154                                                         The land is rented
## 1155                                           A household member owns the land
## 1156                                                         The land is rented
## 1157                                                         The land is rented
## 1158                                                         The land is rented
## 1159                                           A household member owns the land
## 1160                                                         The land is rented
## 1161                                                         The land is rented
## 1162                                           A household member owns the land
## 1163                                                         The land is rented
## 1164                                           A household member owns the land
## 1165                                                         The land is rented
## 1166                                                         The land is rented
## 1167                                                         The land is rented
## 1168                                                         The land is rented
## 1169                                           A household member owns the land
## 1170                                                         The land is rented
## 1171                                                         The land is rented
## 1172                                                         The land is rented
## 1173                                                         The land is rented
## 1174                                                         The land is rented
## 1175                                                         The land is rented
## 1176                                                         The land is rented
## 1177                                           A household member owns the land
## 1178                                           A household member owns the land
## 1179                                           A household member owns the land
## 1180                                                         The land is rented
## 1181                                                         The land is rented
## 1182                                                         The land is rented
## 1183                                                         The land is rented
## 1184                                           A household member owns the land
## 1185                                                         The land is rented
## 1186                                                         The land is rented
## 1187                                           A household member owns the land
## 1188                                           A household member owns the land
## 1189                                                         The land is rented
## 1190                                           A household member owns the land
## 1191                                                         The land is rented
## 1192                                                         The land is rented
## 1193                                           A household member owns the land
## 1194                                                         The land is rented
## 1195                                                         The land is rented
## 1196                                           A household member owns the land
## 1197                                                         The land is rented
## 1198                                           A household member owns the land
## 1199                                                         The land is rented
## 1200                                                         The land is rented
## 1201                                                         The land is rented
## 1202                                                         The land is rented
## 1203                                                         The land is rented
## 1204                                                         The land is rented
## 1205                                           A household member owns the land
## 1206                                                         The land is rented
## 1207                                                         The land is rented
## 1208                                           A household member owns the land
## 1209                                                         The land is rented
## 1210                                                         The land is rented
## 1211                                                         The land is rented
## 1212                                                         The land is rented
## 1213                                                         The land is rented
## 1214                                                         The land is rented
## 1215                                                         The land is rented
## 1216                                                         The land is rented
## 1217                                                         The land is rented
## 1218                                                         The land is rented
## 1219                                                         The land is rented
## 1220                                                         The land is rented
## 1221                                           A household member owns the land
## 1222                                           A household member owns the land
## 1223                                                         The land is rented
## 1224                                                         The land is rented
## 1225                                           A household member owns the land
## 1226                                           A household member owns the land
## 1227                                                         The land is rented
## 1228                                                         The land is rented
## 1229                                                         The land is rented
## 1230                                                         The land is rented
## 1231                                                         The land is rented
## 1232                                           A household member owns the land
## 1233                                                         The land is rented
## 1234                                                         The land is rented
## 1235                                                         The land is rented
## 1236                                                         The land is rented
## 1237                                                         The land is rented
## 1238                                                         The land is rented
## 1239                                                         The land is rented
## 1240                                                         The land is rented
## 1241                                                         The land is rented
## 1242                                           A household member owns the land
## 1243                                           A household member owns the land
## 1244                                                         The land is rented
## 1245                                           A household member owns the land
## 1246                                           A household member owns the land
## 1247                                                         The land is rented
## 1248                                                         The land is rented
## 1249                                           A household member owns the land
## 1250                                                         The land is rented
## 1251                                                         The land is rented
## 1252                                                         The land is rented
## 1253                                           A household member owns the land
## 1254                                           A household member owns the land
## 1255                                                         The land is rented
## 1256                                                         The land is rented
## 1257                                                         The land is rented
## 1258                                                         The land is rented
## 1259                                                         The land is rented
## 1260                                           A household member owns the land
## 1261                                                         The land is rented
## 1262                                                         The land is rented
## 1263                                                         The land is rented
## 1264                                                         The land is rented
## 1265                                                         The land is rented
## 1266                                                         The land is rented
## 1267                                           A household member owns the land
## 1268                                                         The land is rented
## 1269                                           A household member owns the land
## 1270                                           A household member owns the land
## 1271                                                         The land is rented
## 1272                                                         The land is rented
## 1273                                                         The land is rented
## 1274                                           A household member owns the land
## 1275                                                         The land is rented
## 1276                                                         The land is rented
## 1277                                                         The land is rented
## 1278                                                         The land is rented
## 1279                                                         The land is rented
## 1280                                                         The land is rented
## 1281                                           A household member owns the land
## 1282                                                         The land is rented
## 1283                                                         The land is rented
## 1284                                                         The land is rented
## 1285                                                         The land is rented
## 1286                                                         The land is rented
## 1287                                                         The land is rented
## 1288                                                         The land is rented
## 1289                                           A household member owns the land
## 1290                                                         The land is rented
## 1291                                                         The land is rented
## 1292                                           A household member owns the land
## 1293                                                         The land is rented
## 1294                                                         The land is rented
## 1295                                                         The land is rented
## 1296                                                         The land is rented
## 1297                                           A household member owns the land
## 1298                                           A household member owns the land
## 1299                                                         The land is rented
## 1300                                                         The land is rented
## 1301                                                         The land is rented
## 1302                                                         The land is rented
## 1303                                           A household member owns the land
## 1304                                                         The land is rented
## 1305                                                         The land is rented
## 1306                                                         The land is rented
## 1307                                                         The land is rented
## 1308                                                         The land is rented
## 1309                                                         The land is rented
## 1310                                           A household member owns the land
## 1311                                                         The land is rented
## 1312                                                         The land is rented
## 1313                                                         The land is rented
## 1314                                           A household member owns the land
## 1315                                           A household member owns the land
## 1316                                                         The land is rented
## 1317                                           A household member owns the land
## 1318                                                         The land is rented
## 1319                                                         The land is rented
## 1320                                                         The land is rented
## 1321                                                         The land is rented
## 1322                                                         The land is rented
## 1323                                                         The land is rented
## 1324                                           A household member owns the land
## 1325                                                         The land is rented
## 1326                                                         The land is rented
## 1327                                                         The land is rented
## 1328                                                         The land is rented
## 1329                                                         The land is rented
## 1330                                                         The land is rented
## 1331                                                         The land is rented
## 1332                                                         The land is rented
## 1333                                                         The land is rented
## 1334                                                         The land is rented
## 1335                                                         The land is rented
## 1336                                                         The land is rented
## 1337                                                         The land is rented
## 1338                                                         The land is rented
## 1339                                                         The land is rented
## 1340                                                         The land is rented
## 1341                                                         The land is rented
## 1342                                                         The land is rented
## 1343                                           A household member owns the land
## 1344                                                         The land is rented
## 1345                                                         The land is rented
## 1346                                                         The land is rented
## 1347                                                         The land is rented
## 1348                                                         The land is rented
## 1349                                                         The land is rented
## 1350                                           A household member owns the land
## 1351                                                         The land is rented
## 1352                                                         The land is rented
## 1353                                                         The land is rented
## 1354                                                         The land is rented
## 1355                                                         The land is rented
## 1356                                                         The land is rented
## 1357                                                         The land is rented
## 1358                                                         The land is rented
## 1359                                                         The land is rented
## 1360                                                         The land is rented
## 1361                                           A household member owns the land
## 1362                                                         The land is rented
## 1363                                                         The land is rented
## 1364                                                         The land is rented
## 1365                                                         The land is rented
## 1366                                                         The land is rented
## 1367                                                         The land is rented
## 1368                                                         The land is rented
## 1369                                                         The land is rented
## 1370                                           A household member owns the land
## 1371                                                         The land is rented
## 1372                                                         The land is rented
## 1373                                                         The land is rented
## 1374                                                         The land is rented
## 1375                                                         The land is rented
## 1376                                                         The land is rented
## 1377                                                         The land is rented
## 1378                                                         The land is rented
## 1379                                           A household member owns the land
## 1380                                                         The land is rented
## 1381                                           A household member owns the land
## 1382                                                         The land is rented
## 1383                                           A household member owns the land
## 1384                                                         The land is rented
## 1385                                           A household member owns the land
## 1386                                                         The land is rented
## 1387                                           A household member owns the land
## 1388                                                         The land is rented
## 1389                                                         The land is rented
## 1390                                           A household member owns the land
## 1391                                                         The land is rented
## 1392                                                         The land is rented
## 1393                                           A household member owns the land
## 1394                                                         The land is rented
## 1395                                                         The land is rented
## 1396                                           A household member owns the land
## 1397                                                         The land is rented
## 1398                                                         The land is rented
## 1399                                                         The land is rented
## 1400                                                         The land is rented
## 1401                                           A household member owns the land
## 1402                                                         The land is rented
## 1403                                           A household member owns the land
## 1404                                                         The land is rented
## 1405                                                         The land is rented
## 1406                                                         The land is rented
## 1407                                                         The land is rented
## 1408                                           A household member owns the land
## 1409                                                         The land is rented
## 1410                                           A household member owns the land
## 1411                                                         The land is rented
## 1412                                                         The land is rented
## 1413                                                         The land is rented
## 1414                                                         The land is rented
## 1415                                                         The land is rented
## 1416                                                         The land is rented
## 1417                                                         The land is rented
## 1418                                                         The land is rented
## 1419                                                         The land is rented
## 1420                                                         The land is rented
## 1421                                                         The land is rented
## 1422                                                         The land is rented
## 1423                                                         The land is rented
## 1424                                                         The land is rented
## 1425                                                         The land is rented
## 1426                                                         The land is rented
## 1427                                                         The land is rented
## 1428                                           A household member owns the land
## 1429                                           A household member owns the land
## 1430                                                         The land is rented
## 1431                                           A household member owns the land
## 1432                                           A household member owns the land
## 1433                                                         The land is rented
## 1434                                                         The land is rented
## 1435                                                         The land is rented
## 1436                                                         The land is rented
## 1437                                                         The land is rented
## 1438                                                         The land is rented
## 1439                                                         The land is rented
## 1440                                                         The land is rented
## 1441                                                         The land is rented
## 1442                                                         The land is rented
## 1443                                                         The land is rented
## 1444                                                         The land is rented
## 1445                                                         The land is rented
## 1446                                           A household member owns the land
## 1447                                                         The land is rented
## 1448                                                         The land is rented
## 1449                                                         The land is rented
## 1450                                           A household member owns the land
## 1451                                           A household member owns the land
## 1452                                                         The land is rented
## 1453                                                         The land is rented
## 1454                                                         The land is rented
## 1455                                           A household member owns the land
## 1456                                                         The land is rented
## 1457                                           A household member owns the land
## 1458                                                         The land is rented
## 1459                                           A household member owns the land
## 1460                                                         The land is rented
## 1461                                                         The land is rented
## 1462                                                         The land is rented
## 1463                                                         The land is rented
## 1464                                                         The land is rented
## 1465                                           A household member owns the land
## 1466                                                         The land is rented
## 1467                                                         The land is rented
## 1468                                           A household member owns the land
## 1469                                                         The land is rented
## 1470                                                         The land is rented
## 1471                                                         The land is rented
## 1472                                                         The land is rented
## 1473                                                         The land is rented
## 1474                                                         The land is rented
## 1475                                                         The land is rented
## 1476                                                         The land is rented
## 1477                                                         The land is rented
## 1478                                                         The land is rented
## 1479                                                         The land is rented
## 1480                                                         The land is rented
## 1481                                           A household member owns the land
## 1482                                                         The land is rented
## 1483                                           A household member owns the land
## 1484                                                         The land is rented
## 1485                                                         The land is rented
## 1486                                                         The land is rented
## 1487                                                         The land is rented
## 1488                                                         The land is rented
## 1489                                                         The land is rented
## 1490                                                         The land is rented
## 1491                                                         The land is rented
## 1492                                                         The land is rented
## 1493                                                         The land is rented
## 1494                                                         The land is rented
## 1495                                           A household member owns the land
## 1496                                                         The land is rented
## 1497                                                         The land is rented
## 1498                                                         The land is rented
## 1499                                           A household member owns the land
## 1500                                                         The land is rented
## 1501                                           A household member owns the land
## 1502                                           A household member owns the land
## 1503                                                         The land is rented
## 1504                                                         The land is rented
## 1505                                                         The land is rented
## 1506                                                         The land is rented
## 1507                                                         The land is rented
## 1508                                                         The land is rented
## 1509                                                         The land is rented
## 1510                                                         The land is rented
## 1511                                           A household member owns the land
## 1512                                                         The land is rented
## 1513                                           A household member owns the land
## 1514                                                         The land is rented
## 1515                                                         The land is rented
## 1516                                           A household member owns the land
## 1517                                                         The land is rented
## 1518                                                         The land is rented
## 1519                                                         The land is rented
## 1520                                                         The land is rented
## 1521                                                         The land is rented
## 1522                                                         The land is rented
## 1523                                           A household member owns the land
## 1524                                                         The land is rented
## 1525                                           A household member owns the land
## 1526                                                         The land is rented
## 1527                                                         The land is rented
## 1528                                                         The land is rented
## 1529                                                         The land is rented
## 1530                                           A household member owns the land
## 1531                                                         The land is rented
## 1532                                                         The land is rented
## 1533                                                         The land is rented
## 1534                                                         The land is rented
## 1535                                                         The land is rented
## 1536                                                         The land is rented
## 1537                                           A household member owns the land
## 1538                                                         The land is rented
## 1539                                                         The land is rented
## 1540                                                         The land is rented
## 1541                                                         The land is rented
## 1542                                                         The land is rented
## 1543                                           A household member owns the land
## 1544                                                         The land is rented
## 1545                                           A household member owns the land
## 1546                                                         The land is rented
## 1547                                                         The land is rented
## 1548                                                         The land is rented
## 1549                                                         The land is rented
## 1550                                                         The land is rented
## 1551                                                         The land is rented
## 1552                                                         The land is rented
## 1553                                           A household member owns the land
## 1554                                                         The land is rented
## 1555                                           A household member owns the land
## 1556                                                         The land is rented
## 1557                                                         The land is rented
## 1558                                                         The land is rented
## 1559                                                         The land is rented
## 1560                                                         The land is rented
## 1561                                           A household member owns the land
## 1562                                                         The land is rented
## 1563                                                         The land is rented
## 1564                                           A household member owns the land
## 1565                                                         The land is rented
## 1566                                                         The land is rented
## 1567                                           A household member owns the land
## 1568                                                         The land is rented
## 1569                                                         The land is rented
## 1570                                                         The land is rented
## 1571                                           A household member owns the land
## 1572                                                         The land is rented
## 1573                                                         The land is rented
## 1574                                                         The land is rented
## 1575                                                         The land is rented
## 1576                                                         The land is rented
## 1577                                                         The land is rented
## 1578                                                         The land is rented
## 1579                                           A household member owns the land
## 1580                                                         The land is rented
## 1581                                                         The land is rented
## 1582                                                         The land is rented
## 1583                                           A household member owns the land
## 1584                                                         The land is rented
## 1585                                                         The land is rented
## 1586                                           A household member owns the land
## 1587                                                         The land is rented
## 1588                                                         The land is rented
## 1589                                                         The land is rented
## 1590                                                         The land is rented
## 1591                                                         The land is rented
## 1592                                                         The land is rented
## 1593                                                         The land is rented
## 1594                                                         The land is rented
## 1595                                                         The land is rented
## 1596                                           A household member owns the land
## 1597                                                         The land is rented
## 1598                                                         The land is rented
## 1599                                                         The land is rented
## 1600                                                         The land is rented
## 1601                                                         The land is rented
## 1602                                                         The land is rented
## 1603                                                         The land is rented
## 1604                                           A household member owns the land
## 1605                                           A household member owns the land
## 1606                                                         The land is rented
## 1607                                                         The land is rented
## 1608                                                         The land is rented
## 1609                                           A household member owns the land
## 1610                                                         The land is rented
## 1611                                                         The land is rented
## 1612                                                         The land is rented
## 1613                                           A household member owns the land
## 1614                                                         The land is rented
## 1615                                                         The land is rented
## 1616                                           A household member owns the land
## 1617                                           A household member owns the land
## 1618                                           A household member owns the land
## 1619                                                         The land is rented
## 1620                                                         The land is rented
## 1621                                           A household member owns the land
## 1622                                                         The land is rented
## 1623                                                         The land is rented
## 1624                                           A household member owns the land
## 1625                                                         The land is rented
## 1626                                                         The land is rented
## 1627                                                         The land is rented
## 1628                                                         The land is rented
## 1629                                                         The land is rented
## 1630                                           A household member owns the land
## 1631                                                         The land is rented
## 1632                                                         The land is rented
## 1633                                                         The land is rented
## 1634                                           A household member owns the land
## 1635                                                         The land is rented
## 1636                                                         The land is rented
## 1637                                           A household member owns the land
## 1638                                                         The land is rented
## 1639                                           A household member owns the land
## 1640                                                         The land is rented
## 1641                                                         The land is rented
## 1642                                                         The land is rented
## 1643                                                         The land is rented
## 1644                                                         The land is rented
## 1645                                           A household member owns the land
## 1646                                           A household member owns the land
## 1647                                           A household member owns the land
## 1648                                           A household member owns the land
## 1649                                           A household member owns the land
## 1650                                                         The land is rented
## 1651                                                         The land is rented
## 1652                                                         The land is rented
## 1653                                           A household member owns the land
## 1654                                           A household member owns the land
## 1655                                                         The land is rented
## 1656                                                         The land is rented
## 1657                                                         The land is rented
## 1658                                                         The land is rented
## 1659                                                         The land is rented
## 1660                                           A household member owns the land
## 1661                                           A household member owns the land
## 1662                                           A household member owns the land
## 1663                                                         The land is rented
## 1664                                                         The land is rented
## 1665                                           A household member owns the land
## 1666                                           A household member owns the land
## 1667                                                         The land is rented
## 1668                                                         The land is rented
## 1669                                                         The land is rented
## 1670                                                         The land is rented
## 1671                                                         The land is rented
## 1672                                                         The land is rented
## 1673                                           A household member owns the land
## 1674                                                         The land is rented
## 1675                                                         The land is rented
## 1676                                                         The land is rented
## 1677                                                         The land is rented
## 1678                                                         The land is rented
## 1679                                           A household member owns the land
## 1680                                                         The land is rented
## 1681                                                         The land is rented
## 1682                                                         The land is rented
## 1683                                                         The land is rented
## 1684                                                         The land is rented
## 1685                                                         The land is rented
## 1686                                                         The land is rented
## 1687                                           A household member owns the land
## 1688                                           A household member owns the land
## 1689                                                         The land is rented
## 1690                                                         The land is rented
## 1691                                           A household member owns the land
## 1692                                                         The land is rented
## 1693                                           A household member owns the land
## 1694                                                         The land is rented
## 1695                                                         The land is rented
## 1696                                           A household member owns the land
## 1697                                                         The land is rented
## 1698                                                         The land is rented
## 1699                                                         The land is rented
## 1700                                           A household member owns the land
## 1701                                                         The land is rented
## 1702                                                         The land is rented
## 1703                                                         The land is rented
## 1704                                                         The land is rented
## 1705                                           A household member owns the land
## 1706                                                         The land is rented
## 1707                                                         The land is rented
## 1708                                                         The land is rented
## 1709                                                         The land is rented
## 1710                                           A household member owns the land
## 1711                                                         The land is rented
## 1712                                           A household member owns the land
## 1713                                                         The land is rented
## 1714                                                         The land is rented
## 1715                                                         The land is rented
## 1716                                                         The land is rented
## 1717                                                         The land is rented
## 1718                                                         The land is rented
## 1719                                                         The land is rented
## 1720                                                         The land is rented
## 1721                                                         The land is rented
## 1722                                                         The land is rented
## 1723                                                         The land is rented
## 1724                                                         The land is rented
## 1725                                                         The land is rented
## 1726                                                         The land is rented
## 1727                                                         The land is rented
## 1728                                           A household member owns the land
## 1729                                                         The land is rented
## 1730                                                         The land is rented
## 1731                                                         The land is rented
## 1732                                                         The land is rented
## 1733                                                         The land is rented
## 1734                                                         The land is rented
## 1735                                                         The land is rented
## 1736                                                         The land is rented
## 1737                                           A household member owns the land
## 1738                                                         The land is rented
## 1739                                           A household member owns the land
## 1740                                                         The land is rented
## 1741                                           A household member owns the land
## 1742                                                         The land is rented
## 1743                                                         The land is rented
## 1744                                                         The land is rented
## 1745                                                         The land is rented
## 1746                                           A household member owns the land
## 1747                                                         The land is rented
## 1748                                                         The land is rented
## 1749                                           A household member owns the land
## 1750                                           A household member owns the land
## 1751                                                         The land is rented
## 1752                                                         The land is rented
## 1753                                           A household member owns the land
## 1754                                                         The land is rented
## 1755                                                         The land is rented
## 1756                                           A household member owns the land
## 1757                                           A household member owns the land
## 1758                                                         The land is rented
## 1759                                           A household member owns the land
## 1760                                           A household member owns the land
## 1761                                                         The land is rented
## 1762                                           A household member owns the land
## 1763                                                         The land is rented
## 1764                                                         The land is rented
## 1765                                                         The land is rented
## 1766                                           A household member owns the land
## 1767                                                         The land is rented
## 1768                                           A household member owns the land
## 1769                                           A household member owns the land
## 1770                                                         The land is rented
## 1771                                                         The land is rented
## 1772                                                         The land is rented
## 1773                                                         The land is rented
## 1774                                                         The land is rented
## 1775                                                         The land is rented
## 1776                                                         The land is rented
## 1777                                                         The land is rented
## 1778                                           A household member owns the land
## 1779                                                         The land is rented
## 1780                                                         The land is rented
## 1781                                           A household member owns the land
## 1782                                                         The land is rented
## 1783                                                         The land is rented
## 1784                                                         The land is rented
## 1785                                                         The land is rented
## 1786                                                         The land is rented
## 1787                                           A household member owns the land
## 1788                                           A household member owns the land
## 1789                                           A household member owns the land
## 1790                                                         The land is rented
## 1791                                                         The land is rented
## 1792                                                         The land is rented
## 1793                                                         The land is rented
## 1794                                                         The land is rented
## 1795                                           A household member owns the land
## 1796                                           A household member owns the land
## 1797                                                         The land is rented
## 1798                                                         The land is rented
## 1799                                                         The land is rented
## 1800                                                         The land is rented
## 1801                                                         The land is rented
## 1802                                                         The land is rented
## 1803                                           A household member owns the land
## 1804                                                         The land is rented
## 1805                                                         The land is rented
## 1806                                           A household member owns the land
## 1807                                           A household member owns the land
## 1808                                           A household member owns the land
## 1809                                                         The land is rented
## 1810                                           A household member owns the land
## 1811                                           A household member owns the land
## 1812                                                         The land is rented
## 1813                                                         The land is rented
## 1814                                                         The land is rented
## 1815                                                         The land is rented
## 1816                                                         The land is rented
## 1817                                                         The land is rented
## 1818                                                         The land is rented
## 1819                                                         The land is rented
## 1820                                           A household member owns the land
## 1821                                                         The land is rented
## 1822                                                         The land is rented
## 1823                                                         The land is rented
## 1824                                           A household member owns the land
## 1825                                                         The land is rented
## 1826                                                         The land is rented
## 1827                                           A household member owns the land
## 1828                                                         The land is rented
## 1829                                                         The land is rented
## 1830                                                         The land is rented
## 1831                                                         The land is rented
## 1832                                                         The land is rented
## 1833                                                         The land is rented
## 1834                                                         The land is rented
## 1835                                                         The land is rented
## 1836                                                         The land is rented
## 1837                                                         The land is rented
## 1838                                                         The land is rented
## 1839                                           A household member owns the land
## 1840                                                         The land is rented
## 1841                                                         The land is rented
## 1842                                                         The land is rented
## 1843                                                         The land is rented
## 1844                                                         The land is rented
## 1845                                                         The land is rented
## 1846                                           A household member owns the land
## 1847                                                         The land is rented
## 1848                                                         The land is rented
## 1849                                                         The land is rented
## 1850                                                         The land is rented
## 1851                                                         The land is rented
## 1852                                           A household member owns the land
## 1853                                                         The land is rented
## 1854                                                         The land is rented
## 1855                                                         The land is rented
## 1856                                           A household member owns the land
## 1857                                                         The land is rented
## 1858                                                         The land is rented
## 1859                                                         The land is rented
## 1860                                           A household member owns the land
## 1861                                           A household member owns the land
## 1862                                                         The land is rented
## 1863                                           A household member owns the land
## 1864                                                         The land is rented
## 1865                                                         The land is rented
## 1866                                                         The land is rented
## 1867                                                         The land is rented
## 1868                                           A household member owns the land
## 1869                                                         The land is rented
## 1870                                                         The land is rented
## 1871                                           A household member owns the land
## 1872                                           A household member owns the land
## 1873                                                         The land is rented
## 1874                                                         The land is rented
## 1875                                           A household member owns the land
## 1876                                           A household member owns the land
## 1877                                                         The land is rented
## 1878                                                         The land is rented
## 1879                                                         The land is rented
## 1880                                                         The land is rented
## 1881                                                         The land is rented
## 1882                                                         The land is rented
## 1883                                                         The land is rented
## 1884                                           A household member owns the land
## 1885                                                         The land is rented
## 1886                                                         The land is rented
## 1887                                                         The land is rented
## 1888                                                         The land is rented
## 1889                                           A household member owns the land
## 1890                                                         The land is rented
## 1891                                                         The land is rented
## 1892                                           A household member owns the land
## 1893                                                         The land is rented
## 1894                                                         The land is rented
## 1895                                                         The land is rented
## 1896                                                         The land is rented
## 1897                                                         The land is rented
## 1898                                           A household member owns the land
## 1899                                                         The land is rented
## 1900                                                         The land is rented
## 1901                                           A household member owns the land
## 1902                                                         The land is rented
## 1903                                                         The land is rented
## 1904                                                         The land is rented
## 1905                                                         The land is rented
## 1906                                                         The land is rented
## 1907                                           A household member owns the land
## 1908                                                         The land is rented
## 1909                                                         The land is rented
## 1910                                           A household member owns the land
## 1911                                                         The land is rented
## 1912                                                         The land is rented
## 1913                                                         The land is rented
## 1914                                           A household member owns the land
## 1915                                                         The land is rented
## 1916                                                         The land is rented
## 1917                                                         The land is rented
## 1918                                                         The land is rented
## 1919                                           A household member owns the land
## 1920                                                         The land is rented
## 1921                                           A household member owns the land
## 1922                                                         The land is rented
## 1923                                           A household member owns the land
## 1924                                                         The land is rented
## 1925                                                         The land is rented
## 1926                                           A household member owns the land
## 1927                                                         The land is rented
## 1928                                                         The land is rented
## 1929                                                         The land is rented
## 1930                                           A household member owns the land
## 1931                                                         The land is rented
## 1932                                                         The land is rented
## 1933                                                         The land is rented
## 1934                                                         The land is rented
## 1935                                                         The land is rented
## 1936                                                         The land is rented
## 1937                                           A household member owns the land
## 1938                                                         The land is rented
## 1939                                                         The land is rented
## 1940                                                         The land is rented
## 1941                                                         The land is rented
## 1942                                                         The land is rented
## 1943                                                         The land is rented
## 1944                                                         The land is rented
## 1945                                                         The land is rented
## 1946                                                         The land is rented
## 1947                                                         The land is rented
## 1948                                                         The land is rented
## 1949                                           A household member owns the land
## 1950                                           A household member owns the land
## 1951                                           A household member owns the land
## 1952                                                         The land is rented
## 1953                                           A household member owns the land
## 1954                                           A household member owns the land
## 1955                                                         The land is rented
## 1956                                                         The land is rented
## 1957                                                         The land is rented
## 1958                                                         The land is rented
## 1959                                           A household member owns the land
## 1960                                                         The land is rented
## 1961                                           A household member owns the land
## 1962                                           A household member owns the land
## 1963                                                         The land is rented
## 1964                                                         The land is rented
## 1965                                                         The land is rented
## 1966                                           A household member owns the land
## 1967                                                         The land is rented
## 1968                                                         The land is rented
## 1969                                                         The land is rented
## 1970                                                         The land is rented
## 1971                                           A household member owns the land
## 1972                                           A household member owns the land
## 1973                                           A household member owns the land
## 1974                                                         The land is rented
## 1975                                           A household member owns the land
## 1976                                                         The land is rented
## 1977                                                         The land is rented
## 1978                                                         The land is rented
## 1979                                                         The land is rented
## 1980                                           A household member owns the land
## 1981                                                         The land is rented
## 1982                                                         The land is rented
## 1983                                                         The land is rented
## 1984                                                         The land is rented
## 1985                                           A household member owns the land
## 1986                                           A household member owns the land
## 1987                                                         The land is rented
## 1988                                                         The land is rented
## 1989                                                         The land is rented
## 1990                                                         The land is rented
## 1991                                           A household member owns the land
## 1992                                                         The land is rented
## 1993                                                         The land is rented
## 1994                                           A household member owns the land
## 1995                                                         The land is rented
## 1996                                                         The land is rented
## 1997                                                         The land is rented
## 1998                                                         The land is rented
## 1999                                                         The land is rented
## 2000                                                         The land is rented
## 2001                                           A household member owns the land
## 2002                                                         The land is rented
## 2003                                                         The land is rented
## 2004                                                         The land is rented
## 2005                                                         The land is rented
## 2006                                           A household member owns the land
## 2007                                                         The land is rented
## 2008                                                         The land is rented
## 2009                                           A household member owns the land
## 2010                                                         The land is rented
## 2011                                                         The land is rented
## 2012                                           A household member owns the land
## 2013                                           A household member owns the land
## 2014                                                         The land is rented
## 2015                                                         The land is rented
## 2016                                                         The land is rented
## 2017                                                         The land is rented
## 2018                                                         The land is rented
## 2019                                           A household member owns the land
## 2020                                                         The land is rented
## 2021                                                         The land is rented
## 2022                                                         The land is rented
## 2023                                                         The land is rented
## 2024                                           A household member owns the land
## 2025                                                         The land is rented
## 2026                                                         The land is rented
## 2027                                                         The land is rented
## 2028                                           A household member owns the land
## 2029                                           A household member owns the land
## 2030                                           A household member owns the land
## 2031                                                         The land is rented
## 2032                                                         The land is rented
## 2033                                                         The land is rented
## 2034                                                         The land is rented
## 2035                                                         The land is rented
## 2036                                                         The land is rented
## 2037                                           A household member owns the land
## 2038                                                         The land is rented
## 2039                                                         The land is rented
## 2040                                                         The land is rented
## 2041                                                         The land is rented
## 2042                                                         The land is rented
## 2043                                                         The land is rented
## 2044                                                         The land is rented
## 2045                                           A household member owns the land
## 2046                                                         The land is rented
## 2047                                           A household member owns the land
## 2048                                                         The land is rented
## 2049                                                         The land is rented
## 2050                                                         The land is rented
## 2051                                                         The land is rented
## 2052                                                         The land is rented
## 2053                                                         The land is rented
## 2054                                           A household member owns the land
## 2055                                                         The land is rented
## 2056                                                         The land is rented
## 2057                                           A household member owns the land
## 2058                                                         The land is rented
## 2059                                                         The land is rented
## 2060                                                         The land is rented
## 2061                                                         The land is rented
## 2062                                                         The land is rented
## 2063                                                         The land is rented
## 2064                                           A household member owns the land
## 2065                                           A household member owns the land
## 2066                                                         The land is rented
## 2067                                           A household member owns the land
## 2068                                           A household member owns the land
## 2069                                                         The land is rented
## 2070                                           A household member owns the land
## 2071                                           A household member owns the land
## 2072                                                         The land is rented
## 2073                                           A household member owns the land
## 2074                                                         The land is rented
## 2075                                                         The land is rented
## 2076                                                         The land is rented
## 2077                                           A household member owns the land
## 2078                                                         The land is rented
## 2079                                                         The land is rented
## 2080                                           A household member owns the land
## 2081                                                         The land is rented
## 2082                                                         The land is rented
## 2083                                           A household member owns the land
## 2084                                                         The land is rented
## 2085                                                         The land is rented
## 2086                                                         The land is rented
## 2087                                           A household member owns the land
## 2088                                                         The land is rented
## 2089                                                         The land is rented
## 2090                                                         The land is rented
## 2091                                           A household member owns the land
## 2092                                                         The land is rented
## 2093                                                         The land is rented
## 2094                                                         The land is rented
## 2095                                           A household member owns the land
## 2096                                                         The land is rented
## 2097                                                         The land is rented
## 2098                                                         The land is rented
## 2099                                           A household member owns the land
## 2100                                                         The land is rented
## 2101                                                         The land is rented
## 2102                                                         The land is rented
## 2103                                                         The land is rented
## 2104                                                         The land is rented
## 2105                                                         The land is rented
## 2106                                           A household member owns the land
## 2107                                                         The land is rented
## 2108                                                         The land is rented
## 2109                                                         The land is rented
## 2110                                                         The land is rented
## 2111                                                         The land is rented
## 2112                                                         The land is rented
## 2113                                                         The land is rented
## 2114                                           A household member owns the land
## 2115                                                         The land is rented
## 2116                                                         The land is rented
## 2117                                                         The land is rented
## 2118                                           A household member owns the land
## 2119                                                         The land is rented
## 2120                                           A household member owns the land
## 2121                                                         The land is rented
## 2122                                                         The land is rented
## 2123                                                         The land is rented
## 2124                                                         The land is rented
## 2125                                                         The land is rented
## 2126                                                         The land is rented
## 2127                                                         The land is rented
##      if_else(Q5 == 5, "You dont own the land", "You dont know")
## 1                                                 You dont know
## 2                                         You dont own the land
## 3                                                 You dont know
## 4                                                 You dont know
## 5                                                 You dont know
## 6                                                 You dont know
## 7                                                 You dont know
## 8                                         You dont own the land
## 9                                                 You dont know
## 10                                                You dont know
## 11                                        You dont own the land
## 12                                                You dont know
## 13                                                You dont know
## 14                                        You dont own the land
## 15                                        You dont own the land
## 16                                                You dont know
## 17                                                You dont know
## 18                                                You dont know
## 19                                                You dont know
## 20                                                You dont know
## 21                                                You dont know
## 22                                                You dont know
## 23                                                You dont know
## 24                                                You dont know
## 25                                                You dont know
## 26                                        You dont own the land
## 27                                                You dont know
## 28                                        You dont own the land
## 29                                        You dont own the land
## 30                                        You dont own the land
## 31                                                You dont know
## 32                                                You dont know
## 33                                                You dont know
## 34                                                You dont know
## 35                                                You dont know
## 36                                                You dont know
## 37                                        You dont own the land
## 38                                                You dont know
## 39                                        You dont own the land
## 40                                        You dont own the land
## 41                                        You dont own the land
## 42                                                You dont know
## 43                                        You dont own the land
## 44                                                You dont know
## 45                                                You dont know
## 46                                                You dont know
## 47                                                You dont know
## 48                                                You dont know
## 49                                                You dont know
## 50                                                You dont know
## 51                                                You dont know
## 52                                        You dont own the land
## 53                                        You dont own the land
## 54                                                You dont know
## 55                                                You dont know
## 56                                                You dont know
## 57                                                You dont know
## 58                                                You dont know
## 59                                                You dont know
## 60                                                You dont know
## 61                                        You dont own the land
## 62                                                You dont know
## 63                                                You dont know
## 64                                                You dont know
## 65                                                You dont know
## 66                                        You dont own the land
## 67                                                You dont know
## 68                                                You dont know
## 69                                                You dont know
## 70                                                You dont know
## 71                                        You dont own the land
## 72                                                You dont know
## 73                                                You dont know
## 74                                                You dont know
## 75                                                You dont know
## 76                                        You dont own the land
## 77                                                You dont know
## 78                                                You dont know
## 79                                                You dont know
## 80                                                You dont know
## 81                                                You dont know
## 82                                                You dont know
## 83                                                You dont know
## 84                                                You dont know
## 85                                                You dont know
## 86                                                You dont know
## 87                                        You dont own the land
## 88                                                You dont know
## 89                                                You dont know
## 90                                        You dont own the land
## 91                                                You dont know
## 92                                                You dont know
## 93                                        You dont own the land
## 94                                        You dont own the land
## 95                                        You dont own the land
## 96                                        You dont own the land
## 97                                                You dont know
## 98                                                You dont know
## 99                                                You dont know
## 100                                               You dont know
## 101                                               You dont know
## 102                                               You dont know
## 103                                       You dont own the land
## 104                                       You dont own the land
## 105                                               You dont know
## 106                                               You dont know
## 107                                       You dont own the land
## 108                                       You dont own the land
## 109                                       You dont own the land
## 110                                               You dont know
## 111                                               You dont know
## 112                                               You dont know
## 113                                               You dont know
## 114                                               You dont know
## 115                                               You dont know
## 116                                       You dont own the land
## 117                                               You dont know
## 118                                               You dont know
## 119                                               You dont know
## 120                                               You dont know
## 121                                               You dont know
## 122                                               You dont know
## 123                                               You dont know
## 124                                               You dont know
## 125                                       You dont own the land
## 126                                               You dont know
## 127                                               You dont know
## 128                                               You dont know
## 129                                       You dont own the land
## 130                                       You dont own the land
## 131                                       You dont own the land
## 132                                               You dont know
## 133                                               You dont know
## 134                                       You dont own the land
## 135                                               You dont know
## 136                                               You dont know
## 137                                               You dont know
## 138                                               You dont know
## 139                                       You dont own the land
## 140                                               You dont know
## 141                                               You dont know
## 142                                               You dont know
## 143                                               You dont know
## 144                                               You dont know
## 145                                       You dont own the land
## 146                                               You dont know
## 147                                               You dont know
## 148                                               You dont know
## 149                                               You dont know
## 150                                               You dont know
## 151                                               You dont know
## 152                                               You dont know
## 153                                               You dont know
## 154                                               You dont know
## 155                                       You dont own the land
## 156                                               You dont know
## 157                                               You dont know
## 158                                               You dont know
## 159                                               You dont know
## 160                                               You dont know
## 161                                       You dont own the land
## 162                                               You dont know
## 163                                               You dont know
## 164                                               You dont know
## 165                                               You dont know
## 166                                       You dont own the land
## 167                                               You dont know
## 168                                               You dont know
## 169                                               You dont know
## 170                                               You dont know
## 171                                               You dont know
## 172                                               You dont know
## 173                                               You dont know
## 174                                               You dont know
## 175                                       You dont own the land
## 176                                               You dont know
## 177                                       You dont own the land
## 178                                       You dont own the land
## 179                                               You dont know
## 180                                               You dont know
## 181                                       You dont own the land
## 182                                               You dont know
## 183                                               You dont know
## 184                                               You dont know
## 185                                       You dont own the land
## 186                                               You dont know
## 187                                               You dont know
## 188                                       You dont own the land
## 189                                               You dont know
## 190                                               You dont know
## 191                                               You dont know
## 192                                               You dont know
## 193                                               You dont know
## 194                                               You dont know
## 195                                               You dont know
## 196                                               You dont know
## 197                                               You dont know
## 198                                               You dont know
## 199                                       You dont own the land
## 200                                               You dont know
## 201                                               You dont know
## 202                                               You dont know
## 203                                       You dont own the land
## 204                                       You dont own the land
## 205                                               You dont know
## 206                                               You dont know
## 207                                               You dont know
## 208                                               You dont know
## 209                                       You dont own the land
## 210                                               You dont know
## 211                                               You dont know
## 212                                       You dont own the land
## 213                                               You dont know
## 214                                       You dont own the land
## 215                                               You dont know
## 216                                               You dont know
## 217                                       You dont own the land
## 218                                               You dont know
## 219                                       You dont own the land
## 220                                               You dont know
## 221                                               You dont know
## 222                                               You dont know
## 223                                               You dont know
## 224                                               You dont know
## 225                                               You dont know
## 226                                               You dont know
## 227                                               You dont know
## 228                                               You dont know
## 229                                               You dont know
## 230                                               You dont know
## 231                                       You dont own the land
## 232                                               You dont know
## 233                                               You dont know
## 234                                               You dont know
## 235                                               You dont know
## 236                                       You dont own the land
## 237                                               You dont know
## 238                                               You dont know
## 239                                       You dont own the land
## 240                                               You dont know
## 241                                       You dont own the land
## 242                                               You dont know
## 243                                               You dont know
## 244                                               You dont know
## 245                                               You dont know
## 246                                       You dont own the land
## 247                                               You dont know
## 248                                       You dont own the land
## 249                                               You dont know
## 250                                               You dont know
## 251                                               You dont know
## 252                                               You dont know
## 253                                               You dont know
## 254                                               You dont know
## 255                                               You dont know
## 256                                               You dont know
## 257                                               You dont know
## 258                                       You dont own the land
## 259                                               You dont know
## 260                                               You dont know
## 261                                               You dont know
## 262                                               You dont know
## 263                                       You dont own the land
## 264                                               You dont know
## 265                                               You dont know
## 266                                               You dont know
## 267                                               You dont know
## 268                                               You dont know
## 269                                               You dont know
## 270                                               You dont know
## 271                                       You dont own the land
## 272                                       You dont own the land
## 273                                       You dont own the land
## 274                                               You dont know
## 275                                               You dont know
## 276                                       You dont own the land
## 277                                               You dont know
## 278                                               You dont know
## 279                                       You dont own the land
## 280                                               You dont know
## 281                                               You dont know
## 282                                               You dont know
## 283                                               You dont know
## 284                                               You dont know
## 285                                               You dont know
## 286                                               You dont know
## 287                                               You dont know
## 288                                               You dont know
## 289                                               You dont know
## 290                                               You dont know
## 291                                       You dont own the land
## 292                                       You dont own the land
## 293                                               You dont know
## 294                                               You dont know
## 295                                               You dont know
## 296                                               You dont know
## 297                                       You dont own the land
## 298                                               You dont know
## 299                                               You dont know
## 300                                       You dont own the land
## 301                                               You dont know
## 302                                               You dont know
## 303                                       You dont own the land
## 304                                               You dont know
## 305                                               You dont know
## 306                                               You dont know
## 307                                               You dont know
## 308                                               You dont know
## 309                                               You dont know
## 310                                               You dont know
## 311                                               You dont know
## 312                                               You dont know
## 313                                               You dont know
## 314                                       You dont own the land
## 315                                               You dont know
## 316                                               You dont know
## 317                                               You dont know
## 318                                               You dont know
## 319                                               You dont know
## 320                                               You dont know
## 321                                               You dont know
## 322                                               You dont know
## 323                                               You dont know
## 324                                       You dont own the land
## 325                                       You dont own the land
## 326                                               You dont know
## 327                                               You dont know
## 328                                               You dont know
## 329                                               You dont know
## 330                                               You dont know
## 331                                               You dont know
## 332                                       You dont own the land
## 333                                               You dont know
## 334                                               You dont know
## 335                                               You dont know
## 336                                               You dont know
## 337                                               You dont know
## 338                                               You dont know
## 339                                               You dont know
## 340                                       You dont own the land
## 341                                               You dont know
## 342                                               You dont know
## 343                                               You dont know
## 344                                               You dont know
## 345                                               You dont know
## 346                                               You dont know
## 347                                               You dont know
## 348                                               You dont know
## 349                                       You dont own the land
## 350                                               You dont know
## 351                                               You dont know
## 352                                               You dont know
## 353                                               You dont know
## 354                                               You dont know
## 355                                               You dont know
## 356                                               You dont know
## 357                                               You dont know
## 358                                               You dont know
## 359                                               You dont know
## 360                                               You dont know
## 361                                               You dont know
## 362                                               You dont know
## 363                                               You dont know
## 364                                               You dont know
## 365                                               You dont know
## 366                                               You dont know
## 367                                       You dont own the land
## 368                                               You dont know
## 369                                       You dont own the land
## 370                                               You dont know
## 371                                               You dont know
## 372                                       You dont own the land
## 373                                               You dont know
## 374                                               You dont know
## 375                                               You dont know
## 376                                               You dont know
## 377                                               You dont know
## 378                                       You dont own the land
## 379                                       You dont own the land
## 380                                               You dont know
## 381                                       You dont own the land
## 382                                               You dont know
## 383                                               You dont know
## 384                                               You dont know
## 385                                               You dont know
## 386                                               You dont know
## 387                                               You dont know
## 388                                       You dont own the land
## 389                                               You dont know
## 390                                               You dont know
## 391                                               You dont know
## 392                                               You dont know
## 393                                               You dont know
## 394                                               You dont know
## 395                                               You dont know
## 396                                               You dont know
## 397                                               You dont know
## 398                                               You dont know
## 399                                               You dont know
## 400                                               You dont know
## 401                                               You dont know
## 402                                       You dont own the land
## 403                                               You dont know
## 404                                               You dont know
## 405                                               You dont know
## 406                                               You dont know
## 407                                               You dont know
## 408                                               You dont know
## 409                                       You dont own the land
## 410                                               You dont know
## 411                                       You dont own the land
## 412                                       You dont own the land
## 413                                       You dont own the land
## 414                                       You dont own the land
## 415                                               You dont know
## 416                                               You dont know
## 417                                               You dont know
## 418                                               You dont know
## 419                                               You dont know
## 420                                               You dont know
## 421                                               You dont know
## 422                                               You dont know
## 423                                       You dont own the land
## 424                                               You dont know
## 425                                       You dont own the land
## 426                                               You dont know
## 427                                               You dont know
## 428                                               You dont know
## 429                                               You dont know
## 430                                               You dont know
## 431                                       You dont own the land
## 432                                               You dont know
## 433                                               You dont know
## 434                                               You dont know
## 435                                               You dont know
## 436                                       You dont own the land
## 437                                               You dont know
## 438                                               You dont know
## 439                                       You dont own the land
## 440                                               You dont know
## 441                                               You dont know
## 442                                               You dont know
## 443                                               You dont know
## 444                                               You dont know
## 445                                               You dont know
## 446                                               You dont know
## 447                                               You dont know
## 448                                               You dont know
## 449                                       You dont own the land
## 450                                               You dont know
## 451                                               You dont know
## 452                                               You dont know
## 453                                       You dont own the land
## 454                                               You dont know
## 455                                               You dont know
## 456                                               You dont know
## 457                                               You dont know
## 458                                               You dont know
## 459                                               You dont know
## 460                                               You dont know
## 461                                               You dont know
## 462                                               You dont know
## 463                                               You dont know
## 464                                               You dont know
## 465                                       You dont own the land
## 466                                               You dont know
## 467                                               You dont know
## 468                                               You dont know
## 469                                               You dont know
## 470                                               You dont know
## 471                                               You dont know
## 472                                               You dont know
## 473                                       You dont own the land
## 474                                       You dont own the land
## 475                                               You dont know
## 476                                               You dont know
## 477                                               You dont know
## 478                                       You dont own the land
## 479                                               You dont know
## 480                                               You dont know
## 481                                               You dont know
## 482                                               You dont know
## 483                                               You dont know
## 484                                       You dont own the land
## 485                                               You dont know
## 486                                               You dont know
## 487                                               You dont know
## 488                                               You dont know
## 489                                               You dont know
## 490                                       You dont own the land
## 491                                               You dont know
## 492                                               You dont know
## 493                                               You dont know
## 494                                       You dont own the land
## 495                                               You dont know
## 496                                       You dont own the land
## 497                                       You dont own the land
## 498                                               You dont know
## 499                                       You dont own the land
## 500                                               You dont know
## 501                                               You dont know
## 502                                       You dont own the land
## 503                                               You dont know
## 504                                       You dont own the land
## 505                                               You dont know
## 506                                               You dont know
## 507                                               You dont know
## 508                                               You dont know
## 509                                               You dont know
## 510                                               You dont know
## 511                                               You dont know
## 512                                               You dont know
## 513                                               You dont know
## 514                                       You dont own the land
## 515                                               You dont know
## 516                                               You dont know
## 517                                       You dont own the land
## 518                                       You dont own the land
## 519                                               You dont know
## 520                                       You dont own the land
## 521                                               You dont know
## 522                                               You dont know
## 523                                               You dont know
## 524                                               You dont know
## 525                                               You dont know
## 526                                       You dont own the land
## 527                                               You dont know
## 528                                               You dont know
## 529                                               You dont know
## 530                                               You dont know
## 531                                               You dont know
## 532                                               You dont know
## 533                                       You dont own the land
## 534                                               You dont know
## 535                                               You dont know
## 536                                               You dont know
## 537                                               You dont know
## 538                                       You dont own the land
## 539                                               You dont know
## 540                                               You dont know
## 541                                               You dont know
## 542                                       You dont own the land
## 543                                               You dont know
## 544                                               You dont know
## 545                                               You dont know
## 546                                               You dont know
## 547                                               You dont know
## 548                                               You dont know
## 549                                       You dont own the land
## 550                                               You dont know
## 551                                               You dont know
## 552                                               You dont know
## 553                                               You dont know
## 554                                               You dont know
## 555                                               You dont know
## 556                                       You dont own the land
## 557                                               You dont know
## 558                                       You dont own the land
## 559                                               You dont know
## 560                                       You dont own the land
## 561                                               You dont know
## 562                                               You dont know
## 563                                               You dont know
## 564                                               You dont know
## 565                                               You dont know
## 566                                               You dont know
## 567                                               You dont know
## 568                                               You dont know
## 569                                               You dont know
## 570                                               You dont know
## 571                                               You dont know
## 572                                               You dont know
## 573                                               You dont know
## 574                                       You dont own the land
## 575                                               You dont know
## 576                                               You dont know
## 577                                               You dont know
## 578                                               You dont know
## 579                                               You dont know
## 580                                               You dont know
## 581                                               You dont know
## 582                                               You dont know
## 583                                               You dont know
## 584                                               You dont know
## 585                                               You dont know
## 586                                               You dont know
## 587                                               You dont know
## 588                                       You dont own the land
## 589                                               You dont know
## 590                                               You dont know
## 591                                               You dont know
## 592                                               You dont know
## 593                                               You dont know
## 594                                       You dont own the land
## 595                                               You dont know
## 596                                               You dont know
## 597                                               You dont know
## 598                                               You dont know
## 599                                               You dont know
## 600                                               You dont know
## 601                                               You dont know
## 602                                               You dont know
## 603                                               You dont know
## 604                                               You dont know
## 605                                               You dont know
## 606                                               You dont know
## 607                                               You dont know
## 608                                               You dont know
## 609                                       You dont own the land
## 610                                               You dont know
## 611                                       You dont own the land
## 612                                               You dont know
## 613                                               You dont know
## 614                                               You dont know
## 615                                               You dont know
## 616                                               You dont know
## 617                                               You dont know
## 618                                               You dont know
## 619                                               You dont know
## 620                                               You dont know
## 621                                               You dont know
## 622                                               You dont know
## 623                                       You dont own the land
## 624                                               You dont know
## 625                                               You dont know
## 626                                               You dont know
## 627                                               You dont know
## 628                                       You dont own the land
## 629                                               You dont know
## 630                                       You dont own the land
## 631                                               You dont know
## 632                                               You dont know
## 633                                               You dont know
## 634                                               You dont know
## 635                                               You dont know
## 636                                               You dont know
## 637                                               You dont know
## 638                                               You dont know
## 639                                               You dont know
## 640                                               You dont know
## 641                                       You dont own the land
## 642                                               You dont know
## 643                                               You dont know
## 644                                       You dont own the land
## 645                                       You dont own the land
## 646                                               You dont know
## 647                                               You dont know
## 648                                               You dont know
## 649                                       You dont own the land
## 650                                               You dont know
## 651                                               You dont know
## 652                                               You dont know
## 653                                               You dont know
## 654                                               You dont know
## 655                                               You dont know
## 656                                               You dont know
## 657                                               You dont know
## 658                                               You dont know
## 659                                               You dont know
## 660                                               You dont know
## 661                                               You dont know
## 662                                               You dont know
## 663                                       You dont own the land
## 664                                       You dont own the land
## 665                                               You dont know
## 666                                               You dont know
## 667                                       You dont own the land
## 668                                               You dont know
## 669                                               You dont know
## 670                                               You dont know
## 671                                               You dont know
## 672                                               You dont know
## 673                                               You dont know
## 674                                               You dont know
## 675                                               You dont know
## 676                                               You dont know
## 677                                       You dont own the land
## 678                                               You dont know
## 679                                               You dont know
## 680                                               You dont know
## 681                                               You dont know
## 682                                               You dont know
## 683                                       You dont own the land
## 684                                               You dont know
## 685                                       You dont own the land
## 686                                               You dont know
## 687                                               You dont know
## 688                                               You dont know
## 689                                               You dont know
## 690                                       You dont own the land
## 691                                               You dont know
## 692                                               You dont know
## 693                                               You dont know
## 694                                               You dont know
## 695                                               You dont know
## 696                                               You dont know
## 697                                               You dont know
## 698                                       You dont own the land
## 699                                               You dont know
## 700                                               You dont know
## 701                                               You dont know
## 702                                               You dont know
## 703                                       You dont own the land
## 704                                               You dont know
## 705                                               You dont know
## 706                                               You dont know
## 707                                               You dont know
## 708                                               You dont know
## 709                                       You dont own the land
## 710                                               You dont know
## 711                                               You dont know
## 712                                               You dont know
## 713                                               You dont know
## 714                                               You dont know
## 715                                               You dont know
## 716                                               You dont know
## 717                                               You dont know
## 718                                               You dont know
## 719                                               You dont know
## 720                                       You dont own the land
## 721                                               You dont know
## 722                                               You dont know
## 723                                       You dont own the land
## 724                                               You dont know
## 725                                               You dont know
## 726                                       You dont own the land
## 727                                               You dont know
## 728                                       You dont own the land
## 729                                       You dont own the land
## 730                                               You dont know
## 731                                       You dont own the land
## 732                                               You dont know
## 733                                               You dont know
## 734                                               You dont know
## 735                                               You dont know
## 736                                               You dont know
## 737                                       You dont own the land
## 738                                               You dont know
## 739                                               You dont know
## 740                                               You dont know
## 741                                               You dont know
## 742                                               You dont know
## 743                                       You dont own the land
## 744                                               You dont know
## 745                                               You dont know
## 746                                               You dont know
## 747                                               You dont know
## 748                                               You dont know
## 749                                               You dont know
## 750                                       You dont own the land
## 751                                               You dont know
## 752                                               You dont know
## 753                                               You dont know
## 754                                               You dont know
## 755                                               You dont know
## 756                                               You dont know
## 757                                               You dont know
## 758                                       You dont own the land
## 759                                               You dont know
## 760                                               You dont know
## 761                                               You dont know
## 762                                               You dont know
## 763                                       You dont own the land
## 764                                               You dont know
## 765                                               You dont know
## 766                                               You dont know
## 767                                               You dont know
## 768                                       You dont own the land
## 769                                               You dont know
## 770                                               You dont know
## 771                                               You dont know
## 772                                               You dont know
## 773                                               You dont know
## 774                                               You dont know
## 775                                               You dont know
## 776                                               You dont know
## 777                                               You dont know
## 778                                               You dont know
## 779                                               You dont know
## 780                                               You dont know
## 781                                               You dont know
## 782                                       You dont own the land
## 783                                       You dont own the land
## 784                                               You dont know
## 785                                               You dont know
## 786                                       You dont own the land
## 787                                               You dont know
## 788                                               You dont know
## 789                                               You dont know
## 790                                               You dont know
## 791                                               You dont know
## 792                                       You dont own the land
## 793                                               You dont know
## 794                                       You dont own the land
## 795                                       You dont own the land
## 796                                               You dont know
## 797                                       You dont own the land
## 798                                               You dont know
## 799                                               You dont know
## 800                                               You dont know
## 801                                               You dont know
## 802                                               You dont know
## 803                                       You dont own the land
## 804                                       You dont own the land
## 805                                       You dont own the land
## 806                                               You dont know
## 807                                               You dont know
## 808                                       You dont own the land
## 809                                               You dont know
## 810                                               You dont know
## 811                                       You dont own the land
## 812                                               You dont know
## 813                                               You dont know
## 814                                               You dont know
## 815                                       You dont own the land
## 816                                               You dont know
## 817                                               You dont know
## 818                                               You dont know
## 819                                               You dont know
## 820                                               You dont know
## 821                                       You dont own the land
## 822                                               You dont know
## 823                                               You dont know
## 824                                               You dont know
## 825                                               You dont know
## 826                                               You dont know
## 827                                               You dont know
## 828                                               You dont know
## 829                                               You dont know
## 830                                       You dont own the land
## 831                                               You dont know
## 832                                               You dont know
## 833                                       You dont own the land
## 834                                       You dont own the land
## 835                                               You dont know
## 836                                       You dont own the land
## 837                                               You dont know
## 838                                               You dont know
## 839                                               You dont know
## 840                                               You dont know
## 841                                               You dont know
## 842                                       You dont own the land
## 843                                               You dont know
## 844                                               You dont know
## 845                                               You dont know
## 846                                               You dont know
## 847                                               You dont know
## 848                                               You dont know
## 849                                       You dont own the land
## 850                                               You dont know
## 851                                               You dont know
## 852                                               You dont know
## 853                                               You dont know
## 854                                       You dont own the land
## 855                                               You dont know
## 856                                               You dont know
## 857                                               You dont know
## 858                                               You dont know
## 859                                       You dont own the land
## 860                                       You dont own the land
## 861                                               You dont know
## 862                                               You dont know
## 863                                               You dont know
## 864                                               You dont know
## 865                                               You dont know
## 866                                       You dont own the land
## 867                                               You dont know
## 868                                       You dont own the land
## 869                                               You dont know
## 870                                               You dont know
## 871                                               You dont know
## 872                                               You dont know
## 873                                               You dont know
## 874                                               You dont know
## 875                                               You dont know
## 876                                       You dont own the land
## 877                                               You dont know
## 878                                       You dont own the land
## 879                                               You dont know
## 880                                               You dont know
## 881                                               You dont know
## 882                                       You dont own the land
## 883                                               You dont know
## 884                                       You dont own the land
## 885                                               You dont know
## 886                                               You dont know
## 887                                               You dont know
## 888                                       You dont own the land
## 889                                               You dont know
## 890                                               You dont know
## 891                                       You dont own the land
## 892                                               You dont know
## 893                                               You dont know
## 894                                               You dont know
## 895                                               You dont know
## 896                                       You dont own the land
## 897                                               You dont know
## 898                                               You dont know
## 899                                               You dont know
## 900                                               You dont know
## 901                                               You dont know
## 902                                               You dont know
## 903                                       You dont own the land
## 904                                               You dont know
## 905                                               You dont know
## 906                                               You dont know
## 907                                               You dont know
## 908                                       You dont own the land
## 909                                               You dont know
## 910                                               You dont know
## 911                                               You dont know
## 912                                       You dont own the land
## 913                                       You dont own the land
## 914                                               You dont know
## 915                                               You dont know
## 916                                               You dont know
## 917                                               You dont know
## 918                                               You dont know
## 919                                               You dont know
## 920                                               You dont know
## 921                                               You dont know
## 922                                       You dont own the land
## 923                                               You dont know
## 924                                               You dont know
## 925                                               You dont know
## 926                                               You dont know
## 927                                               You dont know
## 928                                               You dont know
## 929                                       You dont own the land
## 930                                               You dont know
## 931                                               You dont know
## 932                                       You dont own the land
## 933                                               You dont know
## 934                                               You dont know
## 935                                       You dont own the land
## 936                                               You dont know
## 937                                               You dont know
## 938                                               You dont know
## 939                                               You dont know
## 940                                       You dont own the land
## 941                                               You dont know
## 942                                               You dont know
## 943                                               You dont know
## 944                                               You dont know
## 945                                               You dont know
## 946                                               You dont know
## 947                                       You dont own the land
## 948                                               You dont know
## 949                                               You dont know
## 950                                               You dont know
## 951                                               You dont know
## 952                                               You dont know
## 953                                               You dont know
## 954                                       You dont own the land
## 955                                       You dont own the land
## 956                                               You dont know
## 957                                               You dont know
## 958                                               You dont know
## 959                                       You dont own the land
## 960                                               You dont know
## 961                                               You dont know
## 962                                               You dont know
## 963                                       You dont own the land
## 964                                               You dont know
## 965                                       You dont own the land
## 966                                               You dont know
## 967                                       You dont own the land
## 968                                               You dont know
## 969                                               You dont know
## 970                                               You dont know
## 971                                               You dont know
## 972                                               You dont know
## 973                                               You dont know
## 974                                               You dont know
## 975                                               You dont know
## 976                                               You dont know
## 977                                               You dont know
## 978                                       You dont own the land
## 979                                       You dont own the land
## 980                                       You dont own the land
## 981                                               You dont know
## 982                                               You dont know
## 983                                               You dont know
## 984                                               You dont know
## 985                                               You dont know
## 986                                               You dont know
## 987                                       You dont own the land
## 988                                               You dont know
## 989                                               You dont know
## 990                                               You dont know
## 991                                               You dont know
## 992                                               You dont know
## 993                                               You dont know
## 994                                               You dont know
## 995                                               You dont know
## 996                                               You dont know
## 997                                       You dont own the land
## 998                                               You dont know
## 999                                               You dont know
## 1000                                      You dont own the land
## 1001                                              You dont know
## 1002                                              You dont know
## 1003                                              You dont know
## 1004                                              You dont know
## 1005                                              You dont know
## 1006                                              You dont know
## 1007                                              You dont know
## 1008                                              You dont know
## 1009                                              You dont know
## 1010                                              You dont know
## 1011                                              You dont know
## 1012                                              You dont know
## 1013                                              You dont know
## 1014                                              You dont know
## 1015                                      You dont own the land
## 1016                                              You dont know
## 1017                                              You dont know
## 1018                                      You dont own the land
## 1019                                              You dont know
## 1020                                              You dont know
## 1021                                              You dont know
## 1022                                      You dont own the land
## 1023                                              You dont know
## 1024                                              You dont know
## 1025                                              You dont know
## 1026                                              You dont know
## 1027                                              You dont know
## 1028                                              You dont know
## 1029                                      You dont own the land
## 1030                                      You dont own the land
## 1031                                              You dont know
## 1032                                              You dont know
## 1033                                              You dont know
## 1034                                              You dont know
## 1035                                              You dont know
## 1036                                              You dont know
## 1037                                              You dont know
## 1038                                              You dont know
## 1039                                              You dont know
## 1040                                      You dont own the land
## 1041                                              You dont know
## 1042                                              You dont know
## 1043                                              You dont know
## 1044                                              You dont know
## 1045                                              You dont know
## 1046                                              You dont know
## 1047                                      You dont own the land
## 1048                                      You dont own the land
## 1049                                              You dont know
## 1050                                              You dont know
## 1051                                              You dont know
## 1052                                              You dont know
## 1053                                              You dont know
## 1054                                              You dont know
## 1055                                              You dont know
## 1056                                              You dont know
## 1057                                              You dont know
## 1058                                              You dont know
## 1059                                              You dont know
## 1060                                              You dont know
## 1061                                              You dont know
## 1062                                      You dont own the land
## 1063                                              You dont know
## 1064                                              You dont know
## 1065                                              You dont know
## 1066                                              You dont know
## 1067                                              You dont know
## 1068                                              You dont know
## 1069                                              You dont know
## 1070                                              You dont know
## 1071                                              You dont know
## 1072                                              You dont know
## 1073                                              You dont know
## 1074                                              You dont know
## 1075                                              You dont know
## 1076                                              You dont know
## 1077                                      You dont own the land
## 1078                                      You dont own the land
## 1079                                      You dont own the land
## 1080                                      You dont own the land
## 1081                                              You dont know
## 1082                                              You dont know
## 1083                                              You dont know
## 1084                                              You dont know
## 1085                                              You dont know
## 1086                                              You dont know
## 1087                                              You dont know
## 1088                                              You dont know
## 1089                                              You dont know
## 1090                                              You dont know
## 1091                                      You dont own the land
## 1092                                              You dont know
## 1093                                      You dont own the land
## 1094                                              You dont know
## 1095                                              You dont know
## 1096                                      You dont own the land
## 1097                                              You dont know
## 1098                                              You dont know
## 1099                                              You dont know
## 1100                                              You dont know
## 1101                                              You dont know
## 1102                                              You dont know
## 1103                                      You dont own the land
## 1104                                              You dont know
## 1105                                              You dont know
## 1106                                              You dont know
## 1107                                      You dont own the land
## 1108                                              You dont know
## 1109                                              You dont know
## 1110                                              You dont know
## 1111                                      You dont own the land
## 1112                                              You dont know
## 1113                                              You dont know
## 1114                                      You dont own the land
## 1115                                              You dont know
## 1116                                              You dont know
## 1117                                              You dont know
## 1118                                              You dont know
## 1119                                              You dont know
## 1120                                              You dont know
## 1121                                              You dont know
## 1122                                      You dont own the land
## 1123                                              You dont know
## 1124                                              You dont know
## 1125                                              You dont know
## 1126                                              You dont know
## 1127                                              You dont know
## 1128                                              You dont know
## 1129                                              You dont know
## 1130                                      You dont own the land
## 1131                                      You dont own the land
## 1132                                              You dont know
## 1133                                              You dont know
## 1134                                      You dont own the land
## 1135                                              You dont know
## 1136                                      You dont own the land
## 1137                                              You dont know
## 1138                                              You dont know
## 1139                                              You dont know
## 1140                                              You dont know
## 1141                                              You dont know
## 1142                                              You dont know
## 1143                                              You dont know
## 1144                                      You dont own the land
## 1145                                              You dont know
## 1146                                              You dont know
## 1147                                              You dont know
## 1148                                              You dont know
## 1149                                              You dont know
## 1150                                              You dont know
## 1151                                              You dont know
## 1152                                              You dont know
## 1153                                              You dont know
## 1154                                              You dont know
## 1155                                              You dont know
## 1156                                      You dont own the land
## 1157                                              You dont know
## 1158                                      You dont own the land
## 1159                                              You dont know
## 1160                                      You dont own the land
## 1161                                              You dont know
## 1162                                              You dont know
## 1163                                              You dont know
## 1164                                              You dont know
## 1165                                              You dont know
## 1166                                      You dont own the land
## 1167                                      You dont own the land
## 1168                                      You dont own the land
## 1169                                              You dont know
## 1170                                              You dont know
## 1171                                              You dont know
## 1172                                              You dont know
## 1173                                              You dont know
## 1174                                              You dont know
## 1175                                              You dont know
## 1176                                              You dont know
## 1177                                              You dont know
## 1178                                              You dont know
## 1179                                              You dont know
## 1180                                              You dont know
## 1181                                      You dont own the land
## 1182                                              You dont know
## 1183                                              You dont know
## 1184                                              You dont know
## 1185                                              You dont know
## 1186                                              You dont know
## 1187                                              You dont know
## 1188                                              You dont know
## 1189                                              You dont know
## 1190                                              You dont know
## 1191                                              You dont know
## 1192                                      You dont own the land
## 1193                                              You dont know
## 1194                                              You dont know
## 1195                                              You dont know
## 1196                                              You dont know
## 1197                                      You dont own the land
## 1198                                              You dont know
## 1199                                              You dont know
## 1200                                              You dont know
## 1201                                              You dont know
## 1202                                              You dont know
## 1203                                              You dont know
## 1204                                              You dont know
## 1205                                              You dont know
## 1206                                      You dont own the land
## 1207                                              You dont know
## 1208                                              You dont know
## 1209                                              You dont know
## 1210                                              You dont know
## 1211                                              You dont know
## 1212                                              You dont know
## 1213                                      You dont own the land
## 1214                                              You dont know
## 1215                                              You dont know
## 1216                                      You dont own the land
## 1217                                              You dont know
## 1218                                              You dont know
## 1219                                              You dont know
## 1220                                              You dont know
## 1221                                              You dont know
## 1222                                              You dont know
## 1223                                              You dont know
## 1224                                              You dont know
## 1225                                              You dont know
## 1226                                              You dont know
## 1227                                              You dont know
## 1228                                              You dont know
## 1229                                              You dont know
## 1230                                              You dont know
## 1231                                      You dont own the land
## 1232                                              You dont know
## 1233                                              You dont know
## 1234                                              You dont know
## 1235                                              You dont know
## 1236                                              You dont know
## 1237                                              You dont know
## 1238                                              You dont know
## 1239                                              You dont know
## 1240                                      You dont own the land
## 1241                                              You dont know
## 1242                                              You dont know
## 1243                                              You dont know
## 1244                                              You dont know
## 1245                                              You dont know
## 1246                                              You dont know
## 1247                                      You dont own the land
## 1248                                              You dont know
## 1249                                              You dont know
## 1250                                              You dont know
## 1251                                              You dont know
## 1252                                              You dont know
## 1253                                              You dont know
## 1254                                              You dont know
## 1255                                              You dont know
## 1256                                      You dont own the land
## 1257                                              You dont know
## 1258                                              You dont know
## 1259                                              You dont know
## 1260                                              You dont know
## 1261                                              You dont know
## 1262                                              You dont know
## 1263                                              You dont know
## 1264                                              You dont know
## 1265                                      You dont own the land
## 1266                                              You dont know
## 1267                                              You dont know
## 1268                                              You dont know
## 1269                                              You dont know
## 1270                                              You dont know
## 1271                                      You dont own the land
## 1272                                              You dont know
## 1273                                              You dont know
## 1274                                              You dont know
## 1275                                              You dont know
## 1276                                              You dont know
## 1277                                              You dont know
## 1278                                              You dont know
## 1279                                              You dont know
## 1280                                              You dont know
## 1281                                              You dont know
## 1282                                      You dont own the land
## 1283                                      You dont own the land
## 1284                                              You dont know
## 1285                                              You dont know
## 1286                                              You dont know
## 1287                                      You dont own the land
## 1288                                              You dont know
## 1289                                              You dont know
## 1290                                              You dont know
## 1291                                              You dont know
## 1292                                              You dont know
## 1293                                              You dont know
## 1294                                      You dont own the land
## 1295                                      You dont own the land
## 1296                                              You dont know
## 1297                                              You dont know
## 1298                                              You dont know
## 1299                                              You dont know
## 1300                                      You dont own the land
## 1301                                              You dont know
## 1302                                              You dont know
## 1303                                              You dont know
## 1304                                      You dont own the land
## 1305                                              You dont know
## 1306                                              You dont know
## 1307                                      You dont own the land
## 1308                                              You dont know
## 1309                                              You dont know
## 1310                                              You dont know
## 1311                                      You dont own the land
## 1312                                      You dont own the land
## 1313                                      You dont own the land
## 1314                                              You dont know
## 1315                                              You dont know
## 1316                                              You dont know
## 1317                                              You dont know
## 1318                                              You dont know
## 1319                                      You dont own the land
## 1320                                      You dont own the land
## 1321                                              You dont know
## 1322                                              You dont know
## 1323                                              You dont know
## 1324                                              You dont know
## 1325                                      You dont own the land
## 1326                                              You dont know
## 1327                                              You dont know
## 1328                                              You dont know
## 1329                                              You dont know
## 1330                                              You dont know
## 1331                                              You dont know
## 1332                                      You dont own the land
## 1333                                              You dont know
## 1334                                              You dont know
## 1335                                              You dont know
## 1336                                      You dont own the land
## 1337                                      You dont own the land
## 1338                                      You dont own the land
## 1339                                              You dont know
## 1340                                              You dont know
## 1341                                      You dont own the land
## 1342                                      You dont own the land
## 1343                                              You dont know
## 1344                                              You dont know
## 1345                                              You dont know
## 1346                                              You dont know
## 1347                                              You dont know
## 1348                                              You dont know
## 1349                                              You dont know
## 1350                                              You dont know
## 1351                                              You dont know
## 1352                                      You dont own the land
## 1353                                              You dont know
## 1354                                              You dont know
## 1355                                      You dont own the land
## 1356                                              You dont know
## 1357                                      You dont own the land
## 1358                                      You dont own the land
## 1359                                      You dont own the land
## 1360                                      You dont own the land
## 1361                                              You dont know
## 1362                                      You dont own the land
## 1363                                      You dont own the land
## 1364                                              You dont know
## 1365                                      You dont own the land
## 1366                                      You dont own the land
## 1367                                      You dont own the land
## 1368                                              You dont know
## 1369                                              You dont know
## 1370                                              You dont know
## 1371                                              You dont know
## 1372                                      You dont own the land
## 1373                                              You dont know
## 1374                                              You dont know
## 1375                                              You dont know
## 1376                                              You dont know
## 1377                                              You dont know
## 1378                                              You dont know
## 1379                                              You dont know
## 1380                                              You dont know
## 1381                                              You dont know
## 1382                                              You dont know
## 1383                                              You dont know
## 1384                                              You dont know
## 1385                                              You dont know
## 1386                                      You dont own the land
## 1387                                              You dont know
## 1388                                              You dont know
## 1389                                              You dont know
## 1390                                              You dont know
## 1391                                              You dont know
## 1392                                              You dont know
## 1393                                              You dont know
## 1394                                              You dont know
## 1395                                              You dont know
## 1396                                              You dont know
## 1397                                              You dont know
## 1398                                              You dont know
## 1399                                              You dont know
## 1400                                              You dont know
## 1401                                              You dont know
## 1402                                              You dont know
## 1403                                              You dont know
## 1404                                              You dont know
## 1405                                              You dont know
## 1406                                              You dont know
## 1407                                              You dont know
## 1408                                              You dont know
## 1409                                      You dont own the land
## 1410                                              You dont know
## 1411                                              You dont know
## 1412                                              You dont know
## 1413                                              You dont know
## 1414                                      You dont own the land
## 1415                                              You dont know
## 1416                                              You dont know
## 1417                                              You dont know
## 1418                                              You dont know
## 1419                                              You dont know
## 1420                                              You dont know
## 1421                                              You dont know
## 1422                                              You dont know
## 1423                                              You dont know
## 1424                                              You dont know
## 1425                                      You dont own the land
## 1426                                              You dont know
## 1427                                              You dont know
## 1428                                              You dont know
## 1429                                              You dont know
## 1430                                              You dont know
## 1431                                              You dont know
## 1432                                              You dont know
## 1433                                              You dont know
## 1434                                              You dont know
## 1435                                      You dont own the land
## 1436                                              You dont know
## 1437                                              You dont know
## 1438                                      You dont own the land
## 1439                                              You dont know
## 1440                                              You dont know
## 1441                                      You dont own the land
## 1442                                      You dont own the land
## 1443                                              You dont know
## 1444                                              You dont know
## 1445                                              You dont know
## 1446                                              You dont know
## 1447                                      You dont own the land
## 1448                                              You dont know
## 1449                                              You dont know
## 1450                                              You dont know
## 1451                                              You dont know
## 1452                                      You dont own the land
## 1453                                              You dont know
## 1454                                              You dont know
## 1455                                              You dont know
## 1456                                              You dont know
## 1457                                              You dont know
## 1458                                              You dont know
## 1459                                              You dont know
## 1460                                              You dont know
## 1461                                              You dont know
## 1462                                              You dont know
## 1463                                              You dont know
## 1464                                      You dont own the land
## 1465                                              You dont know
## 1466                                      You dont own the land
## 1467                                      You dont own the land
## 1468                                              You dont know
## 1469                                              You dont know
## 1470                                              You dont know
## 1471                                              You dont know
## 1472                                              You dont know
## 1473                                              You dont know
## 1474                                      You dont own the land
## 1475                                      You dont own the land
## 1476                                              You dont know
## 1477                                              You dont know
## 1478                                      You dont own the land
## 1479                                      You dont own the land
## 1480                                              You dont know
## 1481                                              You dont know
## 1482                                              You dont know
## 1483                                              You dont know
## 1484                                              You dont know
## 1485                                              You dont know
## 1486                                              You dont know
## 1487                                      You dont own the land
## 1488                                              You dont know
## 1489                                              You dont know
## 1490                                              You dont know
## 1491                                              You dont know
## 1492                                      You dont own the land
## 1493                                              You dont know
## 1494                                              You dont know
## 1495                                              You dont know
## 1496                                              You dont know
## 1497                                              You dont know
## 1498                                              You dont know
## 1499                                              You dont know
## 1500                                              You dont know
## 1501                                              You dont know
## 1502                                              You dont know
## 1503                                              You dont know
## 1504                                              You dont know
## 1505                                              You dont know
## 1506                                              You dont know
## 1507                                      You dont own the land
## 1508                                              You dont know
## 1509                                              You dont know
## 1510                                      You dont own the land
## 1511                                              You dont know
## 1512                                              You dont know
## 1513                                              You dont know
## 1514                                              You dont know
## 1515                                              You dont know
## 1516                                              You dont know
## 1517                                              You dont know
## 1518                                      You dont own the land
## 1519                                              You dont know
## 1520                                              You dont know
## 1521                                              You dont know
## 1522                                              You dont know
## 1523                                              You dont know
## 1524                                              You dont know
## 1525                                              You dont know
## 1526                                              You dont know
## 1527                                              You dont know
## 1528                                              You dont know
## 1529                                              You dont know
## 1530                                              You dont know
## 1531                                      You dont own the land
## 1532                                      You dont own the land
## 1533                                              You dont know
## 1534                                              You dont know
## 1535                                              You dont know
## 1536                                              You dont know
## 1537                                              You dont know
## 1538                                              You dont know
## 1539                                              You dont know
## 1540                                      You dont own the land
## 1541                                              You dont know
## 1542                                              You dont know
## 1543                                              You dont know
## 1544                                              You dont know
## 1545                                              You dont know
## 1546                                              You dont know
## 1547                                              You dont know
## 1548                                              You dont know
## 1549                                              You dont know
## 1550                                              You dont know
## 1551                                              You dont know
## 1552                                      You dont own the land
## 1553                                              You dont know
## 1554                                      You dont own the land
## 1555                                              You dont know
## 1556                                              You dont know
## 1557                                      You dont own the land
## 1558                                      You dont own the land
## 1559                                              You dont know
## 1560                                              You dont know
## 1561                                              You dont know
## 1562                                              You dont know
## 1563                                      You dont own the land
## 1564                                              You dont know
## 1565                                              You dont know
## 1566                                              You dont know
## 1567                                              You dont know
## 1568                                              You dont know
## 1569                                              You dont know
## 1570                                      You dont own the land
## 1571                                              You dont know
## 1572                                              You dont know
## 1573                                              You dont know
## 1574                                      You dont own the land
## 1575                                      You dont own the land
## 1576                                              You dont know
## 1577                                              You dont know
## 1578                                              You dont know
## 1579                                              You dont know
## 1580                                              You dont know
## 1581                                              You dont know
## 1582                                              You dont know
## 1583                                              You dont know
## 1584                                              You dont know
## 1585                                      You dont own the land
## 1586                                              You dont know
## 1587                                              You dont know
## 1588                                              You dont know
## 1589                                              You dont know
## 1590                                              You dont know
## 1591                                              You dont know
## 1592                                      You dont own the land
## 1593                                      You dont own the land
## 1594                                              You dont know
## 1595                                              You dont know
## 1596                                              You dont know
## 1597                                              You dont know
## 1598                                      You dont own the land
## 1599                                      You dont own the land
## 1600                                      You dont own the land
## 1601                                              You dont know
## 1602                                              You dont know
## 1603                                              You dont know
## 1604                                              You dont know
## 1605                                              You dont know
## 1606                                              You dont know
## 1607                                      You dont own the land
## 1608                                              You dont know
## 1609                                              You dont know
## 1610                                              You dont know
## 1611                                              You dont know
## 1612                                              You dont know
## 1613                                              You dont know
## 1614                                      You dont own the land
## 1615                                              You dont know
## 1616                                              You dont know
## 1617                                              You dont know
## 1618                                              You dont know
## 1619                                      You dont own the land
## 1620                                              You dont know
## 1621                                              You dont know
## 1622                                              You dont know
## 1623                                              You dont know
## 1624                                              You dont know
## 1625                                              You dont know
## 1626                                              You dont know
## 1627                                              You dont know
## 1628                                              You dont know
## 1629                                              You dont know
## 1630                                              You dont know
## 1631                                              You dont know
## 1632                                      You dont own the land
## 1633                                              You dont know
## 1634                                              You dont know
## 1635                                              You dont know
## 1636                                              You dont know
## 1637                                              You dont know
## 1638                                              You dont know
## 1639                                              You dont know
## 1640                                              You dont know
## 1641                                              You dont know
## 1642                                              You dont know
## 1643                                      You dont own the land
## 1644                                      You dont own the land
## 1645                                              You dont know
## 1646                                              You dont know
## 1647                                              You dont know
## 1648                                              You dont know
## 1649                                              You dont know
## 1650                                              You dont know
## 1651                                              You dont know
## 1652                                      You dont own the land
## 1653                                              You dont know
## 1654                                              You dont know
## 1655                                              You dont know
## 1656                                              You dont know
## 1657                                      You dont own the land
## 1658                                              You dont know
## 1659                                      You dont own the land
## 1660                                              You dont know
## 1661                                              You dont know
## 1662                                              You dont know
## 1663                                      You dont own the land
## 1664                                              You dont know
## 1665                                              You dont know
## 1666                                              You dont know
## 1667                                              You dont know
## 1668                                      You dont own the land
## 1669                                              You dont know
## 1670                                              You dont know
## 1671                                      You dont own the land
## 1672                                              You dont know
## 1673                                              You dont know
## 1674                                              You dont know
## 1675                                              You dont know
## 1676                                              You dont know
## 1677                                              You dont know
## 1678                                      You dont own the land
## 1679                                              You dont know
## 1680                                              You dont know
## 1681                                              You dont know
## 1682                                              You dont know
## 1683                                              You dont know
## 1684                                              You dont know
## 1685                                              You dont know
## 1686                                              You dont know
## 1687                                              You dont know
## 1688                                              You dont know
## 1689                                              You dont know
## 1690                                              You dont know
## 1691                                              You dont know
## 1692                                              You dont know
## 1693                                              You dont know
## 1694                                      You dont own the land
## 1695                                              You dont know
## 1696                                              You dont know
## 1697                                      You dont own the land
## 1698                                              You dont know
## 1699                                              You dont know
## 1700                                              You dont know
## 1701                                              You dont know
## 1702                                              You dont know
## 1703                                              You dont know
## 1704                                              You dont know
## 1705                                              You dont know
## 1706                                              You dont know
## 1707                                              You dont know
## 1708                                              You dont know
## 1709                                              You dont know
## 1710                                              You dont know
## 1711                                              You dont know
## 1712                                              You dont know
## 1713                                              You dont know
## 1714                                              You dont know
## 1715                                      You dont own the land
## 1716                                              You dont know
## 1717                                              You dont know
## 1718                                              You dont know
## 1719                                              You dont know
## 1720                                              You dont know
## 1721                                      You dont own the land
## 1722                                              You dont know
## 1723                                              You dont know
## 1724                                              You dont know
## 1725                                              You dont know
## 1726                                              You dont know
## 1727                                              You dont know
## 1728                                              You dont know
## 1729                                              You dont know
## 1730                                      You dont own the land
## 1731                                              You dont know
## 1732                                              You dont know
## 1733                                              You dont know
## 1734                                              You dont know
## 1735                                      You dont own the land
## 1736                                      You dont own the land
## 1737                                              You dont know
## 1738                                      You dont own the land
## 1739                                              You dont know
## 1740                                      You dont own the land
## 1741                                              You dont know
## 1742                                              You dont know
## 1743                                      You dont own the land
## 1744                                      You dont own the land
## 1745                                              You dont know
## 1746                                              You dont know
## 1747                                              You dont know
## 1748                                              You dont know
## 1749                                              You dont know
## 1750                                              You dont know
## 1751                                              You dont know
## 1752                                      You dont own the land
## 1753                                              You dont know
## 1754                                              You dont know
## 1755                                              You dont know
## 1756                                              You dont know
## 1757                                              You dont know
## 1758                                              You dont know
## 1759                                              You dont know
## 1760                                              You dont know
## 1761                                      You dont own the land
## 1762                                              You dont know
## 1763                                              You dont know
## 1764                                              You dont know
## 1765                                      You dont own the land
## 1766                                              You dont know
## 1767                                              You dont know
## 1768                                              You dont know
## 1769                                              You dont know
## 1770                                              You dont know
## 1771                                              You dont know
## 1772                                              You dont know
## 1773                                              You dont know
## 1774                                      You dont own the land
## 1775                                      You dont own the land
## 1776                                              You dont know
## 1777                                              You dont know
## 1778                                              You dont know
## 1779                                              You dont know
## 1780                                              You dont know
## 1781                                              You dont know
## 1782                                              You dont know
## 1783                                      You dont own the land
## 1784                                      You dont own the land
## 1785                                              You dont know
## 1786                                              You dont know
## 1787                                              You dont know
## 1788                                              You dont know
## 1789                                              You dont know
## 1790                                              You dont know
## 1791                                              You dont know
## 1792                                              You dont know
## 1793                                              You dont know
## 1794                                              You dont know
## 1795                                              You dont know
## 1796                                              You dont know
## 1797                                              You dont know
## 1798                                              You dont know
## 1799                                              You dont know
## 1800                                              You dont know
## 1801                                              You dont know
## 1802                                              You dont know
## 1803                                              You dont know
## 1804                                      You dont own the land
## 1805                                              You dont know
## 1806                                              You dont know
## 1807                                              You dont know
## 1808                                              You dont know
## 1809                                              You dont know
## 1810                                              You dont know
## 1811                                              You dont know
## 1812                                      You dont own the land
## 1813                                              You dont know
## 1814                                              You dont know
## 1815                                              You dont know
## 1816                                              You dont know
## 1817                                              You dont know
## 1818                                              You dont know
## 1819                                              You dont know
## 1820                                              You dont know
## 1821                                              You dont know
## 1822                                              You dont know
## 1823                                      You dont own the land
## 1824                                              You dont know
## 1825                                              You dont know
## 1826                                      You dont own the land
## 1827                                              You dont know
## 1828                                      You dont own the land
## 1829                                              You dont know
## 1830                                              You dont know
## 1831                                              You dont know
## 1832                                              You dont know
## 1833                                      You dont own the land
## 1834                                              You dont know
## 1835                                              You dont know
## 1836                                              You dont know
## 1837                                              You dont know
## 1838                                              You dont know
## 1839                                              You dont know
## 1840                                              You dont know
## 1841                                      You dont own the land
## 1842                                              You dont know
## 1843                                      You dont own the land
## 1844                                              You dont know
## 1845                                              You dont know
## 1846                                              You dont know
## 1847                                      You dont own the land
## 1848                                      You dont own the land
## 1849                                              You dont know
## 1850                                              You dont know
## 1851                                              You dont know
## 1852                                              You dont know
## 1853                                              You dont know
## 1854                                              You dont know
## 1855                                      You dont own the land
## 1856                                              You dont know
## 1857                                              You dont know
## 1858                                              You dont know
## 1859                                              You dont know
## 1860                                              You dont know
## 1861                                              You dont know
## 1862                                              You dont know
## 1863                                              You dont know
## 1864                                              You dont know
## 1865                                              You dont know
## 1866                                              You dont know
## 1867                                              You dont know
## 1868                                              You dont know
## 1869                                              You dont know
## 1870                                              You dont know
## 1871                                              You dont know
## 1872                                              You dont know
## 1873                                              You dont know
## 1874                                              You dont know
## 1875                                              You dont know
## 1876                                              You dont know
## 1877                                              You dont know
## 1878                                      You dont own the land
## 1879                                              You dont know
## 1880                                              You dont know
## 1881                                              You dont know
## 1882                                              You dont know
## 1883                                              You dont know
## 1884                                              You dont know
## 1885                                              You dont know
## 1886                                      You dont own the land
## 1887                                      You dont own the land
## 1888                                              You dont know
## 1889                                              You dont know
## 1890                                              You dont know
## 1891                                              You dont know
## 1892                                              You dont know
## 1893                                      You dont own the land
## 1894                                              You dont know
## 1895                                              You dont know
## 1896                                              You dont know
## 1897                                      You dont own the land
## 1898                                              You dont know
## 1899                                              You dont know
## 1900                                      You dont own the land
## 1901                                              You dont know
## 1902                                              You dont know
## 1903                                              You dont know
## 1904                                              You dont know
## 1905                                              You dont know
## 1906                                              You dont know
## 1907                                              You dont know
## 1908                                      You dont own the land
## 1909                                              You dont know
## 1910                                              You dont know
## 1911                                              You dont know
## 1912                                              You dont know
## 1913                                      You dont own the land
## 1914                                              You dont know
## 1915                                              You dont know
## 1916                                              You dont know
## 1917                                      You dont own the land
## 1918                                              You dont know
## 1919                                              You dont know
## 1920                                      You dont own the land
## 1921                                              You dont know
## 1922                                      You dont own the land
## 1923                                              You dont know
## 1924                                              You dont know
## 1925                                      You dont own the land
## 1926                                              You dont know
## 1927                                              You dont know
## 1928                                              You dont know
## 1929                                              You dont know
## 1930                                              You dont know
## 1931                                      You dont own the land
## 1932                                              You dont know
## 1933                                              You dont know
## 1934                                      You dont own the land
## 1935                                              You dont know
## 1936                                      You dont own the land
## 1937                                              You dont know
## 1938                                              You dont know
## 1939                                              You dont know
## 1940                                              You dont know
## 1941                                      You dont own the land
## 1942                                              You dont know
## 1943                                              You dont know
## 1944                                      You dont own the land
## 1945                                              You dont know
## 1946                                      You dont own the land
## 1947                                              You dont know
## 1948                                      You dont own the land
## 1949                                              You dont know
## 1950                                              You dont know
## 1951                                              You dont know
## 1952                                      You dont own the land
## 1953                                              You dont know
## 1954                                              You dont know
## 1955                                              You dont know
## 1956                                              You dont know
## 1957                                              You dont know
## 1958                                      You dont own the land
## 1959                                              You dont know
## 1960                                              You dont know
## 1961                                              You dont know
## 1962                                              You dont know
## 1963                                              You dont know
## 1964                                              You dont know
## 1965                                              You dont know
## 1966                                              You dont know
## 1967                                              You dont know
## 1968                                              You dont know
## 1969                                              You dont know
## 1970                                              You dont know
## 1971                                              You dont know
## 1972                                              You dont know
## 1973                                              You dont know
## 1974                                              You dont know
## 1975                                              You dont know
## 1976                                      You dont own the land
## 1977                                              You dont know
## 1978                                              You dont know
## 1979                                              You dont know
## 1980                                              You dont know
## 1981                                      You dont own the land
## 1982                                              You dont know
## 1983                                              You dont know
## 1984                                              You dont know
## 1985                                              You dont know
## 1986                                              You dont know
## 1987                                              You dont know
## 1988                                              You dont know
## 1989                                              You dont know
## 1990                                              You dont know
## 1991                                              You dont know
## 1992                                              You dont know
## 1993                                              You dont know
## 1994                                              You dont know
## 1995                                              You dont know
## 1996                                      You dont own the land
## 1997                                              You dont know
## 1998                                      You dont own the land
## 1999                                              You dont know
## 2000                                              You dont know
## 2001                                              You dont know
## 2002                                              You dont know
## 2003                                              You dont know
## 2004                                      You dont own the land
## 2005                                              You dont know
## 2006                                              You dont know
## 2007                                              You dont know
## 2008                                              You dont know
## 2009                                              You dont know
## 2010                                              You dont know
## 2011                                      You dont own the land
## 2012                                              You dont know
## 2013                                              You dont know
## 2014                                      You dont own the land
## 2015                                              You dont know
## 2016                                              You dont know
## 2017                                              You dont know
## 2018                                              You dont know
## 2019                                              You dont know
## 2020                                              You dont know
## 2021                                              You dont know
## 2022                                              You dont know
## 2023                                      You dont own the land
## 2024                                              You dont know
## 2025                                              You dont know
## 2026                                              You dont know
## 2027                                              You dont know
## 2028                                              You dont know
## 2029                                              You dont know
## 2030                                              You dont know
## 2031                                              You dont know
## 2032                                              You dont know
## 2033                                              You dont know
## 2034                                              You dont know
## 2035                                              You dont know
## 2036                                              You dont know
## 2037                                              You dont know
## 2038                                      You dont own the land
## 2039                                              You dont know
## 2040                                              You dont know
## 2041                                              You dont know
## 2042                                      You dont own the land
## 2043                                              You dont know
## 2044                                              You dont know
## 2045                                              You dont know
## 2046                                              You dont know
## 2047                                              You dont know
## 2048                                      You dont own the land
## 2049                                              You dont know
## 2050                                              You dont know
## 2051                                              You dont know
## 2052                                              You dont know
## 2053                                              You dont know
## 2054                                              You dont know
## 2055                                              You dont know
## 2056                                              You dont know
## 2057                                              You dont know
## 2058                                              You dont know
## 2059                                              You dont know
## 2060                                              You dont know
## 2061                                              You dont know
## 2062                                              You dont know
## 2063                                              You dont know
## 2064                                              You dont know
## 2065                                              You dont know
## 2066                                              You dont know
## 2067                                              You dont know
## 2068                                              You dont know
## 2069                                              You dont know
## 2070                                              You dont know
## 2071                                              You dont know
## 2072                                              You dont know
## 2073                                              You dont know
## 2074                                              You dont know
## 2075                                      You dont own the land
## 2076                                              You dont know
## 2077                                              You dont know
## 2078                                              You dont know
## 2079                                              You dont know
## 2080                                              You dont know
## 2081                                              You dont know
## 2082                                              You dont know
## 2083                                              You dont know
## 2084                                              You dont know
## 2085                                              You dont know
## 2086                                              You dont know
## 2087                                              You dont know
## 2088                                              You dont know
## 2089                                      You dont own the land
## 2090                                              You dont know
## 2091                                              You dont know
## 2092                                              You dont know
## 2093                                              You dont know
## 2094                                              You dont know
## 2095                                              You dont know
## 2096                                              You dont know
## 2097                                              You dont know
## 2098                                              You dont know
## 2099                                              You dont know
## 2100                                              You dont know
## 2101                                              You dont know
## 2102                                              You dont know
## 2103                                              You dont know
## 2104                                              You dont know
## 2105                                      You dont own the land
## 2106                                              You dont know
## 2107                                              You dont know
## 2108                                              You dont know
## 2109                                              You dont know
## 2110                                              You dont know
## 2111                                              You dont know
## 2112                                              You dont know
## 2113                                              You dont know
## 2114                                              You dont know
## 2115                                              You dont know
## 2116                                              You dont know
## 2117                                              You dont know
## 2118                                              You dont know
## 2119                                              You dont know
## 2120                                              You dont know
## 2121                                              You dont know
## 2122                                              You dont know
## 2123                                      You dont own the land
## 2124                                              You dont know
## 2125                                              You dont know
## 2126                                              You dont know
## 2127                                              You dont know
##  [ reached 'max' / getOption("max.print") -- omitted 4967 rows ]
### These chunk will be long. Apologies in advance, but practice practice makes perfect

###4. Generate frequency tables and graphs, for all the categorical variables

####4.1 Gender


## write code here
Gender_count<-training%>%
         group_by(Q2)%>%
         summarise(Count=n())
Gender_plot<-ggplot(data=Gender_count,aes(x=Q2,y=Count))+
             geom_bar(stat ="identity",fill="#3dcc16")+
             labs(title = "Distribution of Gender",x="Q2", y="Count")+
              theme_bw()+
              theme(plot.title = element_text(hjust = 1))
                    
            
Gender_plot        

####4.2 Marital Status


## write code here
Marital_count<-training%>%
              group_by(Q3)%>%
              summarise(Count=n())
Marital_plot<-ggplot(data = Marital_count,aes(x=Q3,y=Count))+
              geom_bar(stat = "identity",fill="#3dcc16")+
              labs(title = "Distribution of Marital status",x="Q3",y="Count")+
              theme_bw()+
              theme(plot.title = element_text(hjust = 0.5))
Marital_plot

####4.3 Highest level of education


## write code here
education_count<-training%>%
                 group_by(Q4)%>%
                 summarise(Count=n())
education_plot<-ggplot(data=education_count,aes(x=Q4,y=Count))+
                geom_bar(stat = "identity",fill="#3dcc16")+
            labs(title = "Distribution of level of Education",x="Q4",y="Count")+
                 theme_bw()+
                 theme(plot.title = element_text(hjust = 0.5))
education_plot

And so on… Each chunk should have results (table and graph) for one variable.


## write code here

###5 Which gender:

5.1 Saves the most?


## write code here
training_save<-training%>%
               group_by(Q2,savings==1)%>%
               summarise(count=n())
training_save
## # A tibble: 4 x 3
## # Groups:   Q2 [2]
##      Q2 `savings == 1` count
##   <int> <lgl>          <int>
## 1     1 FALSE           1535
## 2     1 TRUE            1587
## 3     2 FALSE           2285
## 4     2 TRUE            1687

##Females save more than Males

5.2 Borrows the most?


## write code here
training_borrow<-training%>%
                 group_by(Q2,borrowing)%>%
                 summarise(count=n())
training_borrow
## # A tibble: 4 x 3
## # Groups:   Q2 [2]
##      Q2 borrowing count
##   <int>     <int> <int>
## 1     1         0  1645
## 2     1         1  1477
## 3     2         0  2378
## 4     2         1  1594

##Females borrow more than males

5.3 Uses insurance the most?


## write code here
training_insurance<-training%>%
                    group_by(Q2,insurance)%>%
                    summarise(count=n())
training_insurance
## # A tibble: 4 x 3
## # Groups:   Q2 [2]
##      Q2 insurance count
##   <int>     <int> <int>
## 1     1         0  2657
## 2     1         1   465
## 3     2         0  3364
## 4     2         1   608

###6. Between those who save, and those who do not, which group has a higher literacy level? (both english and kiswahili)

## write code here
training_save2<-training%>%
               group_by(Q2,Q18==1,Q19==1)%>%
               summarise(count=n())
training_save2
## # A tibble: 8 x 4
## # Groups:   Q2, Q18 == 1 [4]
##      Q2 `Q18 == 1` `Q19 == 1` count
##   <int> <lgl>      <lgl>      <int>
## 1     1 FALSE      FALSE        715
## 2     1 FALSE      TRUE           4
## 3     1 TRUE       FALSE       1507
## 4     1 TRUE       TRUE         896
## 5     2 FALSE      FALSE       1423
## 6     2 FALSE      TRUE           7
## 7     2 TRUE       FALSE       1789
## 8     2 TRUE       TRUE         753

##Males that save have a higher literacy level than Females

###7. How many single females, aged 50 and below, have insurance and use mobile money only? How many of them received cash in the past 30 days

## write code here
singleF<-training%>%
         filter(Q1<=50,Q2==2,Q3==4,insurance==1,mobile_money==1,Q15==3)%>%
         summarise(count=n())
singleF
##   count
## 1    12

###8. What is the mean age of:

####8.1 Borrowers vs Non Borrowers

## write code here
B_count<-training%>%
         group_by(Q1,borrowing)%>%
         summarise(average=n())
         
B_count
## # A tibble: 159 x 3
## # Groups:   Q1 [85]
##       Q1 borrowing average
##    <int>     <int>   <int>
##  1    16         0      95
##  2    16         1      24
##  3    17         0      96
##  4    17         1      42
##  5    18         0     103
##  6    18         1      55
##  7    19         0      93
##  8    19         1      47
##  9    20         0     135
## 10    20         1      65
## # ... with 149 more rows

####8.2 Those who save, vs those who do not

## write code here
save_m<-training%>%
        group_by(savings)%>%
        summarise(mean=n())
save_m
## # A tibble: 2 x 2
##   savings  mean
##     <int> <int>
## 1       0  3820
## 2       1  3274

####8.3 Those who can read only vs those who can write only, in english


## write code here
literacy_r<-training%>%
          group_by(Q19==2,Q19==3)%>%
          summarise(mean=n())
literacy_r
## # A tibble: 3 x 3
## # Groups:   Q19 == 2 [2]
##   `Q19 == 2` `Q19 == 3`  mean
##   <lgl>      <lgl>      <int>
## 1 FALSE      FALSE       6508
## 2 FALSE      TRUE          55
## 3 TRUE       FALSE        531

###9. How many married respondents, with no formal education, work for the government?

## write code here
Married<-training%>%
        group_by(Q3==1,Q4==1,Q8_1==1,Q9==1)%>%
        summarise(count=n())
Married
## # A tibble: 11 x 5
## # Groups:   Q3 == 1, Q4 == 1, Q8_1 == 1 [8]
##    `Q3 == 1` `Q4 == 1` `Q8_1 == 1` `Q9 == 1` count
##    <lgl>     <lgl>     <lgl>       <lgl>     <int>
##  1 FALSE     FALSE     FALSE       FALSE      1877
##  2 FALSE     FALSE     TRUE        FALSE       126
##  3 FALSE     FALSE     TRUE        TRUE         40
##  4 FALSE     TRUE      FALSE       FALSE       493
##  5 FALSE     TRUE      TRUE        FALSE        10
##  6 TRUE      FALSE     FALSE       FALSE      3596
##  7 TRUE      FALSE     TRUE        FALSE       132
##  8 TRUE      FALSE     TRUE        TRUE        124
##  9 TRUE      TRUE      FALSE       FALSE       687
## 10 TRUE      TRUE      TRUE        FALSE         8
## 11 TRUE      TRUE      TRUE        TRUE          1

###10. Think of any other analysis that can be done using these data and add it here. ##How many married people who are employed by the government personally own land

## write code here
Gvtemployees<-training%>%
              group_by(Q3==1,Q6==1,Q8_1==1,Q9==1)%>%
              summarise(Count=n())
Gvtemployees
## # A tibble: 12 x 5
## # Groups:   Q3 == 1, Q6 == 1, Q8_1 == 1 [8]
##    `Q3 == 1` `Q6 == 1` `Q8_1 == 1` `Q9 == 1` Count
##    <lgl>     <lgl>     <lgl>       <lgl>     <int>
##  1 FALSE     FALSE     FALSE       FALSE      2111
##  2 FALSE     FALSE     TRUE        FALSE       120
##  3 FALSE     FALSE     TRUE        TRUE         27
##  4 FALSE     TRUE      FALSE       FALSE       259
##  5 FALSE     TRUE      TRUE        FALSE        16
##  6 FALSE     TRUE      TRUE        TRUE         13
##  7 TRUE      FALSE     FALSE       FALSE      3532
##  8 TRUE      FALSE     TRUE        FALSE        93
##  9 TRUE      FALSE     TRUE        TRUE         80
## 10 TRUE      TRUE      FALSE       FALSE       751
## 11 TRUE      TRUE      TRUE        FALSE        47
## 12 TRUE      TRUE      TRUE        TRUE         45

###11. The data generated below shows the quarterly perfomance of students, in zukademy


## write code here
cols<-c("2011Q1","2011Q2","2011Q3","2011Q4",
     "2012Q1","2012Q2","2012Q3","2012Q4",
     "2013Q1","2013Q2","2013Q3","2013Q4",
     "2014Q1","2014Q2","2014Q3","2014Q4",
     "2015Q1","2015Q2","2015Q3","2015Q4")

rows<-c("Males","Females")

data<-data.frame(matrix(sample(100:500,length(cols)*length(rows),replace = F),ncol=length(cols), nrow = length(rows), byrow = T))

colnames(data) = cols
rownames(data)=rows

11.1 Reshape the data, so that you get a dataset with three columns,Gender, Year, Quarter and Marks


## write code here
data_1<-data%>%
mutate(Gender=rownames(.))
data_long<-data_1%>%
           gather("rownames","marks",cols)%>%
           separate(rownames,into = c("Years","Quarters"),sep = 4)

11.2 Calculate the average marks per gender, .per year


data_g<-data_long%>%
        group_by(Gender,Years)%>%
        summarise(average= mean(marks))

11.3 Represent the results in 11.2 on a line graph


data_g<-ggplot(data = data_g,aes(x=Years,y=average,group=Gender))+
        geom_line()+
  labs(title = "Average of Marks between Gender per year",x="Years",y="average")+
  theme_bw()+
  theme(plot.title = element_text(hjust=0.5)) +
  scale_color_brewer(palette = "Reds")
   
data_g

11.4 Calculate the average marks per gender, per year and per quarter


data_a<-data_long%>%
        group_by(Gender,Years)%>%
        summarise(average= mean(marks))
data_a2<-data_long%>%
        group_by(Gender,Quarters)%>%
        summarise(average= mean(marks))

11.5 Calculate the total marks,for both genders, per quarter and per year


data_t<-data_long%>%
        group_by(Gender,Years)%>%
        summarise(total= sum(marks))
data_t2<-data_long%>%
        group_by(Gender,Quarters)%>%
        summarise(total= sum(marks))

11.6 Represent the results in 11.5 on a line graph.


data_t<-ggplot(data = data_t,aes(x=Years,y=total,group=Gender))+
        geom_line()+
        labs(title = "Total of Marks between Gender per year",x="Years",y="total")+
        theme_bw()+
        theme(plot.title = element_text(hjust=0.5)) +
        scale_color_brewer(palette = "Reds")
   
data_t

data_t2<-ggplot(data = data_t2,aes(x=Quarters,y=total,group=Gender))+
        geom_line()+
  labs(title = "Total of Marks between Gender per Quarter",x="Quarters",y="total")+
  theme_bw()+
  theme(plot.title = element_text(hjust=0.5)) +
  scale_color_brewer(palette = "Reds")
   
data_t2

11.7 All those who score 300 and above, are taken for dinner at Kempinski. How many ladies got their Kempinski treat in 2013 and 2014?


data_s<-data_long%>%
        filter(Gender=="Females",Years==2013:2014,marks>=300)%>%
         summarise(count=n())